Files
Installomator/MDM/Progress 1st swiftDialog condition.sh
2022-09-20 09:50:54 +02:00

14 lines
272 B
Bash

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