commit: cf03fa84d63b4084db28ff839ba82da035c5dc7c Author: Ben Roberts <ben <AT> sihnon <DOT> net> AuthorDate: Fri Sep 30 20:34:46 2016 +0000 Commit: Matt Thode <prometheanfire <AT> gentoo <DOT> org> CommitDate: Sat Oct 1 20:37:22 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf03fa84
Fix app-admin/puppet-agent service unit for mcollective The mcollective.service unit uses a path in ExecStart that doesn't exist. This commit updates the service unit to reference the path actually included by the package. Gentoo bug #595718 app-admin/puppet-agent/files/mcollective.service | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app-admin/puppet-agent/files/mcollective.service b/app-admin/puppet-agent/files/mcollective.service index 9e90c9e..9a6fdef 100644 --- a/app-admin/puppet-agent/files/mcollective.service +++ b/app-admin/puppet-agent/files/mcollective.service @@ -6,7 +6,7 @@ After=network.target Type=forking StandardOutput=syslog StandardError=syslog -ExecStart=/usr/sbin/bin/mcollectived --config=/etc/puppetlabs/mcollective/server.cfg --pidfile=/var/run/puppetlabs/mcollective.pid --daemonize +ExecStart=/usr/sbin/mcollectived --config=/etc/puppetlabs/mcollective/server.cfg --pidfile=/var/run/puppetlabs/mcollective.pid --daemonize ExecReload=/bin/kill -USR1 $MAINPID PIDFile=/var/run/puppetlabs/mcollective.pid
