From: root Samara Date: Mon, 18 Jan 2016 14:46:23 +0000 (+0100) Subject: saving uncommitted changes in /etc prior to emerge run X-Git-Url: https://git.uhu-banane.de/?a=commitdiff_plain;h=2f15f88059d531a3e58603e89ee4e5ee7675ca4c;p=config%2Fsamara%2Fetc.git saving uncommitted changes in /etc prior to emerge run --- diff --git a/dbus-1/system.d/ConsoleKit.conf b/dbus-1/system.d/ConsoleKit.conf index 948f95f..789da65 100644 --- a/dbus-1/system.d/ConsoleKit.conf +++ b/dbus-1/system.d/ConsoleKit.conf @@ -21,7 +21,7 @@ send_interface="org.freedesktop.ConsoleKit.Seat"/> - + + + + + + + + + + + + diff --git a/init.d/consolekit b/init.d/consolekit index b202267..e84a2e0 100755 --- a/init.d/consolekit +++ b/init.d/consolekit @@ -1,26 +1,17 @@ #!/sbin/runscript -# Copyright 1999-2011 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/sys-auth/consolekit/files/consolekit-0.2.rc,v 1.1 2011/10/20 19:14:47 axs Exp $ +# $Id$ + +description="consolekit - tracks login sessions and seats" +pidfile="/var/run/ConsoleKit/pid" +command="/usr/sbin/console-kit-daemon" depend() { need dbus use logger } -start() { - ebegin "Starting ConsoleKit daemon" - +start_pre() { checkpath -q -d -m 0755 /var/run/ConsoleKit - - start-stop-daemon --start -q \ - --pidfile /var/run/ConsoleKit/pid \ - --exec /usr/sbin/console-kit-daemon -- - eend $? -} - -stop() { - ebegin "Stopping ConsoleKit daemon" - start-stop-daemon --stop -q --pidfile /var/run/ConsoleKit/pid - eend $? }