mirror of
https://code.castopod.org/adaures/castopod
synced 2025-06-21 23:15:10 +00:00
10 lines
256 B
Bash
10 lines
256 B
Bash
#!/bin/sh
|
|
|
|
ENV_FILE_LOCATION=/var/www/castopod/.env
|
|
|
|
. /prepare_environment.sh
|
|
|
|
#Apply configuration after unit is started
|
|
(sleep 2 && curl -X PUT --data-binary @/config.json --unix-socket /var/run/control.unit.sock http://localhost/config/) &
|
|
supervisord
|