Check for influxdb3 installation in update_script (#12648)

Fix current check only working for influxdb 1.x and 2.x
This commit is contained in:
Markus Zellner
2026-03-07 22:13:18 +01:00
committed by GitHub
parent 79ed7e4b73
commit 5446706286

View File

@@ -23,7 +23,7 @@ function update_script() {
header_info
check_container_storage
check_container_resources
if [[ ! -f /usr/bin/influxd ]]; then
if [[ ! -f /usr/bin/influxd && ! -f /usr/bin/influxdb3 ]]; then
msg_error "No ${APP} Installation Found!"
exit
fi