Add curl role

This commit is contained in:
Kenneth Benzie 2022-09-10 16:29:27 +01:00
parent 06b511d823
commit 7404c0ae59
6 changed files with 20 additions and 0 deletions

View File

@ -10,6 +10,7 @@
- role: ag
- role: bat
- role: curl
- role: fzf
- role: git
- role: tree

View File

@ -9,6 +9,7 @@
- role: ag
- role: bat
- role: curl
- role: fzf
- role: tree

View File

@ -0,0 +1,5 @@
---
- name: install homebrew pacakge
homebrew:
name: curl
state: latest

View File

@ -0,0 +1,6 @@
---
- name: install apt package
become: true
apt:
name: curl
state: latest

View File

@ -0,0 +1,5 @@
---
- name: install chocolatey package
win_chocolatey:
name: curl
state: latest

View File

@ -0,0 +1,2 @@
---
- include_tasks: '{{ansible_os_family}}.yaml'