mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-03-03 16:56:54 +00:00

- remove support for upstart - stop running fhem process in prerm before userdel - prevent fhem package from being overwrittten by apt-get-upgrade git-svn-id: https://svn.fhem.de/fhem/trunk@6712 2b470e98-0d58-463d-a4d8-8e2adae1ed80
10 lines
113 B
Bash
Executable File
10 lines
113 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
# stop fhem if running
|
|
invoke-rc.d fhem stop
|
|
|
|
# remove fhem autostart
|
|
update-rc.d fhem remove
|