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

cleaner Ansible output

This commit is contained in:
A Holt 2017-10-27 11:41:24 -04:00 committed by GitHub
parent 2904163eee
commit 71cb3ec713

View file

@ -19,7 +19,7 @@
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
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
@ -91,7 +91,7 @@
#- name: Run the install script for pip #- name: Run the install script for pip
# command: python {{ downloads_dir }}/get-pip.py # command: python {{ downloads_dir }}/get-pip.py
- name: Install Common python packages - name: Install common Python packages
package: name={{ item }} package: name={{ item }}
state=present state=present
with_items: with_items:
@ -99,7 +99,7 @@
- python-setuptools - python-setuptools
- python-virtualenv - python-virtualenv
- name: Update common packages (not debian - name: Update common packages (not Debian)
package: name={{ item }} package: name={{ item }}
state=latest state=latest
with_items: with_items:
@ -109,7 +109,7 @@
- iptables - iptables
when: is_redhat when: is_redhat
- name: Update common packages (debian) - name: Update common packages (Debian)
package: name={{ item }} package: name={{ item }}
state=latest state=latest
with_items: with_items: