mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-04-10 14:12:38 +00:00
16 lines
230 B
Bash
Executable File
16 lines
230 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
if grep -q fhem /etc/passwd; then
|
|
userdel fhem
|
|
fi
|
|
|
|
if test -f /etc/init/fhem.conf; then
|
|
rm /etc/init/fhem.conf
|
|
fi
|
|
if test -f /etc/init.d/fhem; then
|
|
update-rc.d fhem remove
|
|
rm /etc/init.d/fhem
|
|
fi
|