blob: e15d3db44d1b26294d1d2f6c11e1d15a32bfed5b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/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#
exit 0
|