aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/fbprogress/fbprogress/fbprogress-init
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/fbprogress/fbprogress/fbprogress-init')
-rwxr-xr-xrecipes/fbprogress/fbprogress/fbprogress-init34
1 files changed, 34 insertions, 0 deletions
diff --git a/recipes/fbprogress/fbprogress/fbprogress-init b/recipes/fbprogress/fbprogress/fbprogress-init
new file mode 100755
index 0000000000..c1dd3787b1
--- /dev/null
+++ b/recipes/fbprogress/fbprogress/fbprogress-init
@@ -0,0 +1,34 @@
+#!/bin/sh
+
+. /etc/init.d/functions
+
+case "$1" in
+ start)
+ # We don't want this script to block the rest of the boot process
+ if [ "$2" != "background" ]; then
+ $0 $1 background &
+ else
+ . /etc/profile
+
+ echo "Starting FBProgress"
+ fbprogress.sh &
+ fi
+ ;;
+
+ stop)
+ echo "Stopping FBProgress"
+ killproc fbprogress.sh
+ ;;
+
+ restart)
+ $0 stop
+ sleep 1
+ $0 start
+ ;;
+
+ *)
+ echo "usage: $0 { start | stop | restart }"
+ ;;
+esac
+
+exit 0