diff options
author | John Southworth <john.southworth@vyatta.com> | 2012-02-28 12:49:20 -0800 |
---|---|---|
committer | John Southworth <john.southworth@vyatta.com> | 2012-02-28 12:49:20 -0800 |
commit | ca8baa897fb4112902556b5f4f95187552c99013 (patch) | |
tree | 4ecdead9d550c4dd23e5110cc8993c0cd5fae334 /scripts | |
parent | 7c311d2ae5f37b50d0e41efb6160734a77dc4608 (diff) | |
parent | 578fdf8a545afca8fcc83bac884cc8b96c5e9bcc (diff) | |
download | vyatta-op-ca8baa897fb4112902556b5f4f95187552c99013.tar.gz vyatta-op-ca8baa897fb4112902556b5f4f95187552c99013.zip |
Merge branch 'oxnard' of git.vyatta.com:/git/vyatta-op into oxnard
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/vyatta-boot-image.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/vyatta-boot-image.pl b/scripts/vyatta-boot-image.pl index 2d53f1c..ef33658 100755 --- a/scripts/vyatta-boot-image.pl +++ b/scripts/vyatta-boot-image.pl @@ -481,7 +481,7 @@ sub doDelete { } chomp($resp); $resp = lc($resp); - if ($resp ne 'yes') { + if (($resp ne 'yes') && ($resp ne 'y')) { print "Image is NOT deleted. Exiting...\n"; exit 1; } |