diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-09-30 21:10:54 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-09-30 21:10:54 +0000 |
commit | 70490528ebf1114241b2af3242339c4ef77838b8 (patch) | |
tree | 16529bb38874e12a089a66f1a211a8be23d4f527 /perl-install/network/network.pm | |
parent | 1bfc67eb5efc9c1874a1286d63fbb9a11c955930 (diff) | |
download | drakx-70490528ebf1114241b2af3242339c4ef77838b8.tar drakx-70490528ebf1114241b2af3242339c4ef77838b8.tar.gz drakx-70490528ebf1114241b2af3242339c4ef77838b8.tar.bz2 drakx-70490528ebf1114241b2af3242339c4ef77838b8.tar.xz drakx-70490528ebf1114241b2af3242339c4ef77838b8.zip |
no need to escape " in /xxx \" xxx/
Diffstat (limited to 'perl-install/network/network.pm')
-rw-r--r-- | perl-install/network/network.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/network/network.pm b/perl-install/network/network.pm index 958690635..c1f433ec7 100644 --- a/perl-install/network/network.pm +++ b/perl-install/network/network.pm @@ -56,7 +56,7 @@ sub read_dhcpd_conf { $file ||= "$::prefix/etc/dhcpd.conf"; { option_routers => [ cat_($file) =~ /^\s*option routers\s+(\S+);/mg ], subnet_mask => [ if_(cat_($file) =~ /^\s*option subnet-mask\s+(.*);/mg, split(' ', $1)) ], - domain_name => [ if_(cat_($file) =~ /^\s*option domain-name\s+\"(.*)\";/mg, split(' ', $1)) ], + domain_name => [ if_(cat_($file) =~ /^\s*option domain-name\s+"(.*)";/mg, split(' ', $1)) ], domain_name_servers => [ if_(cat_($file) =~ /^\s*option domain-name-servers\s+(.*);/m, split(' ', $1)) ], dynamic_bootp => [ if_(cat_($file) =~ /^\s*range dynamic-bootp\s+\S+\.(\d+)\s+\S+\.(\d+)\s*;/m, split(' ', $1)) ], default_lease_time => [ if_(cat_($file) =~ /^\s*default-lease-time\s+(.*);/m, split(' ', $1)) ], |