mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-26 17:01:34 +02:00
13 lines
258 B
Plaintext
13 lines
258 B
Plaintext
#!/sbin/openrc-run
|
|
|
|
command="/usr/bin/repmgrd"
|
|
command_background="yes"
|
|
# "user" variable is here for backward compatibility only
|
|
command_user="${command_user:-${user:-postgres}}"
|
|
pidfile="/run/$RC_SVCNAME.pid"
|
|
|
|
depend() {
|
|
need postgresql
|
|
use net logger
|
|
}
|