aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/l1fwd.init
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/l1fwd.init')
-rwxr-xr-xcontrib/l1fwd.init31
1 files changed, 31 insertions, 0 deletions
diff --git a/contrib/l1fwd.init b/contrib/l1fwd.init
new file mode 100755
index 00000000..b228580e
--- /dev/null
+++ b/contrib/l1fwd.init
@@ -0,0 +1,31 @@
+#!/bin/sh
+### BEGIN INIT INFO
+# Provides: l1fwd
+# Required-Start:
+# Required-Stop: $local_fs
+# Default-Start: 5
+# Default-Stop: 0 6
+# Short-Description: Start screen session with l1fwd software
+# Description:
+### END INIT INFO
+
+. /etc/default/rcS
+
+case "$1" in
+ start)
+ /usr/bin/screen -d -m -c /etc/osmocom/screenrc-l1fwd
+ ;;
+ stop)
+ echo "This script doesn't support stop"
+ exit 1
+ ;;
+ restart|reload|force-reload)
+ exit 0
+ ;;
+ show)
+ ;;
+ *)
+ echo "Usage: sysmobts {start|stop|show|reload|restart}" >&2
+ exit 1
+ ;;
+esac