mirror of
https://github.com/lancachenet/monolithic
synced 2024-11-10 06:24:18 +00:00
faa6b3969d
This commit rebases the generic code into the monolithic image This allows the base image to be the more regularly accessed / edited image Commits to lancachenet/generic:switcheroo will mimic this commit Also fixes lancachenet/generic#108
9 lines
311 B
Bash
Executable file
9 lines
311 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if [[ "$@" == *" -- "* ]]; then
|
|
SD_LOGLEVEL="-e SUPERVISORD_LOGLEVEL=INFO"
|
|
else
|
|
SD_LOGLEVEL="-- -e SUPERVISORD_LOGLEVEL=INFO"
|
|
fi
|
|
|
|
curl -fsSL https://raw.githubusercontent.com/lancachenet/test-suite/master/dgoss-tests.sh | bash -s -- --imagename="lancachenet/monolithic:goss-test" $@ $SD_LOGLEVEL
|