1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-03-09 15:40:17 +00:00

exfat-fuse & exfat-utils on debuntu; output cleanup

This commit is contained in:
A Holt 2017-11-13 08:27:55 -05:00 committed by GitHub
parent ef8a2eafd8
commit 075de5f7c7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -10,23 +10,23 @@
shell: dnf install -y yum shell: dnf install -y yum
when: ansible_distribution == "Fedora" and ansible_distribution_version|int >= 22 and ansible_machine != "armv7l" when: ansible_distribution == "Fedora" and ansible_distribution_version|int >= 22 and ansible_machine != "armv7l"
- name: Get the createrepo program - name: Get the createrepo program (redhat)
package: name=createrepo package: name=createrepo
state=present state=present
when: is_redhat when: is_redhat
- name: Create local repo - name: Create local repo (redhat)
shell: createrepo {{ yum_packages_dir }} shell: createrepo {{ yum_packages_dir }}
when: is_redhat when: is_redhat
- name: Install local repo file - name: Install local repo file (redhat)
template: dest=/etc/yum.repos.d/iiab-local.repo template: dest=/etc/yum.repos.d/iiab-local.repo
src=local.repo src=local.repo
owner=root owner=root
mode=0644 mode=0644
when: is_redhat when: is_redhat
- name: Install yum packages - name: Install yum packages (redhat)
package: name={{ item }} package: name={{ item }}
state=present state=present
with_items: with_items:
@ -47,11 +47,11 @@
dest: "{{ downloads_dir }}" dest: "{{ downloads_dir }}"
when: is_debian_9 when: is_debian_9
- name: Install usbmount for debian-9 - name: Install usbmount (debian-9)
command: apt install -y {{ downloads_dir }}/usbmount_0.0.14.1_all.deb command: apt install -y {{ downloads_dir }}/usbmount_0.0.14.1_all.deb
when: is_debian_9 when: is_debian_9
- name: Install packages for Debian - name: Install packages (debuntu)
package: name={{ item }} package: name={{ item }}
state=present state=present
with_items: with_items:
@ -107,7 +107,7 @@
- python-setuptools - python-setuptools
- python-virtualenv - python-virtualenv
- name: Update common packages (not Debian) - name: Update common packages (OS's other than debuntu)
package: name={{ item }} package: name={{ item }}
state=latest state=latest
with_items: with_items:
@ -117,13 +117,15 @@
- iptables - iptables
when: is_redhat when: is_redhat
- name: Update common packages (Debian) - name: Update common packages (debuntu)
package: name={{ item }} package: name={{ item }}
state=latest state=latest
with_items: with_items:
- libc6 - libc6
- bash - bash
- iptables - iptables
- exfat-fuse
- exfat-utils
when: is_debuntu when: is_debuntu
# instructions state to start with a fully updated system before starting, stop using # instructions state to start with a fully updated system before starting, stop using