mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-01-31 18:59:33 +00:00
19fe72b1be
git-svn-id: https://svn.fhem.de/fhem/trunk@6925 2b470e98-0d58-463d-a4d8-8e2adae1ed80
15 lines
197 B
Bash
Executable File
15 lines
197 B
Bash
Executable File
#!/bin/sh
|
|
|
|
#set -x
|
|
set -e
|
|
|
|
apt-mark unhold fhem
|
|
|
|
# stop fhem if running
|
|
if test -f /etc/init.d/fhem; then
|
|
/etc/init.d/fhem stop noaptmark
|
|
fi
|
|
|
|
# remove fhem autostart
|
|
update-rc.d -f fhem remove
|