blob: 9cb17f009b1ad00b89816c026a7c728472722cc7 (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
|
#! /bin/sh
#
# Start/stop the Netatalk daemons.
#
# Netatalk daemons.
# If you use AppleTalk, Make sure not to start atalkd in the background:
# its data structures must have time to stablize before running the
# other processes.
#
#
# kill the named process(es)
#
killproc() {
pid=`/usr/bin/ps -e |
/usr/bin/grep $1 |
/usr/bin/sed -e 's/^ *//' -e 's/ .*//'`
[ "$pid" != "" ] && kill $pid
}
# netatalk.conf expects hostname in $HOSTNAME by default
HOSTNAME=`hostname`
. /etc/netatalk/netatalk.conf
#
# Start the netatalk server processes.
#
atalk_startup() {
echo -n 'starting netatalk daemons: '
if [ x"${ATALKD_RUN}" != x"no" ]; then
if [ -x /usr/sbin/atalkd ]; then
/usr/sbin/atalkd; echo -n ' atalkd'
fi
if [ -x /usr/bin/nbprgstr ]; then
/usr/bin/nbprgstr -p 4 "${ATALK_NAME}:Workstation${ATALK_ZONE}";
/usr/bin/nbprgstr -p 4 "${ATALK_NAME}:netatalk${ATALK_ZONE}";
echo -n ' nbprgstr'
fi
if [ x"${PAPD_RUN}" = x"yes" -a -x /usr/sbin/papd ]; then
/usr/sbin/papd; echo -n ' papd'
fi
if [ x"${TIMELORD_RUN}" = x"yes" -a -x /usr/sbin/timelord ]; then
/usr/sbin/timelord; echo -n ' timelord'
fi
fi
if [ x"${CNID_METAD_RUN}" = x"yes" -a -x /usr/sbin/cnid_metad ]; then
/usr/sbin/cnid_metad $CNID_CONFIG
echo -n ' cnid_metad'
fi
if [ x"${AFPD_RUN}" = x"yes" -a -x /usr/sbin/afpd ]; then
/usr/sbin/afpd ${AFPD_UAMLIST} -g ${AFPD_GUEST} \
-c ${AFPD_MAX_CLIENTS} -n "${ATALK_NAME}${ATALK_ZONE}"; echo -n ' afpd'
fi
echo '.'
}
atalk_shutdown() {
echo -n 'stopping netatalk daemons:'
if [ -x /usr/sbin/papd ]; then
killproc papd; echo -n ' papd'
fi
if [ -x /usr/sbin/afpd ]; then
killproc afpd; echo -n ' afpd'
fi
if [ -x /usr/sbin/cnid_metad ]; then
killproc cnid_met; echo -n ' cnid_metad'
fi
if [ -x /usr/sbin/timelord ]; then
killproc timelord; echo -n ' timelord'
fi
# kill atalkd last, since without it the plumbing goes away.
if [ -x /usr/sbin/atalkd ]; then
killproc atalkd; echo -n ' atalkd'
fi
echo '.'
}
case "$1" in
'start')
if [ x"${ATALK_BGROUND}" = x"yes" ]; then
echo -n "Starting netatalk in the background ... "
atalk_startup > /dev/null &
else
atalk_startup
fi
;;
#
# Stop the netatalk server processes.
#
'stop')
echo -n 'stopping netatalk daemons:'
if [ -x /usr/sbin/papd ]; then
killproc papd; echo -n ' papd'
fi
if [ -x /usr/sbin/afpd ]; then
killproc afpd; echo -n ' afpd'
fi
if [ -x /usr/sbin/cnid_metad ]; then
killproc cnid_met; echo -n ' cnid_metad'
fi
if [ -x /usr/sbin/timelord ]; then
killproc timelord; echo -n ' timelord'
fi
# kill atalkd last, since without it the plumbing goes away.
if [ -x /usr/sbin/atalkd ]; then
killproc atalkd; echo -n ' atalkd'
fi
echo '.'
;;
'restart')
atalk_shutdown
atalk_startup
;;
#
# Usage statement.
#
*)
echo "usage: $0 {start|stop|restart}"
exit 1
;;
esac
|