1
0
forked from ports/opt
opt/hotplug-perl/hotplug-perl.rc
2005-11-16 16:45:59 +00:00

21 lines
261 B
Bash
Executable File

#!/bin/sh
#
# /etc/rc.d/hotplug-perl: start/stop hotplug-perl
#
case $1 in
start)
/etc/hotplug-perl/start-hotplug
echo /sbin/hotplug-perl > /proc/sys/kernel/hotplug
;;
stop)
;;
restart)
;;
*)
echo "usage: $0 [start|stop|restart]"
;;
esac
# End of file