From 8c551c881ddc3132676a20a6c8cc4e26689c7efd Mon Sep 17 00:00:00 2001 From: Michel Roegl-Brunner <73236783+michelroegl-brunner@users.noreply.github.com> Date: Fri, 9 Jan 2026 13:20:52 +0100 Subject: [PATCH] Clean up comments in tracearr-install.sh Removed comments about RAM allocation for timescaledb-tune. --- install/tracearr-install.sh | 3 --- 1 file changed, 3 deletions(-) diff --git a/install/tracearr-install.sh b/install/tracearr-install.sh index 7a3f72277..57c71d715 100644 --- a/install/tracearr-install.sh +++ b/install/tracearr-install.sh @@ -32,9 +32,6 @@ $STD apt install -y \ timescaledb-2-postgresql-18 \ timescaledb-tools \ timescaledb-toolkit-postgresql-18 -# give timescaledb-tune 50% of total ram in MB -# we need to leave the rest for redis and the webserver. -# We cant use $RAM_SIZE or $var_ram here, which is annoying. total_ram_kb=$(grep MemTotal /proc/meminfo | awk '{print $2}') ram_for_tsdb=$((total_ram_kb / 1024 / 2)) $STD timescaledb-tune -yes -memory "$ram_for_tsdb"MB