File: consolekit.prerm

package info (click to toggle)
consolekit2 1.2.6-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,568 kB
  • sloc: ansic: 23,228; xml: 2,126; makefile: 1,145; sh: 677; python: 585
file content (12 lines) | stat: -rw-r--r-- 212 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

set -e

DAEMON=/usr/sbin/console-kit-daemon
PIDFILE=/run/console-kit-daemon.pid

if [ "$1" = remove ]; then
	start-stop-daemon --stop --quiet --oknodo --exec $DAEMON --pidfile $PIDFILE
fi

#DEBHELPER#