diff options
author | Matthew Thode <prometheanfire@gentoo.org> | 2013-08-13 16:36:17 +0000 |
---|---|---|
committer | Matthew Thode <prometheanfire@gentoo.org> | 2013-08-13 16:36:17 +0000 |
commit | cc882d35b92b9262da96b1fdd3771e9d6ae70310 (patch) | |
tree | deb2f65c6ed415a86f90e13d3652d928d37db1cf /sys-auth | |
parent | Dev channel bump. Fix bug #479418 by floppym. Fix bug #473260 by Vladimir. Ex... (diff) | |
download | gentoo-2-cc882d35b92b9262da96b1fdd3771e9d6ae70310.tar.gz gentoo-2-cc882d35b92b9262da96b1fdd3771e9d6ae70310.tar.bz2 gentoo-2-cc882d35b92b9262da96b1fdd3771e9d6ae70310.zip |
fix for bug 480502
(Portage version: 2.1.12.2/cvs/Linux x86_64, signed Manifest commit with key 0x2471eb3e40ac5ac3)
Diffstat (limited to 'sys-auth')
-rw-r--r-- | sys-auth/keystone/ChangeLog | 5 | ||||
-rw-r--r-- | sys-auth/keystone/files/keystone.initd | 8 |
2 files changed, 10 insertions, 3 deletions
diff --git a/sys-auth/keystone/ChangeLog b/sys-auth/keystone/ChangeLog index 181ee4afc9e9..d7d4826a50cc 100644 --- a/sys-auth/keystone/ChangeLog +++ b/sys-auth/keystone/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sys-auth/keystone # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-auth/keystone/ChangeLog,v 1.27 2013/08/11 00:56:17 prometheanfire Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-auth/keystone/ChangeLog,v 1.28 2013/08/13 16:36:17 prometheanfire Exp $ + + 13 Aug 2013; Matthew Thode <prometheanfire@gentoo.org> files/keystone.initd: + fix for bug 480502 *keystone-2013.1.3 (11 Aug 2013) diff --git a/sys-auth/keystone/files/keystone.initd b/sys-auth/keystone/files/keystone.initd index 1de2ff60d21f..c88d20b4f7db 100644 --- a/sys-auth/keystone/files/keystone.initd +++ b/sys-auth/keystone/files/keystone.initd @@ -1,7 +1,7 @@ #!/sbin/runscript -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-auth/keystone/files/keystone.initd,v 1.1 2012/12/09 21:57:11 prometheanfire Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-auth/keystone/files/keystone.initd,v 1.2 2013/08/13 16:36:17 prometheanfire Exp $ depend() { need net @@ -28,6 +28,10 @@ checkconfig() { start() { checkconfig || return $? . /etc/conf.d/$BASENAME + + if [ ! -d ${PID_PATH} ]; then + mkdir ${PID_PATH} + fi ebegin "Starting ${SVCNAME}" |