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