Update pf.conf

Fix comment, because current one won't work:

cat /etc/pf.conf
anchor f2b {
  sshd
}

# service pf reload
Reloading pf rules.
/etc/pf.conf:2: syntax error

New version:

cat /etc/pf.conf
anchor f2b {
  anchor sshd
}

# service pf reload
Reloading pf rules.
pull/1919/head
Łukasz Wąsikowski 7 years ago committed by sebres
parent 028f32b74b
commit a4f94d2619

@ -18,8 +18,8 @@
# also, these rulesets are loaded into (nested) anchors
# to enable them, add
# anchor f2b {
# name1
# name2
# anchor name1
# anchor name2
# ...
# }
# to your main pf ruleset, where "namei" are the names of the jails

Loading…
Cancel
Save