diff options
author | Ben Roberts <ben@sihnon.net> | 2016-09-30 21:34:46 +0100 |
---|---|---|
committer | Matthew Thode <prometheanfire@gentoo.org> | 2016-10-01 15:37:22 -0500 |
commit | cf03fa84d63b4084db28ff839ba82da035c5dc7c (patch) | |
tree | ce236aabd12bd3d8152f33d02988ad659d59eafb /app-admin/puppet-agent | |
parent | dev-python/bcrypt: Bump (diff) | |
download | gentoo-cf03fa84d63b4084db28ff839ba82da035c5dc7c.tar.gz gentoo-cf03fa84d63b4084db28ff839ba82da035c5dc7c.tar.bz2 gentoo-cf03fa84d63b4084db28ff839ba82da035c5dc7c.zip |
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
Diffstat (limited to 'app-admin/puppet-agent')
-rw-r--r-- | app-admin/puppet-agent/files/mcollective.service | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app-admin/puppet-agent/files/mcollective.service b/app-admin/puppet-agent/files/mcollective.service index 9e90c9e67280..9a6fdefb8ca8 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 |