]> Frank Brehm's Git Trees - config/samara/etc.git/commitdiff
saving uncommitted changes in /etc prior to emerge run
authorfbrehm <fbrehm@samara.profitbricks.localdomain>
Wed, 6 Jun 2012 21:43:56 +0000 (23:43 +0200)
committerroot <root@samara.profitbricks.localdomain>
Wed, 6 Jun 2012 21:43:56 +0000 (23:43 +0200)
.etckeeper
conf.d/._cfg0000_acpid [new file with mode: 0644]
init.d/._cfg0000_acpid [new file with mode: 0755]

index 86932a7b853543f70682642baad9d7bfd7f584cf..ec7902710b8d666dcbeb3cdcc8da3c9f7abf0b0e 100755 (executable)
@@ -226,6 +226,7 @@ maybe chmod 0644 './colord.conf'
 maybe chmod 0644 './colordiffrc'
 maybe chmod 0644 './colordiffrc-lightbg'
 maybe chmod 0755 './conf.d'
+maybe chmod 0644 './conf.d/._cfg0000_acpid'
 maybe chmod 0644 './conf.d/acpid'
 maybe chmod 0644 './conf.d/alsasound'
 maybe chmod 0644 './conf.d/apache2'
@@ -1174,6 +1175,7 @@ maybe chmod 0644 './imlib/im_palette-tiny.pal'
 maybe chmod 0644 './imlib/im_palette.pal'
 maybe chmod 0644 './imlib/imrc'
 maybe chmod 0755 './init.d'
+maybe chmod 0755 './init.d/._cfg0000_acpid'
 maybe chmod 0755 './init.d/NetworkManager'
 maybe chmod 0755 './init.d/acpid'
 maybe chmod 0755 './init.d/aiccu'
diff --git a/conf.d/._cfg0000_acpid b/conf.d/._cfg0000_acpid
new file mode 100644 (file)
index 0000000..9aadb4c
--- /dev/null
@@ -0,0 +1,6 @@
+# /etc/conf.d/acpid: config file for /etc/init.d/acpid
+
+# Options to pass to the acpid daemon.
+# See the acpid(8) man page for more info.
+
+ACPID_ARGS=""
diff --git a/init.d/._cfg0000_acpid b/init.d/._cfg0000_acpid
new file mode 100755 (executable)
index 0000000..412a265
--- /dev/null
@@ -0,0 +1,21 @@
+#!/sbin/runscript
+# Copyright 1999-2012 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sys-power/acpid/files/acpid-2.0.16-init.d,v 1.1 2012/05/19 09:53:59 ssuominen Exp $
+
+extra_started_commands="reload"
+command="/usr/sbin/acpid"
+command_args="${ACPID_ARGS}"
+start_stop_daemon_args="--quiet"
+description="Daemon for Advanced Configuration and Power Interface"
+
+depend() {
+       need localmount
+       use logger
+}
+
+reload() {
+       ebegin "Reloading acpid configuration"
+       start-stop-daemon --exec $command --signal HUP
+       eend $?
+}