summaryrefslogtreecommitdiff
path: root/media-radio/ax25-apps/files/ax25mond.rc
blob: fc5be3d07b204b731f62d405ff782c683a0633d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/sbin/openrc-run
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

depend() {
	need net
}

start() {
	ebegin "Starting ax25mond"
	start-stop-daemon --start --quiet --background --exec /usr/sbin/ax25mond
	eend $?
}

stop() {
	ebegin "Stopping ax25mond"
	start-stop-daemon --stop --quiet --exec /usr/sbin/ax25mond
	eend $?
}