diff --git a/sysutils/reggae/Makefile b/sysutils/reggae/Makefile index ea38de01bde7..84740e0c5c68 100644 --- a/sysutils/reggae/Makefile +++ b/sysutils/reggae/Makefile @@ -1,19 +1,19 @@ PORTNAME= reggae -DISTVERSION= 0.5.1 +DISTVERSION= 0.5.2 CATEGORIES= sysutils MAINTAINER= meka@tilda.center COMMENT= Powerful DevOps solution with CBSD as an option WWW= https://github.com/cbsd/reggae LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE USES= 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 96cf5f60895e..72dcabb5bc16 100644 --- a/sysutils/reggae/distinfo +++ b/sysutils/reggae/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1766717274 -SHA256 (cbsd-reggae-0.5.1_GH0.tar.gz) = eed4ba476e57d969c641f29376564c7f1cc5c5768b05ce663c99b12410898e30 -SIZE (cbsd-reggae-0.5.1_GH0.tar.gz) = 52081 +TIMESTAMP = 1775772514 +SHA256 (cbsd-reggae-0.5.2_GH0.tar.gz) = ced97a69752d81419939554022c32e962acbb30cdf4f6fe5840220c1c376d1fd +SIZE (cbsd-reggae-0.5.2_GH0.tar.gz) = 52185 diff --git a/sysutils/reggae/files/reggae_pf.in b/sysutils/reggae/files/reggae_pf.in index 7d316ed535f6..34b8e920919d 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 +# REQUIRE: pf local_unbound jail # 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.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 $*