mirror of
https://github.com/gophernicus/gophernicus.git
synced 2024-10-27 05:20:18 -04:00
12 lines
249 B
Bash
12 lines
249 B
Bash
#!/bin/sh
|
|
|
|
if [ "$1" = "purge" -a -f /etc/inetd.conf -a -x /usr/sbin/update-inetd ]; then
|
|
/usr/sbin/update-inetd --remove "#<off># gopher"
|
|
fi
|
|
|
|
if [ -d /run/systemd/system ]; then
|
|
systemctl --system daemon-reload >/dev/null || true
|
|
fi
|
|
|
|
#DEBHELPER#
|