Compare commits

...

3 Commits

Author SHA1 Message Date
aa719e50f5 Merge branch 'master' of ssh://git.drinkingtea.net:10022/gary/ansible-fedora-workstation 2017-01-27 19:55:52 -06:00
34aefcc2b3 Add jq and clang 2017-01-27 19:55:34 -06:00
0fedaa34b4 Add ZFS 2017-01-24 01:22:44 -06:00
2 changed files with 22 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,16 @@
name: google-chrome name: google-chrome
state: latest state: latest
- name: Install jq
dnf:
name: jq
state: latest
- name: Install kernel-devel
dnf:
name: kernel-devel
state: latest
- name: Install libselinux-python - name: Install libselinux-python
dnf: dnf:
name: libselinux-python name: libselinux-python