mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-02-08 05:15:10 +00:00
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
|