summaryrefslogtreecommitdiffstats
path: root/projectroot/etc/init.d/famd
blob: f42d3045af5800e395f394d4c55abd36a1135133 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh
#
# famd
#
case $1 in

	start)
		echo "famd starting"
		/usr/sbin/famd -c /etc/fam.conf
		;;

esac