vn-ansible/linux/os/install_package.yml

8 lines
157 B
YAML
Raw Normal View History

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:
- name: Package installation
apt:
name: "{{ package_name }}"
2023-08-22 10:23:54 +00:00
state: present