anotherCommit

This commit is contained in:
2024-08-09 05:12:50 +00:00
parent 554bf8a7e6
commit 4a01e43a96
3 changed files with 16 additions and 22 deletions
+15
View File
@@ -0,0 +1,15 @@
---
- hosts: all
become: yes
tasks:
- name: Install curl on Ubuntu servers
package:
name: curl
state: present
when: ansible_facts['os_family'] == 'Debian'
- name: Install curl on Fedora servers
dnf:
name: curl
state: present
when: ansible_facts['distribution'] == 'Fedora'