From 454ec8ea1b6901f456c7247558f65ab93b1f3281 Mon Sep 17 00:00:00 2001 From: Sam Heinz <54530346+asylumexp@users.noreply.github.com> Date: Fri, 14 Jun 2024 12:38:13 +1000 Subject: [PATCH] dont add 'password: ' to start (cherry picked from commit cd1ebc02273ae858b194a4af3284a40d04ef2813) --- install/jdownloader2-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/jdownloader2-install.sh b/install/jdownloader2-install.sh index c8c9423a..1c9c1696 100644 --- a/install/jdownloader2-install.sh +++ b/install/jdownloader2-install.sh @@ -37,7 +37,7 @@ msg_ok "Installed JDownloader2" msg_info "Setting up VNC Server" mkdir /root/.vnc secret=$(openssl rand -base64 8) -echo "password: $secret" >>/root/.vnc/passwd +echo "$secret" >>/root/.vnc/passwd echo $secret | vncpasswd -f msg_ok "Setup VNC Server"