diff options
author | Holger Levsen <holger@layer-acht.org> | 2014-10-25 17:38:12 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2014-10-25 17:38:12 +0200 |
commit | 14add14aa5904ddec837f763312bd3dd7112a07b (patch) | |
tree | 98b1c9f57830b5505ebe23456f84263547e21b02 | |
parent | aace580ed7cd41a5f85ff6c83ec11ad49d70c358 (diff) | |
download | jenkins.debian.net-14add14aa5904ddec837f763312bd3dd7112a07b.tar.xz |
g-i: give d-e servers more time for login
-rwxr-xr-x | bin/g-i-installation.sh | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/bin/g-i-installation.sh b/bin/g-i-installation.sh index 748f8dff..ed221180 100755 --- a/bin/g-i-installation.sh +++ b/bin/g-i-installation.sh @@ -1156,7 +1156,12 @@ case $NAME in sleep 15 boot_system let START_TRIGGER=NR+200 - monitor_system post_install $START_TRIGGER + case $NAME in + debian-edu_*server) monitor_system post_install $START_TRIGGER 900 + ;; + *) monitor_system post_install $START_TRIGGER + ;; + esac ;; esac cleanup_all |