From 43245272db12423f6ec2899fe6e71df0175391a3 Mon Sep 17 00:00:00 2001 From: hasufell Date: Sun, 23 Aug 2015 15:13:49 +0200 Subject: [PATCH] saving uncommitted changes in /etc prior to emerge run --- conf.d/._cfg0000_hddtemp | 13 +++++++++++++ init.d/._cfg0000_hddtemp | 23 +++++++++++++++++++++++ 2 files changed, 36 insertions(+) create mode 100644 conf.d/._cfg0000_hddtemp create mode 100755 init.d/._cfg0000_hddtemp diff --git a/conf.d/._cfg0000_hddtemp b/conf.d/._cfg0000_hddtemp new file mode 100644 index 0000000..b60b0f3 --- /dev/null +++ b/conf.d/._cfg0000_hddtemp @@ -0,0 +1,13 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +# the hddtemp executable +HDDTEMP_EXEC=/usr/sbin/hddtemp + +# various options to pass to the daemon +HDDTEMP_OPTS="--listen=127.0.0.1" + +# a list of drives to check +HDDTEMP_DRIVES="/dev/sda /dev/sdb" + diff --git a/init.d/._cfg0000_hddtemp b/init.d/._cfg0000_hddtemp new file mode 100755 index 0000000..60b1e31 --- /dev/null +++ b/init.d/._cfg0000_hddtemp @@ -0,0 +1,23 @@ +#!/sbin/runscript +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +depend() { + need localmount +} + +start() { + ebegin "Starting hddtemp daemon" + /sbin/start-stop-daemon --start --quiet --exec ${HDDTEMP_EXEC} \ + -- -d ${HDDTEMP_OPTS} ${HDDTEMP_DRIVES} + eend $? +} + +stop() { + ebegin "Stopping hddtemp daemon" + start-stop-daemon --stop --quiet --exec ${HDDTEMP_EXEC} + eend $? +} + +