2023-02-02 10:45:30 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2023-02-06 15:45:53 +00:00
|
|
|
test -f /etc/no-automatic-cosmos && exit 0
|
|
|
|
|
|
|
|
RUN_COSMOS='/usr/local/bin/run-cosmos'
|
2023-02-02 10:45:30 +00:00
|
|
|
SCRIPTHERDER_CMD=''
|
|
|
|
|
2023-02-06 15:45:53 +00:00
|
|
|
if [ -x /usr/local/bin/scriptherder ]; then
|
2023-02-02 10:45:30 +00:00
|
|
|
SCRIPTHERDER_CMD='/usr/local/bin/scriptherder --mode wrap --syslog --name cosmos --'
|
|
|
|
fi
|
|
|
|
|
2023-02-06 15:45:53 +00:00
|
|
|
exec ${SCRIPTHERDER_CMD} ${RUN_COSMOS} "$@"
|