- View License Usages - Celery Beat container added - First schedule in Celery Beat for calculating usage (hourly) - repopack can now split for different components - Various fixes as consequece of changing file_location / file_name ==> bucket_name / object_name - Celery Routing / Queuing updated
11 lines
274 B
Bash
Executable File
11 lines
274 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
# Ensure the logs directory has the correct permissions
|
|
echo "Changing permissions on logs directory"
|
|
#chown -R appuser:appuser /app/logs
|
|
chmod -R 777 /app/logs
|
|
|
|
# Switch to appuser and execute the command passed to the script
|
|
exec su -- appuser -c "$@"
|