#!/usr/bin/env zsh ################################################################################ # # This file is autoloaded by .zshrc, and actually loaded when executed # ################################################################################ # # Filename: pfctl # Authors: Dennis Eriksen # Bug-Reports: Email # License: This file is licensed under the BSD-3-Clause license. # Small function that enables you to write `pfctl reload` to reload pf with new # config setopt errexit if (( ARGC == 1 )) && [[ $1 == "reload" ]]; then print -- "pfctl -nf /etc/pf.conf && pfctl -f /etc/pf.conf" command pfctl -nf /etc/pf.conf command pfctl -f /etc/pf.conf print -- "Ok" return fi command pfctl $@ # END OF FILE #################################################################