summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuel Rüger <mrueg@gentoo.org>2017-09-15 14:33:46 +0200
committerManuel Rüger <mrueg@gentoo.org>2017-09-15 14:33:46 +0200
commit73d8d2f60067ee4b7299cd3107dccd3aed4a5dd0 (patch)
treec695a0468438f023c7f2f896ec63bb28d53af664 /sys-auth/docker_auth/files
parentsys-kernel/gentoo-sources: Remove Kernel 4.1.X versions vulnerable to CVE-201... (diff)
downloadgentoo-73d8d2f60067ee4b7299cd3107dccd3aed4a5dd0.tar.gz
gentoo-73d8d2f60067ee4b7299cd3107dccd3aed4a5dd0.tar.bz2
gentoo-73d8d2f60067ee4b7299cd3107dccd3aed4a5dd0.zip
sys-auth/docker_auth: Version bump to 1.3
Package-Manager: Portage-2.3.8, Repoman-2.3.3
Diffstat (limited to 'sys-auth/docker_auth/files')
-rw-r--r--sys-auth/docker_auth/files/docker_auth.initd9
1 files changed, 2 insertions, 7 deletions
diff --git a/sys-auth/docker_auth/files/docker_auth.initd b/sys-auth/docker_auth/files/docker_auth.initd
index a8c368f18109..52699100d8c1 100644
--- a/sys-auth/docker_auth/files/docker_auth.initd
+++ b/sys-auth/docker_auth/files/docker_auth.initd
@@ -1,9 +1,9 @@
#!/sbin/openrc-run
-# Copyright 2016 Gentoo Foundation
+# Copyright 2016-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
description="Docker Registry Authentication Server"
-pidfile=${pidfile:-"/run/${SVCNAME}/${SVCNAME}.pid"}
+pidfile=${pidfile:-"/run/${SVCNAME}.pid"}
user=${user:-${SVCNAME}}
group=${group:-${SVCNAME}}
@@ -15,10 +15,5 @@ start_stop_daemon_args="--user ${user} --group ${group} \
--stderr /var/log/${SVCNAME}/${SVCNAME}.log"
depend() {
- need net
after net
}
-
-start_pre() {
- checkpath -d -m 0755 -o "${user}":"${group}" "${pidfile%/*}"
-}