From b5eabf9b0e4f3ff1432728accf3f27b15101c558 Mon Sep 17 00:00:00 2001 From: MickLesk Date: Mon, 18 May 2026 09:29:04 +0200 Subject: [PATCH] feat: create directory for certificates and update admin credentials output --- install/aliasvault-install.sh | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/install/aliasvault-install.sh b/install/aliasvault-install.sh index 1c496ae6..b4f93e84 100644 --- a/install/aliasvault-install.sh +++ b/install/aliasvault-install.sh @@ -221,6 +221,8 @@ systemctl enable -q --now nginx $STD nginx -s reload msg_ok "Configured Nginx" +mkdir -p /opt/certificates/app + msg_info "Creating Services" cat </etc/systemd/system/aliasvault-api.service [Unit] @@ -306,14 +308,12 @@ EOF systemctl enable -q --now aliasvault-api aliasvault-admin aliasvault-smtp aliasvault-taskrunner msg_ok "Created Services" -echo "" -echo "================================================================" -echo " AliasVault Initial Admin Credentials" -echo " Username: admin" -echo " Password: ${ADMIN_PASS}" -echo " Save these credentials — they will not be shown again!" -echo "================================================================" -echo "" +{ + echo "" + echo "AliasVault Admin Credentials:" + echo " Username: admin" + echo " Password: ${ADMIN_PASS}" +} >>~/aliasvault.creds motd_ssh customize