Add jq and clang

This commit is contained in:
Gary Talent 2017-01-27 19:55:34 -06:00
parent 0fedaa34b4
commit 34aefcc2b3
2 changed files with 17 additions and 0 deletions

2
Makefile Normal file
View File

@ -0,0 +1,2 @@
apply:
ansible-playbook setup.yml -u root -i "127.0.0.1,"

View File

@ -36,6 +36,16 @@
name: ansible name: ansible
state: latest state: latest
- name: Install cargo
dnf:
name: cargo
state: latest
- name: Install clang
dnf:
name: clang
state: latest
- name: Install CTags - name: Install CTags
dnf: dnf:
name: ctags name: ctags
@ -76,6 +86,11 @@
name: google-chrome name: google-chrome
state: latest state: latest
- name: Install jq
dnf:
name: jq
state: latest
- name: Install kernel-devel - name: Install kernel-devel
dnf: dnf:
name: kernel-devel name: kernel-devel