We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 52fbbcc commit 9cc90cdCopy full SHA for 9cc90cd
1 file changed
scripts/tls
@@ -131,6 +131,8 @@ verify_sudo_access() {
131
}
132
133
update_configuration() {
134
+ echo "Updating configuration file (.env)..."
135
+
136
found_nginx_var=
137
while IFS= read -r line; do
138
case "$line" in
@@ -148,6 +150,8 @@ update_configuration() {
148
150
done < .env > .env.tmp && mv .env.tmp .env
149
151
152
[ "$found_nginx_var" ] || echo "OPS_NGINX_CONFIG_FILE=nginx.gateway.tls.conf" >> .env
153
154
+ echo "Configuration file updated successfully."
155
156
157
retry() {
0 commit comments