Version 9.4 of my MDM scripts

This commit is contained in:
Theile
2022-09-19 11:38:43 +02:00
parent 0c4d7b0c56
commit 9c5ab45851
31 changed files with 3953 additions and 713 deletions

View File

@@ -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