1
0

Compare commits

..

No commits in common. "0a49861be6019562e7c306d1ac0fea5858e9595d" and "9cdb8b12b788728dc0b749f00da1359009c75fc3" have entirely different histories.

5 changed files with 2 additions and 17 deletions

1
.gitignore vendored
View File

@ -1,2 +1 @@
ansible/vault_password ansible/vault_password
ansible/inventory/group_vars/vault.yml

View File

@ -4,7 +4,6 @@
ansible_user: ladmin ansible_user: ladmin
ansible_become_user: root ansible_become_user: root
ansible_become_pass: "{{ lab_become_password }}"
ansible_os_family: Arch ansible_os_family: Arch
# sshd # sshd

View File

@ -7,4 +7,3 @@
roles: roles:
- python - python
- sshd - sshd
- firewall

View File

@ -1,2 +0,0 @@
---
firewall_package: ufw

View File

@ -1,10 +0,0 @@
---
- name: install ufw arch
become: true
community.general.pacman:
name: "{{ firewall_package }}"
state: latest
update_cache: true
reason: explicit
when:
- ansible_os_family == 'Arch'