The WebUI data snapshots (locations.json, dashboard.json, snapshots_*.json, etc.) are regenerated on every wizard/config change. Each file emitted two extra success lines via createTouch — "Touching <file>" and "Updating <file> with <user> ownership" — which spammed the output around the genuinely useful "... JSON regenerated" line. Add an optional "silent" flag to createTouch (third arg; default keeps the existing loud behaviour for interactive install flows) and pass it from every WebUI data generator/task. Touch + chown still run; only the logging is suppressed for these background regenerations. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com> Signed-off-by: librelad <librelad@digitalangels.vip>
37 lines
1.2 KiB
Bash
Executable File
37 lines
1.2 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# WebUI Task System Files Generator
|
|
# Ensures essential task system files exist for LibrePortal task management
|
|
|
|
webuiEnsureTaskFiles() {
|
|
local task_dir="${containers_dir}libreportal/frontend/data/tasks"
|
|
|
|
# Create tasks directory if it doesn't exist
|
|
if [ ! -d "$task_dir" ]; then
|
|
local result=$(createFolders "quiet" $docker_install_user "$task_dir")
|
|
checkSuccess "Created tasks directory..."
|
|
fi
|
|
|
|
# Create queue.json if it doesn't exist
|
|
if [ ! -f "$task_dir/queue.json" ]; then
|
|
echo " Creating queue.json"
|
|
createTouch "$task_dir/queue.json" $docker_install_user "silent"
|
|
local result=$(echo "[]" | sudo tee "$task_dir/queue.json" > /dev/null)
|
|
checkSuccess "Created queue.json..."
|
|
else
|
|
echo " queue.json exists"
|
|
fi
|
|
|
|
# Create current.json if it doesn't exist
|
|
if [ ! -f "$task_dir/current.json" ]; then
|
|
echo " Creating current.json"
|
|
createTouch "$task_dir/current.json" $docker_install_user "silent"
|
|
local result=$(echo '{}' | sudo tee "$task_dir/current.json" > /dev/null)
|
|
checkSuccess "Created current.json..."
|
|
else
|
|
echo " current.json exists"
|
|
fi
|
|
|
|
isSuccessful "Task system files are setup"
|
|
}
|