fix Add Ceph volume to fstab : missing UUID= in src

This commit is contained in:
Tom David--Broglio 2023-12-07 11:02:04 +01:00 committed by William Hirigoyen
parent 63973fc2b7
commit f023d7093e
2 changed files with 2 additions and 2 deletions

View file

@ -57,7 +57,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

View file

@ -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