modif génération card teams

This commit is contained in:
root
2026-03-26 10:12:35 +01:00
commit 89efd821f4
2 changed files with 347 additions and 0 deletions
Executable
+9
View File
@@ -0,0 +1,9 @@
#!/bin/bash
# Wazuh → Teams wrapper; passes all arguments to the Python script
SCRIPT="/var/ossec/integrations/custom-teams.py"
[ ! -f "$SCRIPT" ] && echo "Error: $SCRIPT not found" && exit 1
[ ! -x "$SCRIPT" ] && echo "Error: $SCRIPT not executable" && exit 1
exec python3 "$SCRIPT" "$@"