Add config for nat dhcp jail on homeserver.

This commit is contained in:
Tom Alexander
2022-12-03 01:41:00 -05:00
parent d3c1905847
commit 32073d9720
4 changed files with 7 additions and 1 deletions

View File

@@ -24,6 +24,9 @@ elif [ "$target" = "odofreebsd" ]; then
ansible-playbook -v -i environments/laptop playbook.yaml --diff --limit odofreebsd "${@}"
elif [ "$target" = "jail_nat_dhcp" ]; then
ansible-playbook -v -i environments/jail playbook.yaml --diff --limit nat_dhcp "${@}"
elif [ "$target" = "jail_homeserver_nat_dhcp" ]; then
ansible-playbook -v -i environments/jail playbook.yaml --diff --limit homeserver_nat_dhcp "${@}"
#
else
die 1 "Unrecognized target"
fi