summaryrefslogtreecommitdiffstats
path: root/multimedia/ustreamer/files/ustreamer.hotplug
blob: 6091761c121f388245b27e10364defa2fcd6086b (plain)
1
2
3
4
5
6
7
8
9
10
case "$ACTION" in
	add)
		# start process
		ls /dev/video* > /dev/null && /etc/init.d/ustreamer start
		;;
	remove)
		# stop process
		ls /dev/video* > /dev/null || /etc/init.d/ustreamer stop
		;;
esac