From 915226fa3c39fbd1b056f0ee75a8350e89775b42 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Slavi=C5=A1a=20Are=C5=BEina?= <58952836+tremor021@users.noreply.github.com> Date: Sun, 2 Aug 2026 19:33:09 +0200 Subject: [PATCH] LibreNMS: Ensure ipmitool dependency is installed (#16219) --- ct/librenms.sh | 3 +++ install/librenms-install.sh | 3 ++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ct/librenms.sh b/ct/librenms.sh index c9ed36493..af9ed84dc 100644 --- a/ct/librenms.sh +++ b/ct/librenms.sh @@ -28,6 +28,9 @@ function update_script() { msg_error "No ${APP} Installation Found!" exit fi + + ensure_dependencies ipmitool + if check_for_gh_release "librenms" "librenms/librenms"; then msg_info "Stopping Services" systemctl stop php8.4-fpm librenms-scheduler.timer diff --git a/install/librenms-install.sh b/install/librenms-install.sh index 171010a93..5d69ad650 100644 --- a/install/librenms-install.sh +++ b/install/librenms-install.sh @@ -25,7 +25,8 @@ $STD apt install -y \ rrdtool \ snmp \ snmpd \ - whois + whois \ + ipmitool msg_ok "Installed Dependencies" msg_info "Installing Python Dependencies"