From: Thierry Parmentelat Date: Wed, 22 Jan 2014 15:24:15 +0000 (+0100) Subject: ignore result of extra apt-get for now X-Git-Tag: before_libvirt_121~47 X-Git-Url: http://git.onelab.eu/?p=build.git;a=commitdiff_plain;h=0e9a1439ba56449fe9588233a2ae9eba32641ef4 ignore result of extra apt-get for now --- diff --git a/lbuild-initvm.sh b/lbuild-initvm.sh index 9eda8d9e..5370e82c 100755 --- a/lbuild-initvm.sh +++ b/lbuild-initvm.sh @@ -730,7 +730,14 @@ function devel_or_vtest_tools () { chroot $rootfs_path apt-get update for package in $packages ; do # close stdin in an attempt to avoid this hanging - chroot $rootfs_path apt-get install -y $package < /dev/null + # xxx also we ignore result for now, not sure if the kind of errors like below + # truly is serious or not +#Setting up at (3.1.13-2ubuntu2) ... +#initctl: Unable to connect to Upstart: Failed to connect to socket /com/ubuntu/upstart: Connection refused +#initctl: Unable to connect to Upstart: Failed to connect to socket /com/ubuntu/upstart: Connection refused +#start: Unable to connect to Upstart: Failed to connect to socket /com/ubuntu/upstart: Connection refused + + chroot $rootfs_path apt-get install -y $package < /dev/null || : done ### xxx todo install groups with apt.. ;;