Add role for htop on macOS/Debian

This commit is contained in:
Kenneth Benzie 2022-09-20 18:54:39 +01:00
parent 8c9af58146
commit 3272331f08
4 changed files with 13 additions and 0 deletions

View File

@ -13,6 +13,7 @@
- role: curl - role: curl
- role: fzf - role: fzf
- role: git - role: git
- role: htop
- role: tidy - role: tidy
- role: tree - role: tree

View File

@ -0,0 +1,5 @@
---
- name: install homebrew package
homebrew:
name: htop
state: latest

View File

@ -0,0 +1,5 @@
---
- name: install apt package
apt:
name: htop
state: latest

View File

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