File: consolekit.prerm

package info (click to toggle)
consolekit 0.4.6-6
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 3,176 kB
  • sloc: ansic: 14,781; sh: 11,385; xml: 1,806; makefile: 659; python: 61
file content (12 lines) | stat: -rw-r--r-- 216 bytes parent folder | download | duplicates (4)
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#