Started working on start config magic
This commit is contained in:
parent
933a61cc4c
commit
74d6cc34fe
1 changed files with 1 additions and 3 deletions
|
@ -22,7 +22,7 @@ CONFIG_SETTINGS=(
|
|||
APIMYSQLDSN
|
||||
)
|
||||
|
||||
function set_configs() {
|
||||
function set_configs(parameter) {
|
||||
## Set configs on container start if not already set.
|
||||
for i in "${!CONFIG_SETTINGS[@]}"; do
|
||||
echo ${CONFIG_SETTINGS[$i]}"_KEY"
|
||||
|
@ -37,8 +37,6 @@ function set_configs() {
|
|||
if [[ ! -f /etc/chainquery/chainqueryconfig.toml ]]; then
|
||||
echo "[INFO]: Found no chainqueryconfig.toml"
|
||||
echo " Installing default and configuring with provided environment variables if any."
|
||||
## Install fresh copy of config file.
|
||||
cp /etc/chainquery/chainqueryconfig.toml.orig /etc/chainquery/chainqueryconfig.toml
|
||||
set_configs
|
||||
else
|
||||
echo "[INFO]: Found a copy of chainqueryconfig.toml in /etc/chainquery"
|
||||
|
|
Loading…
Reference in a new issue