diff options
| author | Suren A. Chilingaryan <csa@suren.me> | 2018-02-28 23:46:55 +0100 | 
|---|---|---|
| committer | Suren A. Chilingaryan <csa@suren.me> | 2018-02-28 23:46:55 +0100 | 
| commit | 1f3e2a9f59e83dc3f0fcbecf096a7e7b40d36ed7 (patch) | |
| tree | c75d04456ab3593442734bec3d84c90e4b973f27 /roles/common/tasks | |
| parent | fe4622305efa55e6bec8221efe8fc4bdd5462136 (diff) | |
First running prototype
Diffstat (limited to 'roles/common/tasks')
| -rw-r--r-- | roles/common/tasks/main.yml | 9 | 
1 files changed, 9 insertions, 0 deletions
diff --git a/roles/common/tasks/main.yml b/roles/common/tasks/main.yml index 7f6922b..9bd820a 100644 --- a/roles/common/tasks/main.yml +++ b/roles/common/tasks/main.yml @@ -4,6 +4,10 @@      - epel-release      - centos-release-openshift-origin +- name: Add our repository with updates and overrides +  yum_repository: name="{{ item.name }}" description= "{{ item.description | default('Ands repository') }}" baseurl="{{ item.url }}" enabled="yes" gpgcheck="no" cost="{{ item.cost | default(1) }}" +  with_items: "{{ ands_repositories | default([]) }}" +  - name: Ensure GlusterFS repositories are present    yum: name="centos-release-gluster{{ glusterfs_version }}" state=present @@ -25,6 +29,11 @@      - python-rhsm-certificates      - glusterfs-fuse +#- name: Add NodeJS required by a few used Ansible extensions +#  package: name={{item}} state=present +#  with_items: +#    - nodejs +  - name: Ensure all extra packages are installed    package: name={{item}} state=present    with_items: "{{ extra_packages | default([]) }}"  | 
