diff options
author | Daniel Baumann <daniel@debian.org> | 2007-09-23 10:04:21 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2007-09-23 10:04:21 +0200 |
commit | fb35af8aa207ef5377022028d9e2b497445fb349 (patch) | |
tree | e928737e9e000d1f2509395f58f04465c17794c5 /src/scripts/11bootstrap.sh | |
parent | 18e4f460bf1c115c62ea9aebb56d75d486322531 (diff) | |
download | vyos-live-build-fb35af8aa207ef5377022028d9e2b497445fb349.tar.gz vyos-live-build-fb35af8aa207ef5377022028d9e2b497445fb349.zip |
Adding live-package 0.99.3-1.
Diffstat (limited to 'src/scripts/11bootstrap.sh')
-rw-r--r-- | src/scripts/11bootstrap.sh | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/src/scripts/11bootstrap.sh b/src/scripts/11bootstrap.sh new file mode 100644 index 000000000..f0a671563 --- /dev/null +++ b/src/scripts/11bootstrap.sh @@ -0,0 +1,36 @@ +#!/bin/sh + +# make-live - utility to build Debian Live systems +# +# Copyright (C) 2006 Daniel Baumann <daniel@debian.org> +# Copyright (C) 2006 Marco Amadori <marco.amadori@gmail.com> +# +# make-live comes with ABSOLUTELY NO WARRANTY; for details see COPYING. +# This is free software, and you are welcome to redistribute it +# under certain conditions; see COPYING for details. + +Bootstrap () +{ + if [ ! -f "${LIVE_ROOT}"/.stage/bootstrap ] + then + # Create chroot directory + if [ ! -d "${LIVE_CHROOT}" ] + then + mkdir -p "${LIVE_CHROOT}" + fi + + # Bootstrap system + cdebootstrap --arch="${LIVE_ARCHITECTURE}" --flavour="${LIVE_FLAVOUR}" "${LIVE_DISTRIBUTION}" "${LIVE_CHROOT}" "${LIVE_MIRROR}" + + # Remove package cache + rm -rf "${LIVE_CHROOT}"/var/cache/bootstrap + + # Touching stage file + if [ ! -d "${LIVE_ROOT}"/.stage ] + then + mkdir "${LIVE_ROOT}"/.stage + fi + + touch "${LIVE_ROOT}"/.stage/bootstrap + fi +} |