Skip to content

Instantly share code, notes, and snippets.

@darkmagician
Created May 31, 2018 08:41
Show Gist options
  • Save darkmagician/b6a18ea142ef67080a464f498eb8fb11 to your computer and use it in GitHub Desktop.
Save darkmagician/b6a18ea142ef67080a464f498eb8fb11 to your computer and use it in GitHub Desktop.
#!/usr/bin/env bash
APPNAME="k8sdex"
COMMAND="./dex serve config-github.yaml"
BASE="$(readlink -f $(dirname $0))"
. $BASE/services.sh
#!/bin/bash
#APPNAME=
#COMMAND=
#BASE=/tmp
PID=$BASE/$APPNAME.pid
LOG=$BASE/$APPNAME.log
ERROR=$BASE/$APPNAME-error.log
USR=user
status() {
echo
echo "==== Status"
if [ -f $PID ]
then
echo
echo "Pid file: $( cat $PID ) [$PID]"
echo
ps -ef | grep -v grep | grep $( cat $PID )
else
echo
echo "No Pid file"
fi
}
start() {
if [ -f $PID ]
then
echo
echo "Already started. PID: [$( cat $PID )]"
else
cd $BASE
echo "==== Start" $BASE
touch $PID
if nohup $COMMAND >>$LOG 2>&1 &
then echo $! >$PID
echo "Done."
echo "$(date '+%Y-%m-%d %X'): START" >>$LOG
else echo "Error... "
/bin/rm $PID
fi
fi
}
kill_cmd() {
SIGNAL=""; MSG="Killing "
while true
do
LIST=`ps -ef | grep -v grep | grep $CMD | grep -w $USR | awk '{print $2}'`
if [ "$LIST" ]
then
echo; echo "$MSG $LIST" ; echo
echo $LIST | xargs kill $SIGNAL
sleep 2
SIGNAL="-9" ; MSG="Killing $SIGNAL"
if [ -f $PID ]
then
/bin/rm $PID
fi
else
echo; echo "All killed..." ; echo
break
fi
done
}
stop() {
echo "==== Stop"
if [ -f $PID ]
then
if kill $( cat $PID )
then echo "Done."
echo "$(date '+%Y-%m-%d %X'): STOP" >>$LOG
fi
/bin/rm $PID
kill_cmd
else
echo "No pid file. Already stopped?"
fi
}
case "$1" in
'start')
start
;;
'stop')
stop
;;
'restart')
stop ; echo "Sleeping..."; sleep 1 ;
start
;;
'status')
status
;;
'run')
cd $BASE
$COMMAND
;;
*)
echo
echo "Usage: $0 { start | stop | restart | status | run }"
echo
exit 1
;;
esac
exit 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment