~mer-committers/m-r/imager

6 by root
more stuff..
1
#!/bin/sh
9 by root
new structure
2
. helpers/upstream
3
. helpers/apt
13 by Carsten V. Munk
more stuff :)
4
debconf_queue() {
24 by Carsten V. Munk
removed bashisms, began working on d945gclf2 image
5
	if [ x"$DEBCONF_QUEUE" = x ]; then
13 by Carsten V. Munk
more stuff :)
6
		DEBCONF_QUEUE="$1"
7
	else
8
		DEBCONF_QUEUE="$DEBCONF_QUEUE $1"
9
	fi 
10
}
11
12
13
post_debootstrap() {
24 by Carsten V. Munk
removed bashisms, began working on d945gclf2 image
14
	if [ x"$POST_DEBOOTSTRAP" = x ]; then
13 by Carsten V. Munk
more stuff :)
15
		POST_DEBOOTSTRAP="$1"
16
	else
17
		POST_DEBOOTSTRAP="$POST_DEBOOTSTRAP $1"
18
	fi 
19
}
8 by root
add post_install
20
21
post_install() {
24 by Carsten V. Munk
removed bashisms, began working on d945gclf2 image
22
	if [ x"$POST_INSTALL" = x ]; then
8 by root
add post_install
23
		POST_INSTALL="$1"
24
	else
25
		POST_INSTALL="$POST_INSTALL $1"
26
	fi 
27
}
28