summaryrefslogtreecommitdiffstats
path: root/projectroot
diff options
context:
space:
mode:
authorMichael Olbrich <m.olbrich@pengutronix.de>2019-03-09 10:59:57 +0100
committerMichael Olbrich <m.olbrich@pengutronix.de>2019-03-11 08:15:16 +0100
commitecda97674af4d145afc243c94debb314a80efd01 (patch)
tree4dee530778fb177915b834af979b4cf5c8a1b358 /projectroot
parent62e7a578afe928c07a96d971a79f284b2b468fcc (diff)
downloadptxdist-ecda97674af4d145afc243c94debb314a80efd01.tar.gz
ptxdist-ecda97674af4d145afc243c94debb314a80efd01.tar.xz
projectroot: remove obsolete /etc/init.d/splashutils
It is no longer installed since 759d67dfff6c863d117c114597dae95e6f91d970 ("splashutils: remove after more than one year in staging") Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
Diffstat (limited to 'projectroot')
-rw-r--r--projectroot/etc/init.d/splashutils53
1 files changed, 0 insertions, 53 deletions
diff --git a/projectroot/etc/init.d/splashutils b/projectroot/etc/init.d/splashutils
deleted file mode 100644
index 2e2abd04e..000000000
--- a/projectroot/etc/init.d/splashutils
+++ /dev/null
@@ -1,53 +0,0 @@
-#!/bin/sh
-#
-# This is an splashutils daemon init.d script which ist called by init(1) with [start|stop] as argument
-#
-
-PATH=/sbin:/bin:/usr/bin
-FUNCTIONS=/sbin/splash-functions.sh
-
-# --- nothing to change after this line ---
-
-. $FUNCTIONS
-
-mkdir -p /var/run/splash/cache/
-
-start_proc() {
- echo -n "starting splashutils daemon..."
- splash_start || (echo failed; exit 1)
- echo "done"
-}
-
-stop_proc() {
- echo -n "stopping splashutils daemon..."
- splash_exit
- echo "done"
-}
-
-
-case "$1" in
- start)
- start_proc
- ;;
- stop)
- stop_proc
- ;;
- restart|force-reload)
- echo -n "restarting splashutils daemon..."
- stop_proc
- sleep 2
- start_proc
- echo "done"
- ;;
- reload)
- echo "Not supported" >&2
- exit 1
- ;;
- *)
- echo "Usage: $0 {start|stop|restart|force-reload}"
- exit 1
- ;;
-esac
-
-exit 0
-