mirror of
https://git.freebsd.org/ports.git
synced 2025-06-29 08:30:37 -04:00
We have not checked for this KEYWORD for a long time now, so this is a complete noop, and thus no PORTREVISION bump. Removing it at this point is mostly for pedantic reasons, and partly to avoid perpetuating this anachronism by copy and paste to future scripts.
28 lines
577 B
Bash
28 lines
577 B
Bash
#!/bin/sh
|
|
# $FreeBSD$
|
|
|
|
# PROVIDE: irrd
|
|
# REQUIRE: DAEMON
|
|
# BEFORE: LOGIN
|
|
# KEYWORD: shutdown
|
|
|
|
# Define these irrd_* variables in one of these files:
|
|
# /etc/rc.conf
|
|
# /etc/rc.conf.local
|
|
# /etc/rc.conf.d/irrd
|
|
#
|
|
# DO NOT CHANGE THESE DEFAULT VALUES HERE
|
|
#
|
|
irrd_enable="${irrd_enable:-NO}" # Enable irrd
|
|
#irrd_program="%%PREFIX%%/sbin/irrd" # Location of irrd
|
|
irrd_flags="${irrd_flags:--u}" # Flags to imapd program
|
|
|
|
. %%RC_SUBR%%
|
|
|
|
name="irrd"
|
|
rcvar=`set_rcvar`
|
|
command="%%PREFIX%%/sbin/irrd"
|
|
required_files="%%PREFIX%%/etc/irrd.conf"
|
|
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|