From 2b86a5b4ed260a42f2771c9e2c5f83268f64a8b1 Mon Sep 17 00:00:00 2001 From: Gerald Carter Date: Thu, 30 Mar 2006 14:28:33 +0000 Subject: r14825: add support for max connections parameter (This used to be commit 63efbdf005f410c4a9843809207ea27f4c1ac756) --- examples/scripts/shares/perl/modify_samba_config.pl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'examples/scripts') diff --git a/examples/scripts/shares/perl/modify_samba_config.pl b/examples/scripts/shares/perl/modify_samba_config.pl index e59ac451ba..aaf2958a95 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]}; -- cgit