Browse Source

correção da chamada update_set em validate_env

main
Lucas F 3 years ago
parent
commit
fa34d894b5
  1. 2
      centos.conf
  2. 4
      run.sh

2
centos.conf

@ -27,7 +27,7 @@ PUB_IP=""
# Nome da pasta que está no mesmo nível do arquivo wsgi.py # Nome da pasta que está no mesmo nível do arquivo wsgi.py
# Folder name that is at the same level as wsgi.py file # Folder name that is at the same level as wsgi.py file
WSGI_FOLDER_NAME="3m" WSGI_FOLDER_NAME="appdirname"
# Nome desejado para o serviço no Systemctl # Nome desejado para o serviço no Systemctl
# Systemctl desirable name # Systemctl desirable name

4
run.sh

@ -231,9 +231,9 @@ validate_env() {
if [[ -n resp_env ]]; then if [[ -n resp_env ]]; then
if [[ ${resp_env,,} == "sim" ]] || [[ ${resp_env,,} == "s" ]] || [[ ${resp_env,,} == "yes" ]] || [[ ${resp_env,,} == "y" ]]; then if [[ ${resp_env,,} == "sim" ]] || [[ ${resp_env,,} == "s" ]] || [[ ${resp_env,,} == "yes" ]] || [[ ${resp_env,,} == "y" ]]; then
make_env_file make_env_file
else
update_step_error "$x"
fi fi
else
update_step_error "$x"
fi fi
fi fi
} }

Loading…
Cancel
Save