cdist-type__pf_apply_anchor - Man Page

Apply a pf(4) anchor on $__target_host

Description

This type is used on *BSD systems to manage anchors for the pf firewall.

Notice this type does not take care of copying the ruleset, that must be done by the user with, e.g. __file.

Optional Parameters

anchor_name

The name of the anchor to apply. If not set, ${__object_id} is used. This type requires /etc/pf.d/${anchor_name} to exist on $__target_host.

Examples

# Copy anchor file to ${__target_host}
__file "/etc/pf.d/80_dns" --source - <<EOF
# Managed remotely, changes will be lost

pass quick proto {tcp,udp} from any to any port domain
EOF

# Apply the anchor
require="__file/etc/pf.d/80_dns" __pf_apply_anchor 80_dns
# This is roughly equivalent to:
#   pfctl -a "${anchor_name}" -f "/etc/pf.d/${anchor_name}"

See Also

pf(4)

Authors

Evilham <contact--@--evilham.com> Kamila Součková <coding--@--kamila.is> Jake Guffey <jake.guffey--@--eprotex.com>

Copying

Copyright (C) 2020 Evilham. Copyright (C) 2016 Kamila Součková. Copyright (C) 2012 Jake Guffey. You can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

Info

Jul 31, 2022 7.0.0 cdist