summaryrefslogtreecommitdiff
path: root/debian/trousers.init
diff options
context:
space:
mode:
authorPierre Chifflier <pollux@debian.org>2012-07-05 20:56:13 +0200
committerIgor Pashev <pashev.igor@gmail.com>2012-11-25 14:36:22 +0000
commit0069ef22ba877f2a5dddfb8722757f5c3577b661 (patch)
tree58fc42bd7267686730ce267fcf71142255b9e9bc /debian/trousers.init
parentc3649a2def02c41d837ae1f79dda729ccb91e677 (diff)
downloadtrousers-debian/0.3.9-3.tar.gz
Imported Debian patch 0.3.9-3debian/0.3.9-3
Diffstat (limited to 'debian/trousers.init')
-rw-r--r--debian/trousers.init72
1 files changed, 72 insertions, 0 deletions
diff --git a/debian/trousers.init b/debian/trousers.init
new file mode 100644
index 0000000..fc00fa1
--- /dev/null
+++ b/debian/trousers.init
@@ -0,0 +1,72 @@
+#!/bin/sh
+
+### BEGIN INIT INFO
+# Provides: tcsd trousers
+# Required-Start: $local_fs $remote_fs $network
+# Required-Stop: $local_fs $remote_fs $network
+# Should-Start:
+# Should-Stop:
+# Default-Start: 2 3 4 5
+# Default-Stop: 0 1 6
+# Short-Description: starts tcsd
+# Description: tcsd belongs to the TrouSerS TCG Software Stack
+### END INIT INFO
+
+PATH=/sbin:/bin:/usr/sbin:/usr/bin
+DAEMON=/usr/sbin/tcsd
+NAME=tcsd
+DESC="Trusted Computing daemon"
+USER="tss"
+
+test -x "${DAEMON}" || exit 0
+
+# Read configuration variable file if it is present
+[ -r /etc/default/$NAME ] && . /etc/default/$NAME
+
+. /lib/lsb/init-functions
+
+case "${1}" in
+ start)
+ log_daemon_msg "Starting $DESC" "$NAME"
+
+ if [ ! -e /dev/tpm* ]
+ then
+ log_warning_msg "device driver not loaded, skipping."
+ exit 0
+ fi
+
+ start-stop-daemon --start --quiet --oknodo --pidfile /var/run/${NAME}.pid --user ${USER} --chuid ${USER} --exec ${DAEMON} -- ${DAEMON_OPTS}
+ RETVAL="$?"
+ log_end_msg $RETVAL
+ [ "$RETVAL" = 0 ] && pidof $DAEMON > /var/run/${NAME}.pid
+ exit $RETVAL
+ ;;
+
+ stop)
+ log_daemon_msg "Stopping $DESC" "$NAME"
+
+ start-stop-daemon --stop --quiet --oknodo --pidfile /var/run/${NAME}.pid --user ${USER} --exec ${DAEMON}
+ RETVAL="$?"
+ log_end_msg $RETVAL
+ rm -f /var/run/${NAME}.pid
+ exit $RETVAL
+ ;;
+
+ restart|force-reload)
+ "${0}" stop
+ sleep 1
+ "${0}" start
+ exit $?
+ ;;
+
+ status)
+ status_of_proc -p /var/run/${NAME}.pid "${DAEMON}" "${NAME}" && exit 0 || exit $?
+ ;;
+
+ *)
+ echo "Usage: ${NAME} {start|stop|restart|force-reload|status}" >&2
+ exit 3
+ ;;
+esac
+
+exit 0