summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'sys-power/cpufreqd/files/cpufreqd-2.0.0_beta4-init.d')
-rw-r--r--sys-power/cpufreqd/files/cpufreqd-2.0.0_beta4-init.d38
1 files changed, 0 insertions, 38 deletions
diff --git a/sys-power/cpufreqd/files/cpufreqd-2.0.0_beta4-init.d b/sys-power/cpufreqd/files/cpufreqd-2.0.0_beta4-init.d
deleted file mode 100644
index 4b0fdb2f6293..000000000000
--- a/sys-power/cpufreqd/files/cpufreqd-2.0.0_beta4-init.d
+++ /dev/null
@@ -1,38 +0,0 @@
-#!/sbin/runscript
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-power/cpufreqd/files/cpufreqd-2.0.0_beta4-init.d,v 1.2 2005/09/02 15:48:25 brix Exp $
-
-CONFIGFILE=/etc/cpufreqd.conf
-
-depend() {
- need localmount
- use logger
-}
-
-checkconfig() {
- if [[ ! -f ${CONFIGFILE} ]]; then
- eerror "Configuration file ${CONFIGFILE} not found"
- return 1
- fi
-
- if [[ ! -e /proc/cpufreq ]] && [[ ! -e /sys/devices/system/cpu/cpu0/cpufreq ]]; then
- eerror "cpufreqd requires the kernel to be configured with CONFIG_CPU_FREQ"
- return 1
- fi
-}
-
-start() {
- checkconfig || return 1
-
- ebegin "Starting CPU Frequency Daemon"
- start-stop-daemon --start --quiet --exec /usr/sbin/cpufreqd -- \
- -f ${CONFIGFILE}
- eend ${?}
-}
-
-stop() {
- ebegin "Stopping CPU Frequency Daemon"
- start-stop-daemon --stop --quiet --exec /usr/sbin/cpufreqd
- eend ${?}
-}