summaryrefslogtreecommitdiffstats
path: root/news_wizard/scripts/Newsconf.pm
diff options
context:
space:
mode:
Diffstat (limited to 'news_wizard/scripts/Newsconf.pm')
-rw-r--r--news_wizard/scripts/Newsconf.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/news_wizard/scripts/Newsconf.pm b/news_wizard/scripts/Newsconf.pm
index a0968891..158939c0 100644
--- a/news_wizard/scripts/Newsconf.pm
+++ b/news_wizard/scripts/Newsconf.pm
@@ -1,7 +1,7 @@
#!/usr/bin/perl
package Newsconf;
-require "__WIZ_HOME__/common/scripts/Vareqval.pm";
+require "/usr/share/wizards/common/scripts/Vareqval.pm";
use MDK::Common;
use strict;
@@ -39,7 +39,7 @@ sub do_it {
if (! -f $file) { die "$file not found: $!"};
my $tmp = `mktemp /tmp/Newsconf.XXXXXX`
or die "can't make a temp file: $!";
- open(OLD, "< __WIZ_HOME__/news_wizard/scripts/config.default")
+ open(OLD, "< /usr/share/wizards/news_wizard/scripts/config.default")
or die "can't open default: $!";
open(NEW, "> $tmp")
or die "can't open $tmp: $!";
@@ -60,7 +60,7 @@ sub do_it {
my $file = "/etc/leafnode/crontab";
my $tmp = `mktemp /tmp/Newsconf.XXXXXX`
or die "can't make a temp file: $!";
- open(OLD, "< __WIZ_HOME__/news_wizard/scripts/news.cron")
+ open(OLD, "< /usr/share/wizards/news_wizard/scripts/news.cron")
or die "can't open default: $!";
open(NEW, "> $tmp")
or die "can't open $tmp: $!";