summaryrefslogtreecommitdiff
path: root/media-radio/ax25-apps/files/ax25rtd.rc
diff options
context:
space:
mode:
Diffstat (limited to 'media-radio/ax25-apps/files/ax25rtd.rc')
-rw-r--r--media-radio/ax25-apps/files/ax25rtd.rc19
1 files changed, 19 insertions, 0 deletions
diff --git a/media-radio/ax25-apps/files/ax25rtd.rc b/media-radio/ax25-apps/files/ax25rtd.rc
new file mode 100644
index 000000000000..53fb572c5337
--- /dev/null
+++ b/media-radio/ax25-apps/files/ax25rtd.rc
@@ -0,0 +1,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 ax25rtd"
+ start-stop-daemon --start --quiet --background --exec /usr/sbin/ax25rtd
+ eend $?
+}
+
+stop() {
+ ebegin "Stopping ax25rtd"
+ start-stop-daemon --stop --quiet --exec /usr/sbin/ax25rtd
+ eend $?
+}