Loading bin/make-base-vm +8 −6 Original line number Diff line number Diff line Loading @@ -60,17 +60,14 @@ if [ $# != 0 ] ; then done fi if [ $DISTRO = "debian" -a $LXC = "1" ]; then echo "There is no support for Debian guests using LXC currently. Please use KVM or another distro for now." exit 1 fi if [ $DISTRO = "ubuntu" ]; then MIRROR=$MIRROR_BASE/archive.ubuntu.com/ubuntu SECURITY_MIRROR=$MIRROR_BASE/security.ubuntu.com/ubuntu components=main,universe elif [ $DISTRO = "debian" ]; then MIRROR=$MIRROR_BASE/ftp.debian.org/debian SECURITY_MIRROR=$MIRROR_BASE/security.debian.org/ components=main,contrib fi mkdir -p var Loading Loading @@ -123,6 +120,9 @@ fi if [ $LXC = "1" ]; then addpkg=$addpkg,lxc if [ $DISTRO = "debian" ]; then addpkg=$addpkg,sudo fi else # Lack of comma after KERNEL_PKG is not a typo addpkg=$addpkg,${KERNEL_PKG}${GRUB_PKG},openssh-server Loading Loading @@ -158,7 +158,9 @@ if [ $LXC = "1" ]; then fi sudo rm -rf $OUT-bootstrap # Need universe for lxc in lucid env -i LANG=en_US.UTF-8 LC_ALL=en_US.UTF-8 sudo debootstrap --arch=$ARCH --include=$addpkg --exclude=$removepkg --components=main,universe $SUITE $OUT-bootstrap $MIRROR env -i LANG=en_US.UTF-8 LC_ALL=en_US.UTF-8 sudo debootstrap --arch=$ARCH --include=$addpkg --exclude=$removepkg --components=$components $SUITE $OUT-bootstrap $MIRROR # Fix lxc issue sudo cp $OUT-bootstrap/usr/lib/x86_64-linux-gnu/lxc/lxc-init $OUT-bootstrap/usr/sbin/init.lxc dd if=/dev/zero of=$OUT-lxc bs=1M count=1 seek=15360 /sbin/mkfs.ext4 -F $OUT-lxc t=`mktemp -d gitian.XXXXXXXX` Loading target-bin/bootstrap-fixup.in +3 −2 Original line number Diff line number Diff line Loading @@ -16,13 +16,14 @@ elif [ $DISTRIB_NAME = "Debian" ]; then # grub-legacy conflicts grub-pc dependencies # No grub-legacy on Ubuntu, just on Debian # Work around bcron-run conflict due to cron being removed apt-get purge -y grub-legacy bcron-run &> /dev/null # Needed for KVM, but apparently errors out for LXC, so the true ignores the error apt-get purge -y grub-legacy bcron-run &> /dev/null || true fi echo '127.0.1.1 gitian' >> /etc/hosts # If LXC if grep /lxc/gitian /proc/1/cgroup > /dev/null; then adduser --disabled-password --gecos ubuntu --quiet ubuntu || true adduser --disabled-password --gecos ${DISTRIB_NAME,,} --quiet ${DISTRIB_NAME,,} || true apt-get remove -y rsyslog || true dpkg-divert --local --rename --add /sbin/initctl ln -sf /bin/true /sbin/initctl Loading Loading
bin/make-base-vm +8 −6 Original line number Diff line number Diff line Loading @@ -60,17 +60,14 @@ if [ $# != 0 ] ; then done fi if [ $DISTRO = "debian" -a $LXC = "1" ]; then echo "There is no support for Debian guests using LXC currently. Please use KVM or another distro for now." exit 1 fi if [ $DISTRO = "ubuntu" ]; then MIRROR=$MIRROR_BASE/archive.ubuntu.com/ubuntu SECURITY_MIRROR=$MIRROR_BASE/security.ubuntu.com/ubuntu components=main,universe elif [ $DISTRO = "debian" ]; then MIRROR=$MIRROR_BASE/ftp.debian.org/debian SECURITY_MIRROR=$MIRROR_BASE/security.debian.org/ components=main,contrib fi mkdir -p var Loading Loading @@ -123,6 +120,9 @@ fi if [ $LXC = "1" ]; then addpkg=$addpkg,lxc if [ $DISTRO = "debian" ]; then addpkg=$addpkg,sudo fi else # Lack of comma after KERNEL_PKG is not a typo addpkg=$addpkg,${KERNEL_PKG}${GRUB_PKG},openssh-server Loading Loading @@ -158,7 +158,9 @@ if [ $LXC = "1" ]; then fi sudo rm -rf $OUT-bootstrap # Need universe for lxc in lucid env -i LANG=en_US.UTF-8 LC_ALL=en_US.UTF-8 sudo debootstrap --arch=$ARCH --include=$addpkg --exclude=$removepkg --components=main,universe $SUITE $OUT-bootstrap $MIRROR env -i LANG=en_US.UTF-8 LC_ALL=en_US.UTF-8 sudo debootstrap --arch=$ARCH --include=$addpkg --exclude=$removepkg --components=$components $SUITE $OUT-bootstrap $MIRROR # Fix lxc issue sudo cp $OUT-bootstrap/usr/lib/x86_64-linux-gnu/lxc/lxc-init $OUT-bootstrap/usr/sbin/init.lxc dd if=/dev/zero of=$OUT-lxc bs=1M count=1 seek=15360 /sbin/mkfs.ext4 -F $OUT-lxc t=`mktemp -d gitian.XXXXXXXX` Loading
target-bin/bootstrap-fixup.in +3 −2 Original line number Diff line number Diff line Loading @@ -16,13 +16,14 @@ elif [ $DISTRIB_NAME = "Debian" ]; then # grub-legacy conflicts grub-pc dependencies # No grub-legacy on Ubuntu, just on Debian # Work around bcron-run conflict due to cron being removed apt-get purge -y grub-legacy bcron-run &> /dev/null # Needed for KVM, but apparently errors out for LXC, so the true ignores the error apt-get purge -y grub-legacy bcron-run &> /dev/null || true fi echo '127.0.1.1 gitian' >> /etc/hosts # If LXC if grep /lxc/gitian /proc/1/cgroup > /dev/null; then adduser --disabled-password --gecos ubuntu --quiet ubuntu || true adduser --disabled-password --gecos ${DISTRIB_NAME,,} --quiet ${DISTRIB_NAME,,} || true apt-get remove -y rsyslog || true dpkg-divert --local --rename --add /sbin/initctl ln -sf /bin/true /sbin/initctl Loading