1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-02-13 11:42:08 +00:00
iiab/roles/2-common/tasks/centos.yml

20 lines
547 B
YAML
Raw Normal View History

2017-05-27 18:09:50 +00:00
- name: Centos Server specific tasks
command: echo Starting centos.yml
- name: Keep yum cache
ini_file: dest=/etc/yum.conf
section=main
option=keepcache
value=1
2017-10-18 03:05:54 +00:00
- name: Install IIAB repo for CentOS
2017-05-27 18:09:50 +00:00
template: src={{ item }} dest=/etc/yum.repos.d/ owner=root group=root mode=0644
with_items:
- iiab-centos.repo
2017-05-27 18:09:50 +00:00
- li.nux.ro.repo
2017-10-18 06:26:45 +00:00
- ansible.repo
2017-05-27 18:09:50 +00:00
2017-11-09 10:51:07 +00:00
- name: Install optional exFAT packages for CentOS
shell: yum --enablerepo=li-nux-ro install exfat-utils fuse-exfat
when: exFAT_enabled == "True"