2016-05-06 02:20:03 +08:00
|
|
|
---
|
2017-09-11 16:54:03 +08:00
|
|
|
- name: set selinux permissions
|
|
|
|
shell: |
|
|
|
|
chcon -Rt svirt_sandbox_file_t {{ item }}
|
|
|
|
with_items:
|
|
|
|
- "{{ ceph_conf_key_directory }}"
|
|
|
|
- /var/lib/ceph
|
|
|
|
changed_when: false
|
2017-09-19 22:19:14 +08:00
|
|
|
when:
|
2017-09-29 08:19:09 +08:00
|
|
|
- ansible_os_family == 'RedHat'
|
2017-09-19 22:19:14 +08:00
|
|
|
- sestatus.stdout != 'Disabled'
|
2017-10-10 18:43:23 +08:00
|
|
|
|
|
|
|
- name: create dbus service file
|
|
|
|
become: true
|
2017-10-30 17:20:01 +08:00
|
|
|
copy:
|
|
|
|
src: "org.ganesha.nfsd.conf"
|
2017-10-10 18:43:23 +08:00
|
|
|
dest: /etc/dbus-1/system.d/org.ganesha.nfsd.conf
|
|
|
|
owner: "root"
|
|
|
|
group: "root"
|
|
|
|
mode: "0644"
|
|
|
|
when:
|
|
|
|
- ceph_nfs_dynamic_exports
|
|
|
|
|
|
|
|
- name: reload dbus configuration
|
|
|
|
command: "killall -SIGHUP dbus-daemon"
|
|
|
|
when:
|
|
|
|
- ceph_nfs_dynamic_exports
|