summaryrefslogtreecommitdiffstats
path: root/deps/ConsoleKit2/rc.consolekit
diff options
context:
space:
mode:
author Eric Hameleers <alien@slackware.com>2015-11-19 00:31:56 +0100
committer Eric Hameleers <alien@slackware.com>2015-11-19 00:31:56 +0100
commit3ab67efe8ea2bc47083a917b9530896272a543ec (patch)
tree0b7548a8da4cdbc182721074221ecebcd24b1fab /deps/ConsoleKit2/rc.consolekit
parenteab4982ab7c8b60aeb20475507aa19cbbf293d6e (diff)
downloadktown-3ab67efe8ea2bc47083a917b9530896272a543ec.tar.gz
ktown-3ab67efe8ea2bc47083a917b9530896272a543ec.tar.xz
Dependencies removed for KDE 5_15.11 because they are fulfilled by -current.
- ConsoleKit2 - LibRaw - eigen2 - xapian-core
Diffstat (limited to 'deps/ConsoleKit2/rc.consolekit')
-rw-r--r--deps/ConsoleKit2/rc.consolekit34
1 files changed, 0 insertions, 34 deletions
diff --git a/deps/ConsoleKit2/rc.consolekit b/deps/ConsoleKit2/rc.consolekit
deleted file mode 100644
index a193756..0000000
--- a/deps/ConsoleKit2/rc.consolekit
+++ /dev/null
@@ -1,34 +0,0 @@
-#!/bin/sh
-#
-# /etc/rc.d/rc.consolekit
-#
-# Start/stop consolekit-kit daemon.
-#
-# This daemon is used by polkit's console auth agent.
-
-# Start consolekit:
-ck_start() {
- echo "Starting ConsoleKit daemon: /usr/sbin/console-kit-daemon"
- /usr/sbin/console-kit-daemon
-}
-
-# Stop consolekit:
-ck_stop() {
- if [ -r /var/run/ConsoleKit/pid ]; then
- kill -HUP $(cat /var/run/ConsoleKit/pid)
- rm -f /var/run/ConsoleKit/pid
- else
- killall -HUP -q console-kit-daemon
- fi
-}
-
-case "$1" in
-'start')
- ck_start
- ;;
-'stop')
- ck_stop
- ;;
-*)
- echo "Usage: $0 start|stop"
-esac