Files
dnsmasq/debian/dnsmasq-base.postrm
2024-01-19 14:34:15 +00:00

11 lines
101 B
Bash

#!/bin/sh
set -e
if [ purge = "$1" ]; then
userdel dnsmasq
rm -rf /run/dnsmasq
fi
#DEBHELPER#