summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rw-r--r--scripts/system/vyatta_update_sysctl.pl7
1 files changed, 4 insertions, 3 deletions
diff --git a/scripts/system/vyatta_update_sysctl.pl b/scripts/system/vyatta_update_sysctl.pl
index 6e33c5d0..adc84178 100644
--- a/scripts/system/vyatta_update_sysctl.pl
+++ b/scripts/system/vyatta_update_sysctl.pl
@@ -51,18 +51,19 @@ EOF
}
GetOptions(
- "option=s{2}" => \@opts,
+ "option=s{2,}" => \@opts,
) or usage();
set_sysctl_value(@opts) if (@opts);
exit 0;
sub set_sysctl_value {
- my ($sysctl_opt, $nvalue) = @_;
+ my ($sysctl_opt, @nvaluearr) = @_;
+ my $nvalue = join ' ',@nvaluearr;
my $ovalue = get_sysctl_value($sysctl_opt);
if ($nvalue ne $ovalue) {
- my $cmd = "$SYSCTL -w $sysctl_opt=$nvalue 2>&1> /dev/null";
+ my $cmd = "$SYSCTL -w $sysctl_opt=\"$nvalue\" 2>&1> /dev/null";
system($cmd);
if ($? >> 8) {
die "exec of $SYSCTL failed: '$cmd'";