mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-02-07 23:09:26 +00:00
12 lines
149 B
Bash
Executable File
12 lines
149 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
if pgrep fhem.pl >/dev/null; then
|
|
if test -x /sbin/initctl; then
|
|
initctl stop fhem
|
|
else
|
|
invoke-rc.d fhem stop
|
|
fi
|
|
fi
|