From cbc51c462a011c6e5727c64c3fb5749f0bb7d4c2 Mon Sep 17 00:00:00 2001 From: Tom David--Broglio Date: Thu, 7 Dec 2023 11:02:04 +0100 Subject: [PATCH] fix Add Ceph volume to fstab : missing UUID= in src --- CHANGELOG.md | 2 +- webapps/nextcloud/tasks/user.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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