You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-misc/g15daemon/files/g15daemon-hotplug

16 lines
224 B

#!/bin/sh
export IN_HOTPLUG=1
case "$ACTION" in
"add")
/etc/init.d/g15daemon --quiet restart
;;
"remove")
/etc/init.d/g15daemon --quiet stop
;;
*)
exit 0
;;
esac