diff options
author | Frederic Crozat <fcrozat@mandriva.com> | 2002-08-22 16:18:07 +0000 |
---|---|---|
committer | Frederic Crozat <fcrozat@mandriva.com> | 2002-08-22 16:18:07 +0000 |
commit | 06f1b01191416ac81e3976938349e7208bf5a557 (patch) | |
tree | 56170974ad18df10821bff87b5894ded6f84c393 /dns_wizard/scripts | |
parent | 4ded1b990f4c8ec20b47c9020413688cc9c3e9ef (diff) | |
download | drakwizard-06f1b01191416ac81e3976938349e7208bf5a557.tar drakwizard-06f1b01191416ac81e3976938349e7208bf5a557.tar.gz drakwizard-06f1b01191416ac81e3976938349e7208bf5a557.tar.bz2 drakwizard-06f1b01191416ac81e3976938349e7208bf5a557.tar.xz drakwizard-06f1b01191416ac81e3976938349e7208bf5a557.zip |
Add support for server-settings: for GNOME 2
Diffstat (limited to 'dns_wizard/scripts')
-rw-r--r-- | dns_wizard/scripts/Dnsconf.pm | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/dns_wizard/scripts/Dnsconf.pm b/dns_wizard/scripts/Dnsconf.pm index f5a00abb..59ffee9b 100644 --- a/dns_wizard/scripts/Dnsconf.pm +++ b/dns_wizard/scripts/Dnsconf.pm @@ -1,8 +1,8 @@ #!/usr/bin/perl package Dnsconf; -require "__WIZ_HOME__/common/scripts/Vareqval.pm"; -require "__WIZ_HOME__/common/scripts/DrakconnectConf.pm"; +require "/usr/share/wizards/common/scripts/Vareqval.pm"; +require "/usr/share/wizards/common/scripts/DrakconnectConf.pm"; use MDK::Common; use strict; use standalone; @@ -39,7 +39,7 @@ sub do_it { my $file = "/etc/host.conf"; MDK::Common::cp_af($file, $file.".orig"); - MDK::Common::cp_af("__WIZ_HOME__/dns_wizard/scripts/host.conf.default", $file); + MDK::Common::cp_af("/usr/share/wizards/dns_wizard/scripts/host.conf.default", $file); $file = "/etc/named.conf"; MDK::Common::cp_af($file, $file.".orig"); @@ -56,14 +56,14 @@ sub do_it { s|__revnet__|$reversnet|g; s|__net__|$s_trunc|g; $_; - } cat_("__WIZ_HOME__/dns_wizard/scripts/named.conf.default")); + } cat_("/usr/share/wizards/dns_wizard/scripts/named.conf.default")); # Bug fix for bind 9: if (! -f "/etc/rndc.key") { system("touch /etc/rndc.key") or die "can not touch /etc/rndc.key"}; # root.hints $file="/var/named/root.hints"; -f $file and MDK::Common::cp_af($file, $file . ".orig"); - MDK::Common::cp_af("__WIZ_HOME__/dns_wizard/scripts/root.hints.default", $file); + MDK::Common::cp_af("/usr/share/wizards/dns_wizard/scripts/root.hints.default", $file); # 127.0.0.rev $file="/var/named/127.0.0.rev"; @@ -71,7 +71,7 @@ sub do_it { output($file, map { s|__hname__|$wiz_host_name|g; $_; - } cat_("__WIZ_HOME__/dns_wizard/scripts/127.0.0.rev.default")); + } cat_("/usr/share/wizards/dns_wizard/scripts/127.0.0.rev.default")); up_serial($file); # $ipnet.rev @@ -83,7 +83,7 @@ sub do_it { s|__revnet__|$reversnet|g; s|__nb__|$ds|g; $_; - } cat_("__WIZ_HOME__/dns_wizard/scripts/ipnet.rev.default")); + } cat_("/usr/share/wizards/dns_wizard/scripts/ipnet.rev.default")); up_serial($file); # $domain.db @@ -96,7 +96,7 @@ sub do_it { s|__host__|$host|g; s|__nb__|$ds|g; $_; - } cat_("__WIZ_HOME__/dns_wizard/scripts/domain.db.default")); + } cat_("/usr/share/wizards/dns_wizard/scripts/domain.db.default")); up_serial($file); #resolv.conf |