From 957ca9e439b423b10db008f1895d8d4d4b54dace Mon Sep 17 00:00:00 2001 From: CrazyMax <1951866+crazy-max@users.noreply.github.com> Date: Sun, 18 Apr 2021 17:43:29 +0200 Subject: [PATCH] Fix weathermap output perms (#191) Co-authored-by: CrazyMax --- rootfs/etc/cont-init.d/02-fix-perms.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rootfs/etc/cont-init.d/02-fix-perms.sh b/rootfs/etc/cont-init.d/02-fix-perms.sh index e0b290b..71c5b31 100644 --- a/rootfs/etc/cont-init.d/02-fix-perms.sh +++ b/rootfs/etc/cont-init.d/02-fix-perms.sh @@ -7,9 +7,9 @@ mkdir -p /data \ chown librenms. \ /data \ "${LIBRENMS_PATH}" \ - "${LIBRENMS_PATH}/.env" \ - "${LIBRENMS_PATH}/html/plugins/Weathermap/output" + "${LIBRENMS_PATH}/.env" chown -R librenms. \ + "${LIBRENMS_PATH}/html/plugins/Weathermap/output" \ /home/librenms \ /tpls \ /var/lib/nginx \