saving uncommitted changes in /etc prior to emerge run

This commit is contained in:
2015-08-23 15:13:49 +02:00
committed by Hans Wurst
parent 5eddbd49be
commit 43245272db
2 changed files with 36 additions and 0 deletions

23
init.d/._cfg0000_hddtemp Executable file
View File

@@ -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 $?
}