summaryrefslogtreecommitdiff
path: root/src/scripts/11bootstrap.sh
blob: 224ac19e189e19fa8269be532b2ff4d7abb54881 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#!/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

		if [ -n "${LIVE_BOOTSTRAP_CONFIG}" ]; then
			SUITE_CONFIG="--suite-config ${LIVE_BOOTSTRAP_CONFIG}"
		fi

		# Bootstrap system
		cdebootstrap --arch="${LIVE_ARCHITECTURE}" --flavour="${LIVE_FLAVOUR}" ${SUITE_CONFIG} "${LIVE_DISTRIBUTION}" "${LIVE_CHROOT}" "${LIVE_MIRROR}"

		# Remove unused packages
		Chroot_exec "dpkg -P cdebootstrap-helper-diverts"

		# 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
}