Subversion Repositories

?revision_form?Rev ?revision_input??revision_submit??revision_endform?

Rev 3 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3 Rev 9
Line 1... Line 1...
1
#!/bin/sh
1
#!/bin/sh
2
# pre remove script for the Debian GNU/Linux oidentd package
2
# pre remove script for the Debian GNU/Linux oidentd package
3
3
4
set -e
4
set -e
5
5
6
if [ -x /usr/sbin/update-inetd ]; then
6
if which update-inetd > /dev/null; then
7
	update-inetd --pattern "oidentd" --remove ident
7
	update-inetd --pattern "oidentd" --remove ident
8
fi
8
fi
9
9
10
#DEBHELPER#
10
#DEBHELPER#