1
0
Fork 0
mirror of https://github.com/librenms/docker.git synced 2026-01-23 02:14:48 +00:00

Update 02-fix-perms.sh for rrd folder

Since Librenms 23.10.0 each poller needs to create a folder in /rrd. See https://github.com/librenms/librenms/pull/15457.
Without this permission the eventlog creates message "Failed to create rrd directory: /opt/librenms/rrd/x.x.x.x/" with every device poll.
This commit is contained in:
Andy Norwood 2024-04-16 10:10:56 +01:00 committed by GitHub
parent fd34218028
commit 93eb528cbb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -10,7 +10,8 @@ chown librenms:librenms \
/data \
"${LIBRENMS_PATH}" \
"${LIBRENMS_PATH}/.env" \
"${LIBRENMS_PATH}/cache"
"${LIBRENMS_PATH}/cache" \
"${LIBRENMS_PATH}/rrd"
chown -R librenms:librenms \
/home/librenms \
/tpls \