]> git.ipfire.org Git - people/ms/dnsmasq.git/blob - debian/dnsmasq-base.postrm
Fix new poll() code for helper pipe. Removed CPU-spin.
[people/ms/dnsmasq.git] / debian / dnsmasq-base.postrm
1 #!/bin/sh
2 set -e
3
4 if [ purge = "$1" ]; then
5 if [ -x "$(command -v deluser)" ]; then
6 deluser --quiet --system dnsmasq > /dev/null || true
7 else
8 echo >&2 "not removing dnsmasq system account because deluser command was not found"
9 fi
10 rm -rf /var/run/dnsmasq
11 fi