Subversion Repositories oidentd

Compare Revisions

Ignore whitespace Rev 8 → Rev 9

/oidentd/trunk/debian/changelog
10,8 → 10,10
* Override the license-problem-gfdl-invariants Lintian errors; the
license notice doesn't use the standard wording but it should be clear
that there are no invariant sections nor front or back cover texts.
* Replace "[ -x ... ]" with "which ... > /dev/null" in maintainer
scripts.
 
-- Magnus Holmgren <holmgren@debian.org> Mon, 03 Aug 2015 21:57:55 +0200
-- Magnus Holmgren <holmgren@debian.org> Mon, 03 Aug 2015 22:35:39 +0200
 
oidentd (2.0.8-7) unstable; urgency=medium
 
/oidentd/trunk/debian/postinst
3,7 → 3,7
set -e
 
# remove other ident daemons from inetd
if [ -x /usr/sbin/update-inetd ]; then
if which update-inetd > /dev/null; then
update-inetd --remove ident
fi
 
/oidentd/trunk/debian/postrm
3,14 → 3,14
 
set -e
 
if [ -x /usr/sbin/update-inetd ]; then
if [ -x /usr/sbin/identd ]; then
if which update-inetd > /dev/null; then
if which identd > /dev/null; then
update-inetd --add "ident stream tcp nowait nobody /usr/sbin/identd identd -i"
fi
fi
 
if [ "$1" = purge ]; then
if [ -x /usr/sbin/deluser ]; then
if which deluser > /dev/null; then
deluser --system --quiet oident
fi
fi
/oidentd/trunk/debian/prerm
3,7 → 3,7
 
set -e
 
if [ -x /usr/sbin/update-inetd ]; then
if which update-inetd > /dev/null; then
update-inetd --pattern "oidentd" --remove ident
fi