Merge remote-tracking branch 'origin/3/dev' into soupmod2

This commit is contained in:
Josh Patterson
2026-06-16 12:54:18 -04:00
18 changed files with 888 additions and 122 deletions
@@ -41,9 +41,12 @@ if [ ! -f /opt/so/state/eaintegrations.txt ]; then
done
# Only create the state file if all policies were created/updated successfully
if [[ "$RETURN_CODE" != "1" ]]; then
if [[ $RETURN_CODE -eq 0 ]]; then
touch /opt/so/state/eaintegrations.txt
else
exit 1
fi
else
exit $RETURN_CODE
echo "Fleet integration policies already loaded."
exit 0
fi