From b155926389aaf434b46947c1ce2e9912d3fd1c20 Mon Sep 17 00:00:00 2001 From: harshadyeola Date: Fri, 10 Oct 2014 15:30:03 +0530 Subject: [PATCH] display http auth once while site create --- bin/easyengine | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bin/easyengine b/bin/easyengine index 02806925..0632ec6f 100644 --- a/bin/easyengine +++ b/bin/easyengine @@ -214,8 +214,10 @@ elif [ "$EE_FIRST" = "stack" ] || [ "$EE_FIRST" = "system" ]; then # Display HTTP Authentication details if [ "$EE_THIRD" = "nginx" ] || [ "$EE_THIRD" = "" ] || [ "$EE_THIRD" = "web" ] || [ "$EE_THIRD" = "all" ]; then + if [ "$EE_DISPLAY" != "true" ]; then ee_lib_echo_info "HTTP Authentication username: $EE_HTTP_AUTH_USER" ee_lib_echo_info "HTTP Authentication password: $EE_HTTP_AUTH_PASS" + fi fi # Display success message ee_lib_echo "$EE_THIRD successfully installed"