summaryrefslogtreecommitdiff
path: root/scripts/rename-image.pl
diff options
context:
space:
mode:
authorJohn Southworth <john.southworth@vyatta.com>2012-03-01 00:54:04 +0000
committerJohn Southworth <john.southworth@vyatta.com>2012-03-01 00:54:04 +0000
commite7eb5130f92f84160a78575713fa1674d5fdac9c (patch)
tree579dda2dd3fd8e38eb8c83a011c8295380f49f9c /scripts/rename-image.pl
parent18dc119573592a0c6fbf224c0b75c25b3c967af1 (diff)
parent17b695105b5beb70eb5fd2b6433e521878e7aa41 (diff)
downloadvyatta-op-e7eb5130f92f84160a78575713fa1674d5fdac9c.tar.gz
vyatta-op-e7eb5130f92f84160a78575713fa1674d5fdac9c.zip
Merge branch 'oxnard' of git.vyatta.com:/git/vyatta-op into oxnard
Diffstat (limited to 'scripts/rename-image.pl')
-rw-r--r--scripts/rename-image.pl4
1 files changed, 2 insertions, 2 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");