diff options
author | Holger Levsen <holger@layer-acht.org> | 2013-01-04 13:33:44 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2013-01-04 13:33:44 +0100 |
commit | 4e46efc0f1716171141e1b17b75b656a63079a11 (patch) | |
tree | c52027856d2ff792490bf03351d98818fab6537e /bin | |
parent | de6fc504fc1ce11da422dc755f532386aad6f9f7 (diff) | |
download | jenkins.debian.net-4e46efc0f1716171141e1b17b75b656a63079a11.tar.xz |
g-i: fix rescue tests
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/g-i-installation.sh | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/bin/g-i-installation.sh b/bin/g-i-installation.sh index 39c5c302..2ba2095f 100755 --- a/bin/g-i-installation.sh +++ b/bin/g-i-installation.sh @@ -146,9 +146,6 @@ bootstrap_system() { *_sid_daily*) EXTRA_APPEND="mirror/suite=sid" ;; - *_dark_theme) - EXTRA_APPEND="theme=dark" - ;; *) ;; esac case $NAME in @@ -166,6 +163,12 @@ bootstrap_system() { ;; *) ;; esac + case $NAME in + *_dark_theme) + EXTRA_APPEND="$EXTRA_APPEND theme=dark" + ;; + *) ;; + esac APPEND="auto=true priority=critical $EXTRA_APPEND $INST_LOCALE $INST_KEYMAP $PRESEED_URL $INST_VIDEO -- quiet" show_preseed $(hostname -f)/$PRESEED_PATH/${NAME}_preseed.cfg echo @@ -640,7 +643,7 @@ esac # boot up installed system # case $NAME in - *rescue) # so there are some artifacts to publish + *_rescue*) # so there are some artifacts to publish mkdir -p $RESULTS/log/installer touch $RESULTS/log/dummy $RESULTS/log/installer/dummy ;; |