diff options
-rw-r--r-- | TODO | 3 | ||||
-rwxr-xr-x | bin/g-i-installation.sh | 2 |
2 files changed, 3 insertions, 2 deletions
@@ -33,10 +33,11 @@ See link:https://jenkins.debian.net/userContent/about.html["about jenkins.debian * move this setup to jenkis.d.o and start real team maintaince of jenkins.d.o ** set up a mailinglist -=== to do once jenkins.d.n runs jessie +=== To be done once jenkins.d.n runs jessie * replace with bin/setsid.py workaround with setsid from the util-linux package from jessie * etc/pbuilderrc: remove /run/shm bindmount once we are running jessie - this is a workaround for #700591 +* bin/g-i-installation: use lvcreate without --virtualsize === jenkins-job-builder related diff --git a/bin/g-i-installation.sh b/bin/g-i-installation.sh index 76078ba4..9e45797e 100755 --- a/bin/g-i-installation.sh +++ b/bin/g-i-installation.sh @@ -184,7 +184,7 @@ show_preseed() { bootstrap_system() { cd $WORKSPACE echo "Creating throw-away logical volume with ${DISKSIZE_IN_GB} GiB now." - # FIXME: the --virtualsize option will not be needed once wheezy is not tested anymore + # the --virtualsize option will not be needed once wheezy is not tested anymore sudo lvcreate --virtualsize ${DISKSIZE_IN_GB}G -L${DISKSIZE_IN_GB}G -n $NAME $VG echo "Creating raw disk image with ${DISKSIZE_IN_GB} GiB now." sudo qemu-img create -f raw $LV ${DISKSIZE_IN_GB}G |