1
0
mirror of https://github.com/gophernicus/gophernicus.git synced 2025-02-02 15:08:00 -05:00

12 lines
249 B
Plaintext
Raw Normal View History

2014-01-25 11:21:40 +02: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 11:21:40 +02:00
fi
if [ -d /run/systemd/system ]; then
systemctl --system daemon-reload >/dev/null || true
fi
2014-01-25 11:21:40 +02:00
#DEBHELPER#