blob: f80812261147155451d0e0459cd67efdcb3d36f9 (
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
44
45
46
47
48
|
#!/bin/bash
NAME="$1"
CONTEXT="$2"
RELEASE="$3"
DEBOOTSTRAP_MIRROR="$4"
VHOSTNAME="$5"
VINTERFACE="$6"
PACKAGES="lsb-release,openssl,iproute,cron,sudo,openssh-server,locales"
if [ "$VHOSTNAME" != "none" ]; then
VHOSTNAME_OPT="--hostname $VHOSTNAME"
fi
if [ ! -z "$VINTERFACE" ]; then
VINTERFACE_OPT="--interface $VINTERFACE"
VIP="`echo $VINTERFACE | cut -d : -f 2 | cut -d '/' -f 1`"
fi
# create basic vserver
vserver $NAME build -n $NAME --context $CONTEXT \
$VHOSTNAME_OPT $VINTERFACE_OPT -m debootstrap -- \
-d $RELEASE -m $DEBOOTSTRAP_MIRROR -- --include=$PACKAGES || exit 1
# copy in some some defaults
TARGET=/etc/vservers/$NAME/vdir/
cp /etc/apt/{preferences,sources.list} $TARGET/etc/apt/
# add minimum /etc/hosts entries
if [ "$VHOSTNAME" != "none" ]; then
echo "$VIP $VHOSTNAME" > $TARGET/etc/hosts
fi
echo "127.0.0.1 $NAME" >> $TARGET/etc/hosts
# Setup is complete, now do the post-install stuff
vserver $NAME start || exit 1
vserver $NAME exec apt-get update || exit 1
vserver $NAME exec apt-get upgrade || exit 1
# custom puppet installation
#mkdir -p $TARGET/var/lib/puppet/modules/dbp
#cp /var/lib/puppet/modules/dbp/puppet_current.deb $TARGET/var/lib/puppet/modules/dbp/
#vserver $NAME exec dpkg --install var/lib/puppet/modules/dbp/puppet_current.deb
#vserver $NAME exec apt-get -fy install
#echo "Please sign now: puppetca --sign $NAME" >&2
echo "VServer $NAME created"
|