From c8e91daed397e6761d14e2d68ad508f9d62f24a1 Mon Sep 17 00:00:00 2001 From: Kjeld Schouten-Lebbing Date: Sat, 14 Jan 2023 18:39:17 +0100 Subject: [PATCH] fix(nextcloud): set correct path to permissions toolkit (#6374) * no message * bump --- charts/stable/nextcloud/Chart.yaml | 2 +- charts/stable/nextcloud/values.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/stable/nextcloud/Chart.yaml b/charts/stable/nextcloud/Chart.yaml index c059221b7aa..28d7db0c113 100644 --- a/charts/stable/nextcloud/Chart.yaml +++ b/charts/stable/nextcloud/Chart.yaml @@ -37,7 +37,7 @@ sources: - https://github.com/nextcloud/docker - https://github.com/nextcloud/helm type: application -version: 19.0.37 +version: 19.0.38 annotations: truecharts.org/catagories: | - cloud diff --git a/charts/stable/nextcloud/values.yaml b/charts/stable/nextcloud/values.yaml index 2c9fc00fbde..0c0f007d7f9 100644 --- a/charts/stable/nextcloud/values.yaml +++ b/charts/stable/nextcloud/values.yaml @@ -104,7 +104,7 @@ initContainers: /bin/sh <<'EOF' echo "Forcing permissions on userdata folder..." echo "Trying to override ownship using nfs4xdr_winacl..." - /usr/bin/nfs4xdr_winacl -a chown -G 33 -c '/var/www/html/data' -p '/var/www/html/data' || echo "Failed setting ownership..." + /usr/sbin/nfs4xdr_winacl -a chown -G 33 -c '/var/www/html/data' -p '/var/www/html/data' || echo "Failed setting ownership..." chmod 770 /var/www/html/data || echo "Failed to chmod..." EOF