1
0
Fork 0
mirror of https://github.com/eosswedenorg/thalos synced 2026-06-17 04:30:03 +02:00

Adding debian/thalos-server.postrm

This commit is contained in:
Henrik Hautakoski 2023-05-12 15:36:28 +02:00
parent 8d26a584ed
commit cd35303d5a

13
debian/thalos-server.postrm vendored Normal file
View file

@ -0,0 +1,13 @@
#!/bin/sh
set -e
#DEBHELPER#
if [ "${1}" = "purge" ]
then
deluser --quiet thalos > /dev/null || true
rm -rf /var/log/thalos
fi
exit 0