blob: afbc1b8b6302e9b0235dd68a5295a04a4f2cc4a5 (
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
|
#!/sbin/runscript
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: $
depend() {
use logger
}
start() {
ebegin "Starting Palm novacom daemon"
start-stop-daemon --start \
--make-pidfile \
--pidfile /var/run/novacomd.pid \
--background \
--exec /usr/sbin/novacomd --
eend $?
}
stop() {
ebegin "Stopping Palm novacom daemon"
start-stop-daemon --stop \
--pidfile /var/run/novacomd.pid
eend $?
}
|