public inbox for [email protected]
help / color / mirror / Atom feedFrom: Justin King <[email protected]>
To: [email protected]
Subject: repmgr.service
Date: Fri, 13 Nov 2015 20:59:27 -0500
Message-ID: <CAL3i3zT1NXVTyO=jOSXTnj3Uch9T569-LMyehDrUYqn0X+g2=w@mail.gmail.com> (raw)
List-Unsubscribe: <mailto:[email protected]?body=unsub%20pgsql-pkg-yum>
Please modify the repmgr-9.x.service files for the packages.
The service files currently have:
ExecStop=/usr/bin/kill -TERM ${PIDFILE}
> ExecReload=/usr/bin/kill -HUP ${PIDFILE}
/bin/kill does not accept files, you may be thinking of /bin/pkill -f
Replace them with:
ExecStop=/usr/bin/kill -TERM $MAINPID
> ExecReload=/usr/bin/kill -HUP $MAINPID
$MAINPID is a special systemd provided variable that references the known
PID of the process
And add the following under the [Service] section:
PIDFile=/var/run/repmgr/repmgrd-9.x.pid
This prevents systemd from guessing what the PID is and being wrong when
Type=forking
As it stands now `systemctl stop repmgrd` and `systemctl reload repmgrd`
will always fail.
Justin
view thread (16+ messages) latest in thread
reply
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Reply to all the recipients using the --to and --cc options:
reply via email
To: [email protected]
Cc: [email protected]
Subject: Re: repmgr.service
In-Reply-To: <CAL3i3zT1NXVTyO=jOSXTnj3Uch9T569-LMyehDrUYqn0X+g2=w@mail.gmail.com>
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
This inbox is served by agora; see mirroring instructions
for how to clone and mirror all data and code used for this inbox