blob: 926f9bbb1e3642295126237b492521eab1262551 (
plain)
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
|
#!/sbin/runscript
# AppleTalk daemons. Make sure not to start atalkd in the background:
# its data structures must have time to stablize before running the
# other processes.
depend() {
need net
use logger dns
}
atalk_startup () {
# . /etc/netatalk/netatalk.conf
if [ "${ATALKD_RUN}" != "no" ]; then
ebegin "Starting atalkd"
start-stop-daemon --start --quiet --exec /usr/sbin/atalkd
eend $?
for reg in \
"${ATALK_NAME}:Workstation${ATALK_ZONE}" \
"${ATALK_NAME}:netatalk${ATALK_ZONE}"
do
ebegin " Registering $reg"
/usr/bin/nbprgstr "$reg"
eend $?
done
if [ "${PAPD_RUN}" = "yes" ]; then
ebegin " Starting papd"
start-stop-daemon --start --quiet --exec /usr/sbin/papd
eend $?
fi
fi
if [ "${CNID_METAD_RUN}" = "yes" ] ; then
ebegin "Starting cnid_metad"
start-stop-daemon --start --quiet --exec /usr/sbin/cnid_metad
eend $?
fi
if [ "${AFPD_RUN}" = "yes" ]; then
ebegin "Starting afpd"
start-stop-daemon --start --quiet --exec /usr/sbin/afpd -- \
${AFPD_UAMLIST} -g ${AFPD_GUEST} -c ${AFPD_MAX_CLIENTS} \
-n "${ATALK_NAME}${ATALK_ZONE}"
eend $?
fi
if [ "${TIMELORD_RUN}" = "yes" ]; then
ebegin "Starting timelord"
start-stop-daemon --start --quiet --exec /usr/sbin/timelord
eend $?
fi
}
start () {
. /etc/netatalk/netatalk.conf
if [ x"${ATALK_BGROUND}" = x"yes" ]; then
echo "Starting netatalk in the background ... "
atalk_startup >& /dev/null &
else
atalk_startup
fi
}
stop () {
. /etc/netatalk/netatalk.conf
if [ "${AFPD_RUN}" = "yes" ]; then
ebegin "Stopping afpd"
start-stop-daemon --stop --quiet --exec /usr/sbin/afpd
eend $?
fi
if [ "${TIMELORD_RUN}" = "yes" ]; then
ebegin "Stopping timelord"
start-stop-daemon --stop --quiet --exec /usr/sbin/timelord
eend $?
fi
if [ "${ATALKD_RUN}" != "no" ]; then
if [ "${PAPD_RUN}" = "yes" ]; then
ebegin "Stopping papd"
start-stop-daemon --stop --quiet --exec /usr/sbin/papd
eend $?
fi
for reg in \
"${ATALK_NAME}:Workstation${ATALK_ZONE}" \
"${ATALK_NAME}:netatalk${ATALK_ZONE}"
do
ebegin "Unregistering $reg"
/usr/bin/nbpunrgstr "$reg"
eend $?
done
ebegin "Stopping atalkd"
start-stop-daemon --stop --quiet --exec /usr/sbin/atalkd
eend $?
fi
if [ "${CNID_METAD_RUN}" = "yes" ] ; then
ebegin "Stopping cnid_metad"
start-stop-daemon --stop --quiet --exec /usr/sbin/cnid_metad
eend $?
fi
}
|