2023-08-22 10:04:52 +00:00
|
|
|
---
|
|
|
|
- hosts: "{{ hosts_servers }}"
|
2023-08-22 10:30:28 +00:00
|
|
|
gather_facts: no
|
2023-08-22 10:04:52 +00:00
|
|
|
tasks:
|
2023-09-07 10:37:17 +00:00
|
|
|
- name: Package Installation
|
2023-08-22 10:04:52 +00:00
|
|
|
apt:
|
|
|
|
name: "{{ package_name }}"
|
2023-08-22 10:23:54 +00:00
|
|
|
state: present
|