blob: 8002fae3bdc0214beefe647065945dfd48b0bcc4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/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"
|