mirror of
https://github.com/RaspbianFrance/raspisms.git
synced 2025-04-23 01:46:27 +02:00
Move to raspisms dir
This commit is contained in:
parent
34a6f7de65
commit
40fccf133c
278 changed files with 109 additions and 2020 deletions
48
bin/stop.sh
48
bin/stop.sh
|
@ -1,48 +0,0 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# Script to stop RaspiSMS daemons
|
||||
#
|
||||
PID_DIR="/var/run/raspisms"
|
||||
DAEMON_LAUNCHER_PID_FILE="/var/run/raspisms/RaspiSMS Daemon Launcher.pid"
|
||||
PID_FILES=$PID_DIR/*.pid
|
||||
|
||||
|
||||
kill_process()
|
||||
{
|
||||
local PID=$1
|
||||
kill "$PID"
|
||||
|
||||
return $?
|
||||
}
|
||||
|
||||
#Kill daemon launcher if available
|
||||
if [ -f "$DAEMON_LAUNCHER_PID_FILE" ]
|
||||
then
|
||||
printf "Stop RaspiSMS daemon Launcher..."
|
||||
PID=$(cat "$DAEMON_LAUNCHER_PID_FILE")
|
||||
$(kill_process "$PID")
|
||||
RETURN=$?
|
||||
|
||||
if [ $RETURN -eq 0 ]
|
||||
then
|
||||
printf "success.\n"
|
||||
else
|
||||
printf "failed.\n"
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
|
||||
sleep 1
|
||||
|
||||
printf "Stop RaspiSMS remaining daemons..."
|
||||
for f in $PID_FILES
|
||||
do
|
||||
[ -f "$f" ] || continue #Bypass no real file return on empty dir
|
||||
|
||||
printf "."
|
||||
PID=$(cat "$f")
|
||||
kill_process "$PID"
|
||||
done
|
||||
printf "Done.\n"
|
||||
|
||||
exit 0
|
Loading…
Add table
Add a link
Reference in a new issue