1
0
Fork 0
mirror of https://github.com/eosswedenorg/thalos synced 2026-06-16 04:24:56 +02:00
thalos/debian/thalos.postrm

13 lines
No EOL
153 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