diff options
author | Antoine Ginies <aginies@mandriva.com> | 2005-07-19 08:49:40 +0000 |
---|---|---|
committer | Antoine Ginies <aginies@mandriva.com> | 2005-07-19 08:49:40 +0000 |
commit | bc307fc09dc4f0f36b323f165f7cbb074e31af9e (patch) | |
tree | fbbf37ebf2d3709db2f39a6d05918e86830c675a /perl-install/standalone | |
parent | e87d25b03542939cc97314e65bfed6aa611a47ae (diff) | |
download | drakx-bc307fc09dc4f0f36b323f165f7cbb074e31af9e.tar drakx-bc307fc09dc4f0f36b323f165f7cbb074e31af9e.tar.gz drakx-bc307fc09dc4f0f36b323f165f7cbb074e31af9e.tar.bz2 drakx-bc307fc09dc4f0f36b323f165f7cbb074e31af9e.tar.xz drakx-bc307fc09dc4f0f36b323f165f7cbb074e31af9e.zip |
remove ipnet/32 in access_list
Diffstat (limited to 'perl-install/standalone')
-rw-r--r-- | perl-install/standalone/draknfs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/standalone/draknfs b/perl-install/standalone/draknfs index e5144a4c4..5b1856e96 100644 --- a/perl-install/standalone/draknfs +++ b/perl-install/standalone/draknfs @@ -230,7 +230,7 @@ sub get_access_list { if ($ip_address) { $ipnet = $o[0] . "." . $o[1] . "." . $o[2] . ".0"; } else { $ipnet = "ip_address" } - my @all = split(", ", qq(*, *.$domain, $ipnet/8, $ipnet/24, $ipnet/32)); + my @all = split(", ", qq(*, *.$domain, $ipnet/8, $ipnet/24)); return @all; } |