1
0
mirror of https://github.com/gophernicus/gophernicus.git synced 2024-09-01 04:14:15 -04:00
gophernicus/debian/postrm

12 lines
249 B
Plaintext
Raw Normal View History

2014-01-25 04:21:40 -05:00
#!/bin/sh
if [ "$1" = "purge" -a -f /etc/inetd.conf -a -x /usr/sbin/update-inetd ]; then
/usr/sbin/update-inetd --remove "#<off># gopher"
2014-01-25 04:21:40 -05:00
fi
if [ -d /run/systemd/system ]; then
systemctl --system daemon-reload >/dev/null || true
fi
2014-01-25 04:21:40 -05:00
#DEBHELPER#