diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2003-11-26 09:41:50 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2003-11-26 09:41:50 +0000 |
commit | dabd6884195d47a85acbf3c751f573c6da1752e8 (patch) | |
tree | 13e39dcf4c965a77091afc5d5099862bd4824a33 /perl-install | |
parent | ff00a1677282eec0a1ec674875dfcc1fd63493c2 (diff) | |
download | drakx-backup-do-not-use-dabd6884195d47a85acbf3c751f573c6da1752e8.tar drakx-backup-do-not-use-dabd6884195d47a85acbf3c751f573c6da1752e8.tar.gz drakx-backup-do-not-use-dabd6884195d47a85acbf3c751f573c6da1752e8.tar.bz2 drakx-backup-do-not-use-dabd6884195d47a85acbf3c751f573c6da1752e8.tar.xz drakx-backup-do-not-use-dabd6884195d47a85acbf3c751f573c6da1752e8.zip |
perl_checker fix
Diffstat (limited to 'perl-install')
-rwxr-xr-x | perl-install/standalone/drakgw | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/standalone/drakgw b/perl-install/standalone/drakgw index 52960c204..682ea9909 100755 --- a/perl-install/standalone/drakgw +++ b/perl-install/standalone/drakgw @@ -426,7 +426,7 @@ my $update_dhcp = '/usr/sbin/update_dhcp.pl'; #- put the interface for the dhcp server in the sysconfig-dhcp config, for the /etc/init.d script of dhcpd -substInFile { s/^INTERFACES\n//; $_ .= "INTERFACES=\"$device\"\n" if eof } $sysconf_dhcpd; +substInFile { s/^INTERFACES\n//; $_ .= qq(INTERFACES="$device"\n) if eof } $sysconf_dhcpd; #- Set up /etc/cups/cupsd.conf to make the broadcasting of the printer info |