X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=lbuild-initvm.sh;h=5370e82c1aff35f7ab2633b5580eacf2de164f0c;hb=0e9a1439ba56449fe9588233a2ae9eba32641ef4;hp=9eda8d9e713528ab13331d2df34dc6b147caf8c0;hpb=dd0c5ce67ee2fb8cd9292789a86af237fab6f01a;p=build.git 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.. ;;