tom | 890a43b | 2014-09-30 09:08:42 -0700 | [diff] [blame] | 1 | #!/bin/bash |
Pavlin Radoslavov | 9141379 | 2014-10-15 11:00:32 -0700 | [diff] [blame] | 2 | # ----------------------------------------------------------------------------- |
tom | 890a43b | 2014-09-30 09:08:42 -0700 | [diff] [blame] | 3 | # Remotely kills the ONOS service on the specified node. |
Pavlin Radoslavov | 9141379 | 2014-10-15 11:00:32 -0700 | [diff] [blame] | 4 | # ----------------------------------------------------------------------------- |
tom | 890a43b | 2014-09-30 09:08:42 -0700 | [diff] [blame] | 5 | |
| 6 | [ ! -d "$ONOS_ROOT" ] && echo "ONOS_ROOT is not defined" >&2 && exit 1 |
| 7 | . $ONOS_ROOT/tools/build/envDefaults |
| 8 | |
Thomas Vachuska | cbba052 | 2014-12-03 19:03:31 -0800 | [diff] [blame] | 9 | ssh $ONOS_USER@${1:-$OCI} " |
| 10 | pid=\$(ps -ef | grep karaf.jar | grep -v grep | cut -c10-15 | tr -d ' ') |
| 11 | if [ -n \"\$pid\" ]; then |
| 12 | echo \"Killing ONOS process \$pid on \$(hostname)...\" |
| 13 | kill -9 \$pid |
| 14 | else |
| 15 | echo \"ONOS process is not running...\" |
| 16 | exit 1 |
| 17 | fi |
| 18 | " |