#!/bin/sh
set -e
	update-alternatives --install /usr/bin/rpcinfo rpcinfo /usr/bin/rpcinfo.rpcbind 10
if true && 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 rpcbind start 12 2 3 4 5 . stop 60 0 1 6 .
fi
