You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
helm/stop.sh

25 lines
409 B

9 years ago
#!/bin/bash
echo "Stopping resourcifier..."
RESOURCIFIER=`which resourcifier`
if [[ ! -z $RESOURCIFIER ]] ; then
pkill -f $RESOURCIFIER
fi
echo
echo "Stopping expandybird..."
EXPANDYBIRD=`which expandybird`
if [[ ! -z $EXPANDYBIRD ]] ; then
pkill -f $EXPANDYBIRD
fi
echo
echo "Stopping deployment manager..."
MANAGER=`which manager`
if [[ ! -z $MANAGER ]] ; then
pkill -f $MANAGER
fi
echo
echo "Done."