From 35d2ca23d76ea774de968ee61777f005bd7d5215 Mon Sep 17 00:00:00 2001 From: surtur Date: Wed, 2 Aug 2023 13:14:09 +0200 Subject: [PATCH] add vela, enable firewalld --- ansible/host_vars/vela.yml | 9 +++++++++ ansible/hosts | 2 ++ ansible/playbooks/vela.yml | 6 ++++++ 3 files changed, 17 insertions(+) create mode 100644 ansible/host_vars/vela.yml create mode 100644 ansible/playbooks/vela.yml diff --git a/ansible/host_vars/vela.yml b/ansible/host_vars/vela.yml new file mode 100644 index 0000000..712a808 --- /dev/null +++ b/ansible/host_vars/vela.yml @@ -0,0 +1,9 @@ +$ANSIBLE_VAULT;1.1;AES256 +63316235393632363431346564386362623036353134616261343364366137313065636237666639 +6663336535373933363866643361353366653763633330610a623834306338393437393964343861 +39386436643834376335663837363162636533393139363937666563383432643935343031323266 +6234656536643338360a386261353261326232666466626337643766396266643234633666306465 +35373965393631646561313562383465616335653961656364353633663234393238303339313939 +39383062663332303034323765613132383336633866326535303239386366343061636631336662 +36376332323830353330643331353161613566316635393163623463386131663733323265343134 +36616533353330336331 diff --git a/ansible/hosts b/ansible/hosts index 118f945..c82bca9 100644 --- a/ansible/hosts +++ b/ansible/hosts @@ -3,5 +3,7 @@ nebula nbgw # 172.105.66.99 +vela + [surtur] surtur.local diff --git a/ansible/playbooks/vela.yml b/ansible/playbooks/vela.yml new file mode 100644 index 0000000..b1f3759 --- /dev/null +++ b/ansible/playbooks/vela.yml @@ -0,0 +1,6 @@ +--- +- hosts: vela + roles: + - role: firewalld + tags: [firewalld] +...