Files
Installomator/MDM/-Progress 1st swiftDialog condition.sh
2022-09-19 21:40:03 +02:00

14 lines
284 B
Bash

#!/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