mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-02-01 01:09:47 +00:00
26 lines
421 B
Groff
26 lines
421 B
Groff
|
#!/bin/sh
|
||
|
# by Matthias Bauer
|
||
|
|
||
|
case "$1" in
|
||
|
start)
|
||
|
echo "Starting $0"
|
||
|
fhem.pl /etc/fhem/fhem.conf
|
||
|
;;
|
||
|
stop)
|
||
|
echo "Stopping $0"
|
||
|
killall fhem.pl
|
||
|
;;
|
||
|
status)
|
||
|
cnt=`ps -ef | grep "fhem.pl" | grep -v grep | wc -l`
|
||
|
if [ "$cnt" -eq "0" ] ; then
|
||
|
echo "$0 is not running"
|
||
|
else
|
||
|
echo "$0 is running"
|
||
|
fi
|
||
|
;;
|
||
|
*)
|
||
|
echo "Usage: $0 {start|stop|status}"
|
||
|
exit 1
|
||
|
esac
|
||
|
exit 0
|