From 930c62a302392505a3985b30d318e80e07d4fe5e Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Mon, 22 Dec 2014 16:23:23 +0100 Subject: [PATCH] debian: On my fedora host, I need more seconds for my network to have come up. This might to be due to some registration with systemd. --- debian/install-extras.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/debian/install-extras.sh b/debian/install-extras.sh index 089b426..fc2d37e 100755 --- a/debian/install-extras.sh +++ b/debian/install-extras.sh @@ -10,8 +10,9 @@ debug 'Bringing container up' utils.lxc.start # Sleep for a bit so that the container can get an IP -log 'Sleeping for 5 seconds...' -sleep 5 +SECS=15 +log "Sleeping for $SECS seconds..." +sleep $SECS # TODO: Support for appending to this list from outside PACKAGES=(vim curl wget man-db openssh-server bash-completion python-software-properties ca-certificates sudo)