Improved icon checks and failovers

This commit is contained in:
Theile
2022-09-19 21:40:03 +02:00
parent 9c5ab45851
commit 909a61fbe3
12 changed files with 656 additions and 319 deletions
@@ -0,0 +1,13 @@
#!/bin/sh
# Mark: Addigy Condition on condition file
# Install on success
conditionFile="/var/db/.Installation1stProgressDone"
if [ -e "$conditionFile" ]; then
echo "$conditionFile exists. Exiting."
exit 1
else
echo "$conditionFile not found. Continue…"
exit 0
fi