diff options
author | Michael Larson <slioch@slioch.vyatta.com> | 2010-05-27 13:46:34 -0700 |
---|---|---|
committer | Michael Larson <slioch@slioch.vyatta.com> | 2010-05-27 13:46:34 -0700 |
commit | e1213d8968b7791d9160dfd5679b12d0110b5891 (patch) | |
tree | 82a655b152725c25c53841f5c0f6ab72e577ba89 /scripts | |
parent | 9afb59571b7de247fbd7482f30d90d7a37a32ef5 (diff) | |
download | vyatta-cfg-e1213d8968b7791d9160dfd5679b12d0110b5891.tar.gz vyatta-cfg-e1213d8968b7791d9160dfd5679b12d0110b5891.zip |
additional fix for boot loading of deactivate nodes.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/vyatta-config-loader.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/vyatta-config-loader.pl b/scripts/vyatta-config-loader.pl index 0aae55b..a03a0e4 100755 --- a/scripts/vyatta-config-loader.pl +++ b/scripts/vyatta-config-loader.pl @@ -114,7 +114,7 @@ foreach (@all_nodes) { # Now deactivate these nodes for (@deactivate_nodes) { - my $cmd = "$CWRAPPER deactivate " . $_ . " 1>/dev/null"; + my $cmd = "$CWRAPPER deactivate " . $_; system("$cmd"); } |