summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rw-r--r--scripts/rename-image.pl4
-rwxr-xr-xscripts/vyatta-boot-image.pl2
2 files changed, 3 insertions, 3 deletions
diff --git a/scripts/rename-image.pl b/scripts/rename-image.pl
index be30967..6f3084c 100644
--- a/scripts/rename-image.pl
+++ b/scripts/rename-image.pl
@@ -119,10 +119,10 @@ while ($line = <$grubfh>) {
close($tmpfh);
close($grubfh);
-mv("$image_path/$old_name", "$image_path/$new_name")
+move("$image_path/$old_name", "$image_path/$new_name")
or die "rename $old_name to $new_name failed: $!\n";
-cp($tmpfilename, "$image_path/grub/grub.cfg")
+copy($tmpfilename, "$image_path/grub/grub.cfg")
or die "copy $tmpfilename to grub.cfg failed: $!\n";
syslog("warning", "System image $old_name has been renamed $new_name");
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;
}