1
0
mirror of https://github.com/gophernicus/gophernicus.git synced 2025-02-02 15:08:00 -05:00
2016-11-13 12:54:53 +02:00

12 lines
224 B
Bash

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