mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-06-08 06:24:34 +02:00
13 lines
237 B
Bash
Executable file
13 lines
237 B
Bash
Executable file
#!/sbin/openrc-run
|
|
|
|
: ${cfgfile:=${CONFIGFILE:="/etc/corosync/corosync.conf"}}
|
|
|
|
pidfile="/run/$RC_SVCNAME.pid"
|
|
command="/usr/sbin/corosync"
|
|
command_args="-l $pidfile -c $cfgfile"
|
|
|
|
required_files="$cfgfile"
|
|
|
|
depend() {
|
|
need net
|
|
}
|