13 lines
292 B
Bash
Executable File
13 lines
292 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# LibrePortal WebUI Update Lock Removal
|
|
# Removes update lock file after update completion
|
|
|
|
webuiRemoveUpdateLock() {
|
|
local lock_file="$containers_dir/libreportal/frontend/data/updater.lock"
|
|
|
|
if [ -f "$lock_file" ]; then
|
|
runFileOp rm -f "$lock_file"
|
|
fi
|
|
}
|