mirror of
https://github.com/eosswedenorg/thalos
synced 2026-06-16 04:24:56 +02:00
11 lines
145 B
Bash
11 lines
145 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
#DEBHELPER#
|
|
|
|
if [ "${1}" = "purge" ]; then
|
|
deluser --quiet thalos >/dev/null || true
|
|
rm -rf /var/log/thalos
|
|
fi
|
|
|
|
exit 0
|