From 07a5f145f62f8c1c6a14ff767692c450781ad5a2 Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Tue, 4 Nov 2025 12:47:12 +0100 Subject: [PATCH] Update librenms-install.sh --- install/librenms-install.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/install/librenms-install.sh b/install/librenms-install.sh index 970ba9bed..8b60b65de 100644 --- a/install/librenms-install.sh +++ b/install/librenms-install.sh @@ -62,8 +62,7 @@ fetch_and_deploy_gh_release "LibreNMS" "librenms/librenms" msg_info "Configuring LibreNMS" $STD useradd librenms -d /opt/librenms -M -r -s "$(which bash)" -setfacl -d -m g::rwx /opt/librenms/rrd /opt/librenms/logs /opt/librenms/bootstrap/cache/ /opt/librenms/storage/ -setfacl -R -m g::rwx /opt/librenms/rrd /opt/librenms/logs /opt/librenms/bootstrap/cache/ /opt/librenms/storage/ +mkdir -p /opt/librenms/{rrd,logs,bootstrap/cache,storage,html} cd /opt/librenms $STD uv venv .venv $STD source .venv/bin/activate @@ -75,7 +74,6 @@ DB_PASSWORD=${DB_PASS} EOF chown -R librenms:librenms /opt/librenms chmod 771 /opt/librenms -setfacl -d -m g::rwx /opt/librenms/bootstrap/cache /opt/librenms/storage /opt/librenms/logs /opt/librenms/rrd chmod -R ug=rwX /opt/librenms/bootstrap/cache /opt/librenms/storage /opt/librenms/logs /opt/librenms/rrd msg_ok "Configured LibreNMS"