Start a jail_nat_dhcp role for the nat_dhcp jail.

This commit is contained in:
Tom Alexander
2022-12-02 20:39:52 -05:00
parent e4f5754a91
commit 26354d1a86
12 changed files with 84 additions and 1 deletions

View File

@@ -22,6 +22,8 @@ elif [ "$target" = "odolinux" ]; then
ansible-playbook -v -i environments/laptop playbook.yaml --diff --limit odolinux "${@}"
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 "${@}"
else
die 1 "Unrecognized target"
fi