diff options
author | Mohit Mehta <mohit.mehta@vyatta.com> | 2010-07-12 14:40:23 -0700 |
---|---|---|
committer | Mohit Mehta <mohit.mehta@vyatta.com> | 2010-07-12 14:40:23 -0700 |
commit | 9142cef72cdbdbd82d19d60dbef27e6b0efcc990 (patch) | |
tree | 0391cde3a1186b32ec62421db222a76fef0dd1e8 | |
parent | fbb9eba121ae378a02804daf1e52ee832da15fdc (diff) | |
download | vyatta-cluster-9142cef72cdbdbd82d19d60dbef27e6b0efcc990.tar.gz vyatta-cluster-9142cef72cdbdbd82d19d60dbef27e6b0efcc990.zip |
hide start-stop messages from configured services
-rwxr-xr-x | scripts/vyatta-update-cluster.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/vyatta-update-cluster.pl b/scripts/vyatta-update-cluster.pl index c3fc7bd..7ab807b 100755 --- a/scripts/vyatta-update-cluster.pl +++ b/scripts/vyatta-update-cluster.pl @@ -89,7 +89,7 @@ if (!chmod(0600, "$HA_DIR/authkeys")) { # stop each service in case it is already started foreach (@init_services) { - system("$SERVICE_DIR/$_ stop"); + system("$SERVICE_DIR/$_ stop >&/dev/null"); } print "Starting clustering..."; |