mirror of https://github.com/ceph/ceph-ansible.git
roles: ceph-defaults: Set ceph_uid on SUSE distributions
The ceph_uid is also '167' on SUSE systems so extend the existing task. Signed-off-by: Markos Chandras <mchandras@suse.de>pull/3023/head
parent
36942af698
commit
7172737f13
|
@ -190,12 +190,12 @@
|
||||||
- not containerized_deployment
|
- not containerized_deployment
|
||||||
- ansible_os_family == 'Debian'
|
- ansible_os_family == 'Debian'
|
||||||
|
|
||||||
- name: set_fact ceph_uid for red hat based system - non container
|
- name: set_fact ceph_uid for red hat or suse based system - non container
|
||||||
set_fact:
|
set_fact:
|
||||||
ceph_uid: 167
|
ceph_uid: 167
|
||||||
when:
|
when:
|
||||||
- not containerized_deployment
|
- not containerized_deployment
|
||||||
- ansible_os_family == 'RedHat'
|
- ansible_os_family in ['RedHat', 'Suse']
|
||||||
|
|
||||||
- name: set_fact ceph_uid for debian based system - container
|
- name: set_fact ceph_uid for debian based system - container
|
||||||
set_fact:
|
set_fact:
|
||||||
|
|
Loading…
Reference in New Issue