Bare `find "$containers_dir"` runs as the manager, but under rootless containers/ is dockerinstall-owned 751 (traversable, not list-readable by the manager) -> "find: /docker/containers/: Permission denied". For the app-log generator that was cosmetic; for dockerComposeUpAllApps / dockerComposeDownAllApps it silently enumerates nothing so no apps come up/down. Route these through runFileOp find (dockerinstall in rootless, manager in rooted — correct in both). The two docker-type switcher finds are deliberately left: mid-switch the at-rest container owner can differ from the target-mode user runFileOp resolves to, so they need mode-aware handling rather than a blind swap. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com> Signed-off-by: librelad <librelad@digitalangels.vip>
35 lines
1.1 KiB
Bash
Executable File
35 lines
1.1 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# WebUI App Logs Generator
|
|
# Creates log files for all installed LibrePortal apps
|
|
|
|
webuiGenerateAppLogs()
|
|
{
|
|
isSuccessful "Generating log files for installed apps..."
|
|
|
|
webuiCreateLogsFolders;
|
|
# Count installed apps
|
|
local installed_count=0
|
|
local total_apps=0
|
|
|
|
# Fast approach: Scan containers directory directly
|
|
if [ -d "$containers_dir" ]; then
|
|
runFileOp find "$containers_dir" -maxdepth 1 -type d -not -path "$containers_dir" | while read -r dir; do
|
|
local result=$(basename "$dir")
|
|
local app_name="$result"
|
|
total_apps=$((total_apps + 1))
|
|
|
|
# Check if app is installed (directory exists)
|
|
if [ -d "$dir" ]; then
|
|
installed_count=$((installed_count + 1))
|
|
|
|
# Create log file for this app
|
|
local result=$(webuiUpdateAppLog "$app_name" install)
|
|
checkSuccess "Created log file for: $app_name"
|
|
fi
|
|
done
|
|
else
|
|
isError "Install containers directory not found: $install_containers_dir"
|
|
fi
|
|
}
|