#!/bin/sh
# Arg: 1
# net-snmp-server-snmpd - postinst
#!/bin/sh
# Begin section update-rc.d
if type update-rc.d >/dev/null 2>/dev/null; then
	if [ -n "$D" ]; then
		OPT="-r $D"
	else
		OPT="-s"
	fi
	update-rc.d $OPT snmpd remove
fi
# End section update-rc.d