Cleaning and adding prevention scripts

This commit is contained in:
Theile
2022-09-20 09:50:54 +02:00
parent c0a850848b
commit 938a40943e
13 changed files with 42 additions and 11 deletions

View File

@@ -0,0 +1,13 @@
#!/bin/sh
# Mark: Addigy Condition on condition file
# Install on success
conditionFile="/var/db/.Installomator1stDone"
if [ -e "$conditionFile" ]; then
echo "$conditionFile exists. Exiting."
exit 1
else
echo "$conditionFile not found. Continue…"
exit 0
fi