#! /bin/sh ### BEGIN INIT INFO # Provides: sudo # Required-Start: $local_fs $remote_fs # Required-Stop: # Default-Start: S # Default-Stop: ### END INIT INFO N=/etc/init.d/sudo set -e case "$1" in start) # make sure privileges don't persist across reboots if [ -d /var/run/sudo ] then find /var/run/sudo -exec touch -t 198501010000 '{}' \; fi ;; stop|reload|restart|force-reload) ;; *) echo "Usage: $N {start|stop|restart|force-reload}" >&2 exit 1 ;; esac exit 0