-
Notifications
You must be signed in to change notification settings - Fork 142
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Enhancement: optional ext_if6 macro in pf.conf to enable rdr for non-VNET dual-stack jails #627
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -45,6 +45,7 @@ bastille_conf_check | |
. /usr/local/etc/bastille/bastille.conf | ||
# Set default values for config properties added during the current major version: | ||
: "${bastille_network_pf_ext_if:=ext_if}" | ||
: "${bastille_network_pf_ext_if:=ext_if6}" | ||
: "${bastille_network_pf_table:=jails}" | ||
|
||
## bastille_prefix should be 0750 | ||
|
@@ -62,7 +63,7 @@ bastille_perms_check() { | |
bastille_perms_check | ||
|
||
## version | ||
BASTILLE_VERSION="0.10.20231013" | ||
BASTILLE_VERSION=b7d741b5cd3b0c758f0983fd9546e88fba0354d7 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This doesn't need to be included in the patch. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. OK, will keep it in mind for next time! There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @waseigo please then remove the change from your PR |
||
|
||
usage() { | ||
cat << EOF | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I assume this variable is meant to be
${bastille_network_pf_ext_if6:=ext_if6}
?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, you are correct... I fixed it locally but forgot to push.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@waseigo can you push the change so we can review it again?