blob: 22a87b8f7f4d8e4f628cae2798b8b0095d8382bc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh
set -e
DAEMON=/usr/sbin/console-kit-daemon
PIDFILE=/var/run/console-kit-daemon.pid
if [ "$1" = remove ]; then
start-stop-daemon --stop --quiet --oknodo --exec $DAEMON --pidfile $PIDFILE
fi
#DEBHELPER#
|