diff options
author | Michael Stapelberg <michael@stapelberg.de> | 2009-06-17 22:44:17 +0200 |
---|---|---|
committer | Michael Stapelberg <michael@stapelberg.de> | 2009-06-17 22:44:17 +0200 |
commit | 780625a4fab29a43f63603c6a1137ebbdd7a2412 (patch) | |
tree | 8a592fe000f4b093388a8908f3e889eb15ecc526 /debian/i3status-wmii.init | |
parent | 35936f4b71aece84643d7a6627efb73c2a0d9369 (diff) |
debian: update policy-version to 3.8.2, fix build, re-add initscript
Diffstat (limited to 'debian/i3status-wmii.init')
-rwxr-xr-x | debian/i3status-wmii.init | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/debian/i3status-wmii.init b/debian/i3status-wmii.init new file mode 100755 index 0000000..9b5ea6d --- /dev/null +++ b/debian/i3status-wmii.init @@ -0,0 +1,35 @@ +#!/bin/sh +# +### BEGIN INIT INFO +# Provides: i3status +# Required-Start: +# Required-Stop: +# Default-Start: 2 3 4 5 +# Default-Stop: 0 1 6 +# Short-Description: Generates a status line for dzen2 or wmii +# Description: Generates a status line for dzen2 or wmii +### END INIT INFO + +# For the pidfile, you must be root. i3status itself runs as user just fine +[ $(id -ru) -eq 0 ] || { echo "You need to be root"; exit 1; } + +. /lib/lsb/init-functions + +case "$1" in +start) log_daemon_msg "Starting wmii status bar filler" "i3status" + start-stop-daemon --start --background --quiet --make-pidfile --pidfile /var/run/i3status.pid --name i3status --startas /usr/bin/i3status + log_end_msg $? + ;; +stop) log_daemon_msg "Stopping wmii status bar filler" "i3status" + start-stop-daemon --stop --quiet --pidfile /var/run/i3status.pid --name i3status + log_end_msg $? + ;; +restart|reload|force-reload) log_daemon_msg "Restarting wmii status bar filler" "i3status" + start-stop-daemon --stop --retry 5 --quiet --pidfile /var/run/i3status.pid --name i3status + start-stop-daemon --start --background --quiet --make-pidfile --pidfile /var/run/i3status.pid --name i3status --startas /usr/bin/i3status + ;; +*) log_action_msg "Usage: $0 {start|stop|restart|reload|force-reload}" + exit 2 + ;; +esac +exit 0 |