diff options
author | Philip Hands <phil@hands.com> | 2017-01-24 23:39:08 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2017-01-25 01:13:58 +0100 |
commit | 4870758590c0ec41171c0e0cadf56a47380297d9 (patch) | |
tree | 2fa2dcc7582111453648aa1e5b8659549ea70d6c /cucumber/features/step_definitions | |
parent | 346458383bc65c96acc06fcdc601c9cce2d09d81 (diff) | |
download | jenkins.debian.net-4870758590c0ec41171c0e0cadf56a47380297d9.tar.xz |
lvc: single quotes get quoted unhelpfully in preseed/early_command
Signed-off-by: Holger Levsen <holger@layer-acht.org>
Diffstat (limited to 'cucumber/features/step_definitions')
-rw-r--r-- | cucumber/features/step_definitions/common_steps.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cucumber/features/step_definitions/common_steps.rb b/cucumber/features/step_definitions/common_steps.rb index 497d6615..cbedbe92 100644 --- a/cucumber/features/step_definitions/common_steps.rb +++ b/cucumber/features/step_definitions/common_steps.rb @@ -289,7 +289,7 @@ Given /^I select the install mode$/ do @screen.type(Sikuli::Key.TAB) @boot_options = "" if @boot_options.nil? - @screen.type(' preseed/early_command="echo DPMS=-s\\\\ 0 > /lib/debian-installer.d/S61Xnoblank ; sed -i \'/XF86_Switch_VT_/s/ F\([0-9]\)/ XF86_Switch_VT_\1/\' /usr/share/X11/xkb/symbols/srvr_ctrl ; echo ttyS0::askfirst:-/bin/sh>>/etc/inittab;kill -HUP 1" blacklist=psmouse ' + @boot_options + + @screen.type(' preseed/early_command="echo DPMS=-s\\\\ 0 > /lib/debian-installer.d/S61Xnoblank ; sed -i /XF86_Switch_VT_/s/F/XF86_Switch_VT_/ /usr/share/X11/xkb/symbols/srvr_ctrl ; echo ttyS0::askfirst:-/bin/sh>>/etc/inittab;kill -HUP 1" blacklist=psmouse ' + @boot_options + Sikuli::Key.ENTER) debug_log("debug: wait for the remote shell to respond...", :color => :blue) $vm.wait_until_remote_shell_is_up |