mirror of
https://github.com/EnterpriseDB/repmgr.git
synced 2026-03-23 23:26:30 +00:00
Now repmgr.repmgrd.default has another option: REPMGRD_ENABLED. Valid values are either yes or no.
19 lines
370 B
Bash
19 lines
370 B
Bash
#!/bin/sh
|
|
# default settings for repmgrd. This file is source by /bin/sh from
|
|
# /etc/init.d/repmgrd
|
|
|
|
# disable repmgrd by default so it won't get started upon installation
|
|
# valid values: yes/no
|
|
REPMGRD_ENABLED=no
|
|
|
|
# Options for repmgrd
|
|
REPMGRD_OPTS=""
|
|
|
|
# repmgrd binary
|
|
REPMGR_BIN="/usr/bin/repmgr"
|
|
|
|
# pid file
|
|
REPMGR_PIDFILE="/var/run/repmgrd.pid"
|
|
|
|
|