From bc1a57b55269c3d15a00f39ec74243f50f1dfe88 Mon Sep 17 00:00:00 2001 From: Deepti Kulkarni Date: Mon, 27 Feb 2012 05:05:37 -0800 Subject: fix for bug 7719 - delete system image should accept 'y' or 'n' for a yes/no respectively. --- scripts/vyatta-boot-image.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- cgit v1.2.3