pkg://wipl-client-inetd_20020601-11.1_i386.deb:17608/postinst
info downloads
#! /bin/sh
# postinst script for wipl
#
# see: dh_installdeb(1)
. /usr/share/debconf/confmodule || true
set -e
if ! grep -q ^wipld /etc/inetd.conf; then
update-inetd --add "wipld\tstream\ttcp\tnowait\twipld\t/usr/sbin/tcpd\t/usr/sbin/wiplcInetd"
fi
if [ "$1" = "configure" ]; then
db_get wipl-client-inetd/enable-disable || true
if [ "$RET" = "true" ]; then
update-inetd --enable "wipld"
else
update-inetd --disable "wipld"
fi
fi
exit 0