Gentoo Archives: gentoo-commits

From: Matt Thode <prometheanfire@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/puppet-agent/files/
Date: Sat, 01 Oct 2016 20:38:42
Message-Id: 1475354242.cf03fa84d63b4084db28ff839ba82da035c5dc7c.prometheanfire@gentoo
1 commit: cf03fa84d63b4084db28ff839ba82da035c5dc7c
2 Author: Ben Roberts <ben <AT> sihnon <DOT> net>
3 AuthorDate: Fri Sep 30 20:34:46 2016 +0000
4 Commit: Matt Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 1 20:37:22 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf03fa84
7
8 Fix app-admin/puppet-agent service unit for mcollective
9
10 The mcollective.service unit uses a path in ExecStart that doesn't
11 exist. This commit updates the service unit to reference the path
12 actually included by the package.
13
14 Gentoo bug #595718
15
16 app-admin/puppet-agent/files/mcollective.service | 2 +-
17 1 file changed, 1 insertion(+), 1 deletion(-)
18
19 diff --git a/app-admin/puppet-agent/files/mcollective.service b/app-admin/puppet-agent/files/mcollective.service
20 index 9e90c9e..9a6fdef 100644
21 --- a/app-admin/puppet-agent/files/mcollective.service
22 +++ b/app-admin/puppet-agent/files/mcollective.service
23 @@ -6,7 +6,7 @@ After=network.target
24 Type=forking
25 StandardOutput=syslog
26 StandardError=syslog
27 -ExecStart=/usr/sbin/bin/mcollectived --config=/etc/puppetlabs/mcollective/server.cfg --pidfile=/var/run/puppetlabs/mcollective.pid --daemonize
28 +ExecStart=/usr/sbin/mcollectived --config=/etc/puppetlabs/mcollective/server.cfg --pidfile=/var/run/puppetlabs/mcollective.pid --daemonize
29 ExecReload=/bin/kill -USR1 $MAINPID
30 PIDFile=/var/run/puppetlabs/mcollective.pid