From 6e8a7fcaf65e3af94dde983059ad78fb7beb69ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20B=C3=A9dard-Couture?= Date: Thu, 18 Apr 2024 12:33:01 -0400 Subject: [PATCH] Silence LDAP dependencies installation; Rework the default credentials message so it is easier to see in the console --- install/calibre-web-install.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/install/calibre-web-install.sh b/install/calibre-web-install.sh index 842b7633..a53cfe65 100644 --- a/install/calibre-web-install.sh +++ b/install/calibre-web-install.sh @@ -55,7 +55,7 @@ if [ ! -z "$CHOICES" ]; then ;; "4") options+=( ldap ) - apt-get install -qqy libldap2-dev libsasl2-dev + $STD apt-get install -qqy libldap2-dev libsasl2-dev ;; "5") options+=( oauth ) @@ -112,5 +112,6 @@ $STD apt-get autoremove $STD apt-get autoclean msg_ok "Cleaned" -msg_ok "Default login user: admin" -msg_ok "Default login password: admin123" \ No newline at end of file +echo -e "Default login for ${APP}: + user: ${BL}admin${CL} \n + password: ${BL}admin123${CL} \n" \ No newline at end of file