mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-02-07 16:59:18 +00:00
23d1fbdb09
git-svn-id: https://svn.fhem.de/fhem/trunk@661 2b470e98-0d58-463d-a4d8-8e2adae1ed80
11 lines
136 B
Bash
Executable File
11 lines
136 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
|