diff options
author | John Southworth <john.southworth@vyatta.com> | 2011-04-01 17:13:25 -0500 |
---|---|---|
committer | John Southworth <john.southworth@vyatta.com> | 2011-04-01 17:13:25 -0500 |
commit | 20f8a4e8a69e72d1409749adf610eec4aa76ea09 (patch) | |
tree | 07ce9020598d0379fd384480001eac02648816c5 /scripts | |
parent | 728b88ce8be202f70dd5f889357dc8df992f6dac (diff) | |
download | vyatta-cfg-vpn-20f8a4e8a69e72d1409749adf610eec4aa76ea09.tar.gz vyatta-cfg-vpn-20f8a4e8a69e72d1409749adf610eec4aa76ea09.zip |
Bugfix 6972: Suppress messages from the ipsec dhcp script
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/vyatta-ipsec-dhcp.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/vyatta-ipsec-dhcp.pl b/scripts/vyatta-ipsec-dhcp.pl index 61e5e02..45ce4fc 100755 --- a/scripts/vyatta-ipsec-dhcp.pl +++ b/scripts/vyatta-ipsec-dhcp.pl @@ -99,5 +99,5 @@ foreach my $line (@lines){ print ${output_secrets} $line; } close $output_secrets; -system ("/usr/sbin/ipsec rereadall"); -system ("/usr/sbin/ipsec update"); +system ("/usr/sbin/ipsec rereadall > /dev/null 2>&1"); +system ("/usr/sbin/ipsec update > /dev/null 2>&1"); |