12 lines
164 B
Plaintext
12 lines
164 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
id -u reminder &>/dev/null || userdel reminder
|
||
|
|
||
|
if [ -f '/etc/reminder-rs/config.env' ]; then
|
||
|
rm /etc/reminder-rs/config.env
|
||
|
fi
|
||
|
|
||
|
#DEBHELPER#
|