diff --git a/sysutils/reggae/Makefile b/sysutils/reggae/Makefile index ff4b03a5ba3e..49c73b9c6c20 100644 --- a/sysutils/reggae/Makefile +++ b/sysutils/reggae/Makefile @@ -1,20 +1,20 @@ PORTNAME= reggae -DISTVERSION= 0.2.3 +DISTVERSION= 0.2.4 CATEGORIES= sysutils MAINTAINER= meka@tilda.center COMMENT= Powerful DevOps solution heavily relaying on CBSD LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= ${LOCALBASE}/bin/cbsd:sysutils/cbsd \ sudo:security/sudo USE_GITHUB= yes GH_ACCOUNT= cbsd USE_RC_SUBR= reggae reggae_pf NO_ARCH= yes .include diff --git a/sysutils/reggae/distinfo b/sysutils/reggae/distinfo index de995aadeda4..45ab774a0590 100644 --- a/sysutils/reggae/distinfo +++ b/sysutils/reggae/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1657705855 -SHA256 (cbsd-reggae-0.2.3_GH0.tar.gz) = 10228858c7247c5ab14a9bec86dead6749bdbf0afb6984b8fd563d80c158ca65 -SIZE (cbsd-reggae-0.2.3_GH0.tar.gz) = 50216 +TIMESTAMP = 1657872365 +SHA256 (cbsd-reggae-0.2.4_GH0.tar.gz) = 8e94946b426729a89d3f3048f623958b4e2de2afed7f61c7ec21a21ad45804dc +SIZE (cbsd-reggae-0.2.4_GH0.tar.gz) = 49997 diff --git a/sysutils/reggae/files/reggae_pf.in b/sysutils/reggae/files/reggae_pf.in index 74db0961a70b..7d316ed535f6 100644 --- a/sysutils/reggae/files/reggae_pf.in +++ b/sysutils/reggae/files/reggae_pf.in @@ -1,37 +1,37 @@ #!/bin/sh # PROVIDE: reggae_pf # REQUIRE: pf local_unbound # Add the following lines to /etc/rc.conf.local, /etc/rc.conf or # /etc/rc.conf.d/reggae_pf to enable this service: # # reggae_pf_enable (bool): Set to NO by default. # Set it to "YES" to enable virtual_oss. # reggae_pf_directory (string): Directory containing PF anchor files # Default is "/etc/pf.d" . /etc/rc.subr name=reggae_pf desc="Reggae helper to load PF anchors" rcvar=${name}_enable start_precmd="${name}_precmd" load_rc_config $name : ${reggae_pf_enable:="NO"} -: ${reggae_pf_directory:="/etc/pf.d"} +: ${reggae_pf_directory:="/etc/pf.conf.d"} command="%%PREFIX%%/bin/reggae" command_args="pf ${reggae_pf_directory}" reggae_pf_precmd() { if [ ! -d "${reggae_pf_directory}" ]; then echo "${reggae_pf_directory} is not directory" >&2 exit 1 fi } run_rc_command $*