diff --git a/CHANGELOG.md b/CHANGELOG.md index a461c120..cf13de19 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -56,7 +56,7 @@ The **patch** part changes is incremented if multiple releases happen the same m * certbot: fix hook for dovecot when more than one certificate is used (eg. different certificates for POP3 and IMAP) * evolinux-base: start to install linux-image-cloud-amd64 with Buster * apt: use archive.debian.org with Stretch - +* webapps/nextcloud: fix Add Ceph volume to fstab : missing UUID= in src ### Removed diff --git a/webapps/nextcloud/tasks/user.yml b/webapps/nextcloud/tasks/user.yml index a9682914..020fce90 100644 --- a/webapps/nextcloud/tasks/user.yml +++ b/webapps/nextcloud/tasks/user.yml @@ -43,7 +43,7 @@ - name: Mount up Ceph volume by UUID ansible.posix.mount: path: "{{ nextcloud_data }}" - src: "{{ nextcloud_data_uuid }}" + src: "UUID={{ nextcloud_data_uuid }}" fstype: ext4 opts: defaults,noexec,nosuid,nodev,relatime,lazytime state: mounted