diff options
Diffstat (limited to 'sys-auth/keystone/files/keystone.initd')
-rw-r--r-- | sys-auth/keystone/files/keystone.initd | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sys-auth/keystone/files/keystone.initd b/sys-auth/keystone/files/keystone.initd index c88d20b4f7db..f7c4acd01626 100644 --- a/sys-auth/keystone/files/keystone.initd +++ b/sys-auth/keystone/files/keystone.initd @@ -1,7 +1,7 @@ #!/sbin/runscript # 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.2 2013/08/13 16:36:17 prometheanfire Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-auth/keystone/files/keystone.initd,v 1.3 2013/11/18 03:24:30 prometheanfire Exp $ depend() { need net @@ -35,8 +35,7 @@ start() { ebegin "Starting ${SVCNAME}" - start-stop-daemon --start --quiet --make-pidfile --pidfile "${PID_PATH}/${SVCNAME}.pid" \ - --exec /usr/bin/${SVCNAME}-all --background -- --config-file=${CONFIG_FILE} + start-stop-daemon --start --quiet --make-pidfile --pidfile "${PID_PATH}/${SVCNAME}.pid" --exec /usr/bin/${SVCNAME}-all --background -- --config-file=${CONFIG_FILE} --log-file=${LOG_FILE} eend $? "Failed to start ${SVCNAME}" } |