File: postrm

package info (click to toggle)
linux-ftpd-ssl 0.17.36%2Breally0.17-3
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 2,524 kB
  • sloc: ansic: 3,875; yacc: 1,379; sh: 52; makefile: 50
file content (12 lines) | stat: -rw-r--r-- 238 bytes parent folder | download | duplicates (13)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
# $Id: postrm,v 1.1 1999/04/16 07:00:28 herbert Exp $

set -e

if [ "$1" = purge ]; then
	if command -v update-inetd >/dev/null 2>&1; then
		update-inetd --pattern '/usr/sbin/in\.ftpd' --remove "#<off># ftp"
	fi
fi

#DEBHELPER#