Add pandoc and sudo, and add password prompt init call to Makefile

This commit is contained in:
Gary Talent 2017-02-26 16:29:37 -06:00
parent 3c5d546851
commit f7fc7f1c52
4 changed files with 36 additions and 11 deletions

View File

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

View File

@ -111,6 +111,16 @@
name: npm
state: latest
- name: Install pandoc
dnf:
name: pandoc
state: latest
- name: Install python-netaddr
dnf:
name: python-netaddr
state: latest
- name: Install Qt 5 Devel
dnf:
name: qt5-devel
@ -136,6 +146,11 @@
name: steam
state: latest
- name: Install sudo
dnf:
name: sudo
state: latest
- name: Install tig
dnf:
name: tig
@ -151,7 +166,12 @@
name: tmux
state: latest
- name: Install Vim
- name: Install vim-enhanced
dnf:
name: vim-enhanced
state: latest
- name: Install vim-X11
dnf:
name: vim-X11
state: latest
@ -187,6 +207,17 @@
append: true
- name: libvirt Group
group:
name: libvirt
state: present
- name: Add gary to libvirt
user:
name: gary
groups: libvirt
append: true
# disable SELinux
- name: Disable SELinux
@ -198,14 +229,14 @@
- name: Clear /etc/vimrc
copy:
src: vimrc
src: etc/vimrc
dest: /etc/vimrc
mode: 0644
force: yes
- name: Install /etc/sudoers
copy:
src: sudoers
src: etc/sudoers
dest: /etc/sudoers
mode: 0644
force: yes

View File

@ -1,8 +0,0 @@
##
## User privilege specification
##
root ALL=(ALL) ALL
%wheel ALL=(ALL) ALL
# Long timeout
Defaults env_reset,timestamp_timeout=9999999999

0
vimrc
View File