fixed frontend look cases where lask_opk file could be removed after the instant action SIGUSR1 signal
This commit is contained in:
parent
5cd95016d9
commit
2ae4604084
|
@ -71,14 +71,16 @@ init_frontend() {
|
||||||
while true; do
|
while true; do
|
||||||
|
|
||||||
# Check if frontend disable file is present
|
# Check if frontend disable file is present
|
||||||
if [ -f "${DISABLE_FRONTEND_FILE}" ]; then
|
if [ -f "${DISABLE_FRONTEND_FILE}" -o -f "${REBOOTING_FILE}" ]; then
|
||||||
echo "${DISABLE_FRONTEND_FILE} file found, not starting frontend"
|
echo "${DISABLE_FRONTEND_FILE} file found, not starting frontend"
|
||||||
sleep 5
|
sleep 5
|
||||||
else
|
else
|
||||||
|
|
||||||
# Umount any remaining OPK, if any
|
# Umount any remaining OPK, if any
|
||||||
umount /opk >/dev/null 2>&1
|
umount /opk >/dev/null 2>&1
|
||||||
rm -f "${LAST_OPK_FILE}"
|
if [ -r "${LAST_OPK_FILE}" -a ! -f "${REBOOTING_FILE}" ]; then
|
||||||
|
rm "${LAST_OPK_FILE}"
|
||||||
|
fi
|
||||||
|
|
||||||
# Launch selected frontend
|
# Launch selected frontend
|
||||||
local frontend="$(get_frontend)"
|
local frontend="$(get_frontend)"
|
||||||
|
|
Loading…
Reference in New Issue