diff options
Diffstat (limited to 'www/mod_v2h')
-rw-r--r-- | www/mod_v2h/files/add-module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/www/mod_v2h/files/add-module b/www/mod_v2h/files/add-module index 754fc690392..9f4392eea16 100644 --- a/www/mod_v2h/files/add-module +++ b/www/mod_v2h/files/add-module @@ -47,7 +47,7 @@ if (@lmd or @amd) { if (open(FP, ">$CFG_SYSCONFDIR/$CFG_TARGET.conf.new")) { print FP $content; close(FP); - system("cp $CFG_SYSCONFDIR/$CFG_TARGET.conf $CFG_SYSCONFDIR/$CFG_TARGET.conf.bak && " . "cp $CFG_SYSCONFDIR/$CFG_TARGET.conf.new $CFG_SYSCONFDIR/$CFG_TARGET.conf && " . "rm $CFG_SYSCONFDIR/$CFG_TARGET.conf.new"); + system("cp $CFG_SYSCONFDIR/$CFG_TARGET.conf.new $CFG_SYSCONFDIR/$CFG_TARGET.conf && " . "rm $CFG_SYSCONFDIR/$CFG_TARGET.conf.new"); } else { notice("unable to open configuration file"); } |