Subversion Repositories

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

Rev 9 | Blame | Compare with Previous | Last modification | View Log | RSS feed

#!/bin/sh
# post removal script for the Debian GNU/Linux oidentd package

set -e

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 which deluser > /dev/null; then
                deluser --system --quiet oident
        fi
fi

#DEBHELPER#