Compare commits

...

3 Commits

4 changed files with 18 additions and 0 deletions

View File

@ -12,8 +12,10 @@
when: '"WSL" not in ansible_kernel'
- role: ag
- role: bash
- role: bat
- role: curl
- role: editline
- role: fzf
- role: gh
- role: git
@ -25,8 +27,11 @@
- role: tidy
- role: tree
- role: watch
- role: wget
- role: yq
- role: gdb
when: ansible_os_family != "Darwin"
- role: llvm
- role: nodejs

6
roles/gdb/RedHat.yaml Normal file
View File

@ -0,0 +1,6 @@
---
- name: install dnf package
become: true
dnf:
name: gdb
state: latest

View File

@ -1,5 +1,6 @@
---
- name: install apt package
become: true
apt:
name: wget
state: latest

View File

@ -0,0 +1,6 @@
---
- name: install dnf package
become: true
dnf:
name: wget
state: latest