mirror of
https://git.freebsd.org/ports.git
synced 2025-04-29 10:06:40 -04:00
19 lines
300 B
Bash
19 lines
300 B
Bash
#!/bin/sh
|
|
|
|
# PROVIDE: corosync-notifyd
|
|
# REQUIRE: LOGIN FILESYSTEMS
|
|
# KEYWORD: shutdown
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="corosync_notifyd"
|
|
rcvar="corosync_notifyd_enable"
|
|
|
|
load_rc_config $name
|
|
|
|
: ${corosync_notifyd_enable:=NO}
|
|
|
|
command="%%PREFIX%%/sbin/corosync-notifyd"
|
|
command_args="-l"
|
|
|
|
run_rc_command "$1"
|