mirror of https://github.com/ceph/ceph-ansible.git
59 lines
1.7 KiB
YAML
59 lines
1.7 KiB
YAML
---
|
|
- name: create red hat storage package directories for redhat systems
|
|
file:
|
|
path: "{{ item }}"
|
|
state: directory
|
|
with_items:
|
|
- "{{ ceph_rhcs_mount_path }}"
|
|
- "{{ ceph_rhcs_repository_path }}"
|
|
|
|
- name: ensure destination iso directory exists for redhat systems
|
|
file:
|
|
path: "{{ ceph_rhcs_iso_path | dirname }}"
|
|
state: directory
|
|
recurse: yes
|
|
when: ceph_rhcs_iso_path | dirname != '/'
|
|
|
|
- name: fetch the red hat storage iso from the ansible server for redhat systems
|
|
copy:
|
|
src: "{{ ceph_rhcs_iso_path }}"
|
|
dest: "{{ ceph_rhcs_iso_path }}"
|
|
|
|
# assumption: ceph_rhcs_mount_path does not specify directory
|
|
|
|
- name: mount red hat storage iso file for redhat systems
|
|
mount:
|
|
name: "{{ ceph_rhcs_mount_path }}"
|
|
src: "{{ ceph_rhcs_iso_path }}"
|
|
fstype: iso9660
|
|
opts: ro,loop,noauto
|
|
passno: 2
|
|
state: mounted
|
|
|
|
- name: copy red hat storage iso content for redhat systems
|
|
shell: cp -r {{ ceph_rhcs_mount_path }}/* {{ ceph_rhcs_repository_path }}
|
|
args:
|
|
creates: "{{ ceph_rhcs_repository_path+'/README' if not rolling_update else 'dummy' }}"
|
|
|
|
- name: unmount red hat storage iso file for redhat systems
|
|
mount:
|
|
name: "{{ ceph_rhcs_mount_path }}"
|
|
src: "{{ ceph_rhcs_iso_path }}"
|
|
fstype: iso9660
|
|
state: unmounted
|
|
|
|
- name: install red hat storage repository key for redhat systems
|
|
rpm_key:
|
|
key: "{{ ceph_rhcs_repository_path }}/RPM-GPG-KEY-redhat-release"
|
|
state: present
|
|
register: result
|
|
until: result is succeeded
|
|
|
|
- name: add red hat storage repository for redhat systems
|
|
template:
|
|
src: "{{ role_path }}/templates/redhat_storage_repo.j2"
|
|
dest: /etc/yum.repos.d/rh_storage.repo
|
|
owner: root
|
|
group: root
|
|
mode: 0644
|