fix Add Ceph volume to fstab : missing UUID= in src
All checks were successful
Ansible Lint |Total|New|Outstanding|Fixed|Trend |:-:|:-:|:-:|:-:|:-: |2657|5|2652|4|:-1: Reference build: <a href="https://jenkins.evolix.org/job/gitea/job/ansible-roles/job/unstable/424//ansiblelint">Evolix » ansible-roles » unstable #424</a>
gitea/ansible-roles/pipeline/head This commit looks good

This commit is contained in:
Tom David--Broglio 2023-12-07 11:02:04 +01:00
parent 4d7de89ad4
commit cbc51c462a
2 changed files with 2 additions and 2 deletions

View file

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

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