]> arthur.barton.de Git - netatalk.git/blob - distrib/initscripts/rc.atalk.redhat.tmpl
fixed a re-occuring bug (must have fixed it in the wrong file before)
[netatalk.git] / distrib / initscripts / rc.atalk.redhat.tmpl
1 #! /bin/sh
2 # chkconfig: 345 91 35
3 # description: This package enables Linux to talk to Macintosh
4 #              computers via the AppleTalk networking protocol and 
5 #              provides printer, file sharing, and AppleTalk routing 
6 #              services.   
7 #
8 # AppleTalk daemons. Make sure not to start atalkd in the background:
9 # its data structures must have time to stablize before running the
10 # other processes.
11
12 ATALK_BIN=:BINDIR:
13 ATALK_CONF_DIR=:ETCDIR:
14 ATALK_SBIN=:SBINDIR:
15
16 # Source function library.
17 . /etc/rc.d/init.d/functions
18
19 # Source networking configuration.
20 . /etc/sysconfig/network
21
22 # Quickly probe for appletalk and warn if we can't find it
23 /sbin/modprobe appletalk || echo "[could not load appletalk module]"
24
25 # Check for IP Encapsulation support
26 #/sbin/modprobe ipddp || echo "[could not load IP encapsulation]"
27
28 if [ ! -x ${ATALK_SBIN}/atalkd ]; then
29      echo "[${ATALK_SBIN}/atalkd not found.  Did it compile?]";
30      exit 0;
31 fi
32
33 if [ ! -f ${ATALK_CONF_DIR}/netatalk.conf ]; then
34      echo "[${ATALK_CONF_DIR}/netatalk.conf not found]";
35      exit 0;
36 fi
37
38 # read in netatalk configuration
39 . ${ATALK_CONF_DIR}/netatalk.conf
40
41 # Check that networking is up.
42 if [ ${NETWORKING} = "no" ]; then
43      echo "[Network isn't started]"; 
44      exit 0;
45 fi
46
47 # initialize return values
48 RETVAL=1
49 RETVAL_ATALKD=0
50 RETVAL_PAPD=0
51 RETVAL_AFPD=0
52
53 # startup code for everything
54 atalk_startup() {
55     if [ x"${ATALKD_RUN}" != x"no" ]; then 
56         echo -n "  Starting atalkd:"
57         daemon ${ATALK_SBIN}/atalkd
58         RETVAL_ATALKD=$?
59         echo
60
61         if [ -x ${ATALK_BIN}/nbprgstr ]; then   
62             action "  Registering ${ATALK_NAME}:Workstation${ATALK_ZONE}:" ${ATALK_BIN}/nbprgstr -p 4 \"${ATALK_NAME}:Workstation${ATALK_ZONE}\"
63             action "  Registering ${ATALK_NAME}:netatalk${ATALK_ZONE}:" ${ATALK_BIN}/nbprgstr -p 4 \"${ATALK_NAME}:netatalk${ATALK_ZONE}\"
64         fi      
65
66         if [ x"${PAPD_RUN}" = x"yes"  -a -x ${ATALK_SBIN}/papd ]; then
67             echo -n "  Starting papd:"
68             daemon ${ATALK_SBIN}/papd
69             RETVAL_PAPD=$?
70             echo
71         fi
72
73         # check for timelord in bin directory
74         if [ x"${TIMELORD_RUN}" = x"yes"  -a -x ${ATALK_BIN}/timelord ]; then
75             echo -n "  Starting timelord"
76             daemon ${ATALK_BIN}/timelord
77             echo
78         fi
79
80         # check for timelord in sbin directory
81         if [ x"${TIMELORD_RUN}" = x"yes"  -a -x ${ATALK_SBIN}/timelord ]; then
82             echo -n "  Starting timelord"
83             daemon ${ATALK_SBIN}/timelord
84             echo
85         fi
86
87     fi
88
89     if [ x"${AFPD_RUN}" = x"yes" -a -x ${ATALK_SBIN}/afpd ] ; then
90             echo -n "  Starting afpd:"
91             daemon ${ATALK_SBIN}/afpd ${AFPD_UAMLIST} -g ${AFPD_GUEST} \
92                -c ${AFPD_MAX_CLIENTS} -n \"${ATALK_NAME}${ATALK_ZONE}\"
93             RETVAL_AFPD=$?
94             echo
95     fi
96
97     if [ $RETVAL_ATALKD -eq 0 -a $RETVAL_PAPD -eq 0 -a $RETVAL_AFPD -eq 0 ]; then
98         RETVAL=0
99         touch /var/lock/subsys/atalk || RETVAL=1
100     fi
101 }
102
103 case "$1" in
104 'start')
105         echo -n 'Starting AppleTalk services: '
106         if [ x"${ATALK_BGROUND}" = x"yes" ]; then 
107             echo -n "(backgrounded)"
108             atalk_startup >& /dev/null &
109         else
110             echo
111             atalk_startup
112         fi
113         echo 
114         ;;
115 'stop')
116         echo 'Shutting down AppleTalk services: '
117         if [ x"${ATALKD_RUN}" != x"no" ]; then
118             if [ x"${PAPD_RUN}" = x"yes" -a -x ${ATALK_SBIN}/papd ]; then
119                 echo -n "  Stopping papd:"
120                 killproc papd
121                 RETVAL_PAPD=$?
122                 echo
123             fi
124
125             # checking for timelord in bin directory
126             if [ x"${TIMELORD_RUN}" = x"yes" -a -x ${ATALK_BIN}/timelord ]; then
127                 echo -n "  Stopping timelord:"
128                 killproc timelord
129                 echo
130             fi
131
132             # checking for timelord in sbin directory
133             if [ x"${TIMELORD_RUN}" = x"yes" -a -x ${ATALK_SBIN}/timelord ]; then
134                 echo -n "  Stopping timelord:"
135                 killproc timelord
136                 echo
137             fi
138
139             action "  Unregistering ${ATALK_NAME}:Workstation${ATALK_ZONE}:" ${ATALK_BIN}/nbpunrgstr \"${ATALK_NAME}:Workstation${ATALK_ZONE}\"
140             action "  Unregistering ${ATALK_NAME}:netatalk${ATALK_ZONE}:" ${ATALK_BIN}/nbpunrgstr \"${ATALK_NAME}:netatalk${ATALK_ZONE}\"
141
142             # kill atalkd last, since without it the plumbing goes away.
143             if [ -x ${ATALK_SBIN}/atalkd ]; then
144                 echo -n "  Stopping atalk:"
145                 killproc atalkd
146                 RETVAL_ATALKD=$?
147                 echo
148             fi
149         fi
150
151         # kill this separately as we also do AFP/tcp
152         if [ x"${AFPD_RUN}" = x"yes" -a -x ${ATALK_SBIN}/afpd ]; then
153             echo -n "  Stopping afpd:"
154             killproc afpd
155             RETVAL_AFPD=$?
156             echo
157         fi
158
159         if [ $RETVAL_ATALKD -eq 0 -a $RETVAL_PAPD -eq 0 -a $RETVAL_AFPD -eq 0 ] ; then
160             RETVAL=0
161             rm -f /var/lock/subsys/atalk || RETVAL=1
162         fi
163         echo ""
164         ;;
165   'restart'|'reload')
166         $0 stop
167         $0 start
168         RETVAL=$?
169         ;;
170   'status')
171         status atalkd
172         RETVAL=$?
173         ;;
174   *)
175         echo "Usage: atalk {start|stop|restart|status}"
176         exit 1
177 esac
178
179 exit $RETVAL