feat: add NetBox plugin store
CI / php-store (push) Waiting to run
CI / python-components (push) Waiting to run

This commit is contained in:
2026-08-24 20:51:25 +02:00
commit f36d6be511
135 changed files with 15160 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
#!/bin/sh
set -eu
mkdir -p /var/www/html/data
chown -R www-data:www-data /var/www/html/data
if [ "${STORE_SCHEDULER_ENABLED:-false}" = "true" ]; then
interval="${STORE_SYNC_INTERVAL_SECONDS:-900}"
case "$interval" in
*[!0-9]*) interval=900 ;;
esac
runuser -u www-data -- php /var/www/html/bin/console sync --watch --interval="$interval" &
fi
exec "$@"