Merge pull request #319 from ceph/ignore-errors

Ignore errors
pull/320/head
Leseb 2015-07-06 18:33:38 +02:00
commit 5a6a87677e
1 changed files with 3 additions and 0 deletions

View File

@ -7,6 +7,7 @@
- name: check if the red hat storage monitor repo is already present
shell: yum --noplugins --cacheonly repolist | grep -sq rhel-7-server-rhceph-1.3-mon-rpms
changed_when: false
ignore_errors: true
register: rh_storage_mon_repo
when: mon_group_name in group_names
@ -20,6 +21,7 @@
- name: check if the red hat storage osd repo is already present
shell: yum --noplugins --cacheonly repolist | grep -sq rhel-7-server-rhceph-1.3-osd-rpms
changed_when: false
ignore_errors: true
register: rh_storage_osd_repo
when: osd_group_name in group_names
@ -33,6 +35,7 @@
- name: check if the red hat storage rados gateway repo is already present
shell: yum --noplugins --cacheonly repolist | grep -sq rhel-7-server-rhceph-1.3-tools-rpms
changed_when: false
ignore_errors: true
register: rh_storage_rgw_repo
when: rgw_group_name in group_names