Change onos-uninstall to use 'stop' rather than 'service'.
All other commands currently use 'start/stop/status'. ONOS-2417. Ported from onos-1.2 branch. Change-Id: I902da5b207ec3ca5809d6ae377d8b09ae1f6eeab (cherry picked from commit 8d6b1ca8)
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -9,6 +9,6 @@ | ... | @@ -9,6 +9,6 @@ |
9 | remote=$ONOS_USER@${1:-$OCI} | 9 | remote=$ONOS_USER@${1:-$OCI} |
10 | 10 | ||
11 | ssh $remote " | 11 | ssh $remote " |
12 | - sudo service onos stop 1>/dev/null 2>/dev/null | 12 | + sudo stop onos 1>/dev/null 2>/dev/null |
13 | sudo rm -fr $ONOS_INSTALL_DIR | 13 | sudo rm -fr $ONOS_INSTALL_DIR |
14 | " | 14 | " | ... | ... |
-
Please register or login to post a comment