owner: "root"
group: "root"
mode: "0644"
- when:
- is_atomic or
- ansible_os_family == 'CoreOS'
+ when: ansible_os_family == 'RedHat' or ansible_os_family == 'CoreOS'
- name: link systemd unit file for mds instance
file:
src: /var/lib/ceph/ceph-mds@.service
dest: /etc/systemd/system/multi-user.target.wants/ceph-mds@{{ ansible_hostname }}.service
state: link
- when:
- is_atomic or
- ansible_os_family == 'CoreOS'
+ when: ansible_os_family == 'RedHat' or ansible_os_family == 'CoreOS'
- name: enable systemd unit file for mds instance
command: systemctl enable /etc/systemd/system/multi-user.target.wants/ceph-mds@{{ ansible_hostname }}.service
failed_when: false
changed_when: false
- when:
- is_atomic or
- ansible_os_family == 'CoreOS'
+ when: ansible_os_family == 'RedHat' or ansible_os_family == 'CoreOS'
- name: reload systemd unit files
command: systemctl daemon-reload
changed_when: false
failed_when: false
- when:
- is_atomic or
- ansible_os_family == 'CoreOS'
+ when: ansible_os_family == 'RedHat' or ansible_os_family == 'CoreOS'
- name: systemd start mds container
service:
state: started
enabled: yes
changed_when: false
- when:
- is_atomic or
- ansible_os_family == 'CoreOS'
+ when: ansible_os_family == 'RedHat' or ansible_os_family == 'CoreOS'
- name: run the ceph metadata docker image
docker:
state: running
env: "CEPH_DAEMON=MDS,CEPHFS_CREATE=1,{{ ceph_mds_docker_extra_env }}"
volumes: "/var/lib/ceph:/var/lib/ceph,/etc/ceph:/etc/ceph"
- when:
- not is_atomic and
- ansible_os_family != 'CoreOS'
+ when: ansible_os_family != 'RedHat' and ansible_os_family != 'CoreOS'