File: postrm

package info (click to toggle)
skksearch 0.0-25
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 228 kB
  • sloc: ansic: 1,079; makefile: 23; sh: 18
file content (15 lines) | stat: -rw-r--r-- 299 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh
set -e

if [ "$1" = "remove" ]; then
    if which update-inetd >/dev/null 2>&1; then
	update-inetd --multi --disable skkserv || true
    fi
fi
if [ "$1" = "purge" ]; then
    if which update-inetd >/dev/null 2>&1; then
	update-inetd --multi --remove skkserv || true
    fi
fi

#DEBHELPER#