Files
Athou_commafeed/.openshift/action_hooks/stop
2014-09-13 00:13:48 -03:00

9 lines
255 B
Bash
Executable File

#!/bin/bash
source $OPENSHIFT_CARTRIDGE_SDK_BASH
if [ -z "$(ps -ef | grep commafeed | grep -v grep)" ]
then
client_result "Application is already stopped"
else
kill `ps -ef | grep commafeed | grep -v grep | awk '{ print $2 }'` > /dev/null 2>&1
fi