summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorivan <ivan>2005-12-01 17:36:48 +0000
committerivan <ivan>2005-12-01 17:36:48 +0000
commit6493931f3663cfc065cbf5aeca75539d03842381 (patch)
tree8038d82d24d8d6e5eb82709c684cde6eb3e8441e
parent6e3d4bcc2f5d193bc157ffcaa5c634cd475cebe7 (diff)
shellcommands usermod_pwonly shouldn't apply to RADIUS groups, this is messing up unrelated RADIUS exports
-rw-r--r--FS/FS/part_export/shellcommands.pm10
1 files changed, 5 insertions, 5 deletions
diff --git a/FS/FS/part_export/shellcommands.pm b/FS/FS/part_export/shellcommands.pm
index ca04e38..646c5ff 100644
--- a/FS/FS/part_export/shellcommands.pm
+++ b/FS/FS/part_export/shellcommands.pm
@@ -38,7 +38,7 @@ tie my %options, 'Tie::IxHash',
type =>'textarea',
default=>'',
},
- 'usermod_pwonly' => { label=>'Disallow username, domain, uid, gid, dir and RADIUS group changes',
+ 'usermod_pwonly' => { label=>'Disallow username, domain, uid, gid, and dir changes', #and RADIUS group changes',
type =>'checkbox',
},
'usermod_nousername' => { label=>'Disallow just username changes',
@@ -292,10 +292,10 @@ sub _export_replace {
if ( $old_dir ne $new_dir ) {
$error ||= "can't change dir";
}
- if ( join("\n", sort @old_radius_groups) ne
- join("\n", sort @new_radius_groups) ) {
- $error ||= "can't change RADIUS groups";
- }
+ #if ( join("\n", sort @old_radius_groups) ne
+ # join("\n", sort @new_radius_groups) ) {
+ # $error ||= "can't change RADIUS groups";
+ #}
}
return $error. ' ('. $self->exporttype. ' to '. $self->machine. ')'
if $error;