]> pd.if.org Git - startuptools/blob - scripts/example.rc
added startup scripts
[startuptools] / scripts / example.rc
1 #!/bin/sh
2
3 . /etc/rc.conf
4
5 case "$1" in 
6         start)
7                 exit 0
8                 ;;
9         stop)
10                 exit 0;
11                 ;;
12         restart)
13                 exit 0;
14                 ;;
15         status)
16                 exit 0;
17                 ;;
18         *)
19                 echo "usage: $0 {start | stop | restart | status }"
20                 exit 1
21 esac