diff options
Diffstat (limited to 'playbooks/roles/ceph/tasks/main.yml')
-rw-r--r-- | playbooks/roles/ceph/tasks/main.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/playbooks/roles/ceph/tasks/main.yml b/playbooks/roles/ceph/tasks/main.yml index 69a769a..7b0a56d 100644 --- a/playbooks/roles/ceph/tasks/main.yml +++ b/playbooks/roles/ceph/tasks/main.yml @@ -13,6 +13,7 @@ [global] fsid = {{ ceph_fsid }} mon_host = {{ ceph_mon_host }} + client_permissions = false dest: /etc/ceph/ceph.conf mode: '0644' @@ -36,7 +37,7 @@ ansible.builtin.lineinfile: path: /etc/fstab regexp: '{{ ceph_base }}\w+fuse.ceph' - line: "none {{ ceph_base }} fuse.ceph ceph.id={{ ceph_client_name }},_netdev,defaults,umask=000 0 0" + line: "none {{ ceph_base }} fuse.ceph ceph.id={{ ceph_client_name }},_netdev,defaults 0 0" create: true mode: "0644" |