summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorGerald Carter <jerry@samba.org>2006-03-30 14:28:33 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 11:15:49 -0500
commit63efbdf005f410c4a9843809207ea27f4c1ac756 (patch)
tree0d9b210f2c74a52fe324cca81f79d1a78094e3f0 /examples
parent6f37658f927c103a71e918ab5ac78d61cd570c36 (diff)
downloadsamba-63efbdf005f410c4a9843809207ea27f4c1ac756.tar.gz
samba-63efbdf005f410c4a9843809207ea27f4c1ac756.tar.xz
samba-63efbdf005f410c4a9843809207ea27f4c1ac756.zip
r14825: add support for max connections parameter
Diffstat (limited to 'examples')
-rwxr-xr-xexamples/scripts/shares/perl/modify_samba_config.pl3
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/scripts/shares/perl/modify_samba_config.pl b/examples/scripts/shares/perl/modify_samba_config.pl
index e59ac451baf..aaf2958a95a 100755
--- a/examples/scripts/shares/perl/modify_samba_config.pl
+++ b/examples/scripts/shares/perl/modify_samba_config.pl
@@ -36,7 +36,7 @@ my $tmp_file_name = undef;
if ($#ARGV == 1) {
$delete_mode = 1;
}
-elsif ($#ARGV == 3) {
+elsif ($#ARGV == 4) {
$add_mode = 1;
}
else {
@@ -101,6 +101,7 @@ close (CONFIGFILE);
if ($add_mode) {
$config{$ARGV[1]}{'path'} = $ARGV[2];
$config{$ARGV[1]}{'comment'} = $ARGV[3];
+ $config{$ARGV[1]}{'max connections'} = $ARGV[4];
}
elsif ($delete_mode) {
delete $config{$ARGV[1]};