From 0e9a1439ba56449fe9588233a2ae9eba32641ef4 Mon Sep 17 00:00:00 2001 From: Thierry Parmentelat Date: Wed, 22 Jan 2014 16:24:15 +0100 Subject: [PATCH] ignore result of extra apt-get for now --- lbuild-initvm.sh | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) 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.. ;; -- 2.43.0