commit: 92c4bcb021f31238e34ee109a519759f20109ce0
Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 14 14:54:10 2017 +0000
Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Sat Oct 14 14:54:10 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92c4bcb0
sys-cluster/kube-proxy: Fix pidfile path
Package-Manager: Portage-2.3.11, Repoman-2.3.3
sys-cluster/kube-proxy/files/kube-proxy.initd | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/sys-cluster/kube-proxy/files/kube-proxy.initd
b/sys-cluster/kube-proxy/files/kube-proxy.initd
index 10d51f8785f..18a75adf0b6 100644
--- a/sys-cluster/kube-proxy/files/kube-proxy.initd
+++ b/sys-cluster/kube-proxy/files/kube-proxy.initd
@@ -3,7 +3,7 @@
# Distributed under the terms of the GNU General Public License v2
description="Kubernetes Proxy service"
-pidfile=${pidfile:-"/run/${SVCNAME}/${SVCNAME}.pid"}
+pidfile=${pidfile:-"/run/${SVCNAME}.pid"}
user=${user:-root}
group=${group:-root}
@@ -15,6 +15,5 @@ start_stop_daemon_args="--user ${user} --group ${group} \
--stderr /var/log/${SVCNAME}/${SVCNAME}.log"
depend() {
- need net
after net
}