mirror of
https://git.freebsd.org/ports.git
synced 2025-06-07 05:40:30 -04:00
- add net/pacemaker2 (2.0.0-rc4) - net/corosync -> net/corosync2 (update to 2.4.4) - net/pacemaker -> net/pacemaker1 (update to 1.1.18) - add USES=corosync to deal with multiple versions PR: 228164, 228165 Submitted by: David Shane Holden <dpejesh@yahoo.com>
20 lines
312 B
Bash
20 lines
312 B
Bash
#!/bin/sh
|
|
# $FreeBSD$
|
|
|
|
# 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"
|