summaryrefslogtreecommitdiff
blob: cad0d9426ac1300fbc7c79b266a7248ce1ce7842 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/sbin/openrc-run
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

depend() {
        need net
}

start() {
        ebegin "Starting ASSP"
        start-stop-daemon -b -m --start --quiet --startas /usr/share/assp/assp.pl \
                --pidfile /var/run/assp/asspd.pid -- /var/lib/assp/
                       2<&1 >> /var/log/assp/assp.log
        eend $?
}

stop() {
        ebegin "Stopping ASSP"
        start-stop-daemon --stop --quiet --pidfile /var/run/assp/asspd.pid
        eend $?
}