summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'sys-power/intel-undervolt/files/initd')
-rw-r--r--sys-power/intel-undervolt/files/initd23
1 files changed, 0 insertions, 23 deletions
diff --git a/sys-power/intel-undervolt/files/initd b/sys-power/intel-undervolt/files/initd
deleted file mode 100644
index 0a43656ea79f..000000000000
--- a/sys-power/intel-undervolt/files/initd
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-depend() {
- after thermald
-}
-
-command="/usr/bin/intel-undervolt"
-command_args="daemon"
-command_background="true"
-pidfile="/run/${RC_SVCNAME}.pid"
-required_files="/etc/intel-undervolt.conf"
-
-start_pre() {
- if service_started thermald; then
- eerror "thermald conflits with ${RC_SVCNAME}, exiting"
- fi
-
- ebegin "${RC_SVCNAME} -> apply initial voltage"
- "${command}" apply
- eend $?
-}