fix/match_collector: make sure we have permission to write in /cdragon

This commit is contained in:
2026-05-01 00:39:02 +02:00
parent 5c83e45d2a
commit d231ae7c38
2 changed files with 15 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
#!/bin/sh
# Fix permissions on the cdragon cache directory if it exists
if [ -d "/cdragon" ]; then
# Ensure the node user owns the cdragon directory
chown -R node:node /cdragon 2>/dev/null || true
fi
# Execute the main command as the node user
exec su-exec node "$@"