QueManager BETA 1.0.9

- Added Cell Locking Scheduler UI improvements
- Fixed change_sms_code.sh to properly exit
- Added an experimental feature: Keep-alive
- Added disable state for speedtest when keep-alive is active

Co-Authored-By: Russel Yasol <73575327+dr-dolomite@users.noreply.github.com>
This commit is contained in:
Cameron Thompson
2024-12-23 16:33:51 -05:00
parent 1f315e8ca6
commit dcd8cd6ab7
60 changed files with 357 additions and 135 deletions

View File

@@ -1,5 +1,5 @@
Package: sdxpinn-quecmanager-beta
Version: 1.0.8
Version: 1.0.9
Architecture: aarch64_cortex-a53
Maintainer: Russel Yasol dr-dolomite@github.com Cameron Thompson iamromulan@github.com
Description: A custom web UI desgined to run alongside luci for Quectel RM55x modems

View File

@@ -5,7 +5,7 @@ mv /www/index.html /www/index.html.old
cp /www/login.html /www/index.html
# Define the commands to add to rc.local
COMMANDS="/www/cgi-bin/settings/change_sms_code.sh &
COMMANDS="/www/cgi-bin/settings/change_sms_code.sh
/www/cgi-bin/home/log_signal_metrics.sh &"
# Create a new rc.local with commands correctly placed
@@ -57,7 +57,7 @@ fi
# Ensure change_sms_code.sh is running
if ! pgrep -f "/www/cgi-bin/settings/change_sms_code.sh" > /dev/null; then
echo "Starting change_sms_code.sh..."
/www/cgi-bin/settings/change_sms_code.sh &
/www/cgi-bin/settings/change_sms_code.sh
else
echo "change_sms_code.sh is already running. Skipping start."
fi

View File

@@ -18,7 +18,6 @@ fi
# Define a list of scripts to check and stop
SCRIPTS="
/www/cgi-bin/home/log_signal_metrics.sh
/www/cgi-bin/settings/change_sms_code.sh
"
# Loop through each script, check if it's running, and kill it if necessary