aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/l1fwd.init
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2019-03-26 16:59:53 +0100
committerHarald Welte <laforge@gnumonks.org>2019-03-27 09:57:41 +0000
commit749b878eb11f25edf3c6d3e368413f75f6bc3622 (patch)
treeca381188255af6ad6b5143d5a4ae999bcf5b1b2d /contrib/l1fwd.init
parent2f5e7093bfbc146598b26630ec7d55b9e72414fe (diff)
contrib: Remove deprecated screen script helpers
Nowadays only known users (OE images) use systemd and don't require this kind of screen setup. In any case, this kind of file belongs to scpeific setup and are not needed here. Change-Id: I65b0eee44336e4627620443861092b8988f2e01d
Diffstat (limited to 'contrib/l1fwd.init')
-rwxr-xr-xcontrib/l1fwd.init31
1 files changed, 0 insertions, 31 deletions
diff --git a/contrib/l1fwd.init b/contrib/l1fwd.init
deleted file mode 100755
index b228580e..00000000
--- a/contrib/l1fwd.init
+++ /dev/null
@@ -1,31 +0,0 @@
-#!/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