This commit is contained in:
Calvin Steenbergen 2025-04-03 18:42:15 +02:00
parent 77fbfdf0ff
commit 7ff7b09f95

View file

@ -1,7 +1,8 @@
--- ---
- hosts: my_servers - hosts: "{{ target_hosts }}"
become: true become: true
task: tasks:
- name: Print OS info - name: Install Apache2
ansible.builtin.package: ansible.builtin.package:
name: apache2 name: apache2
state: present