summaryrefslogtreecommitdiffstats
path: root/examples/etc/init.d/sleeper
diff options
context:
space:
mode:
Diffstat (limited to 'examples/etc/init.d/sleeper')
-rwxr-xr-xexamples/etc/init.d/sleeper72
1 files changed, 72 insertions, 0 deletions
diff --git a/examples/etc/init.d/sleeper b/examples/etc/init.d/sleeper
new file mode 100755
index 000000000..6da5eae32
--- /dev/null
+++ b/examples/etc/init.d/sleeper
@@ -0,0 +1,72 @@
+#!/bin/bash
+
+# $Id$
+
+script=$0
+path=`echo $script | sed 's/etc..*/bin/'`
+
+PATH=$PATH:$path
+
+ps=`facter ps`
+
+if [ -z "$ps" ]; then
+ ps="ps -ef"
+fi
+
+function start
+{
+ cd $path
+ ./sleeper
+}
+
+function stop
+{
+ #if [ -n `which pgrep` ]; then
+ # pid=`pgrep sleeper`
+ #else
+ pid=`$ps | grep -v grep | grep sleeper | grep ruby | awk '{print $2}'`
+ #fi
+ if [ -n "$pid" ]; then
+ kill $pid
+ fi
+}
+
+function restart
+{
+ stop
+ start
+}
+
+function status
+{
+ #if [ -n `which pgrep` ]; then
+ # cmd="pgrep sleeper"
+ #else
+ #cmd="$ps | grep -v grep | grep sleeper | grep ruby | awk '{print $2}'"
+ #fi
+ #$cmd
+ $ps | grep -v grep | grep sleeper | grep ruby
+}
+
+case "$1" in
+ start)
+ start
+ ;;
+ stop)
+ stop
+ ;;
+ restart)
+ stop; start
+ ;;
+ status)
+ output=`status`
+ #status
+ exit $?
+ ;;
+ *)
+ echo "Usage: $N {start|stop|restart|force-reload}" >&2
+ exit 1
+ ;;
+esac
+
+exit 0