From 94901dd8744a6d17d9413b9a2db9a151cade7e8f Mon Sep 17 00:00:00 2001 From: dinger1986 Date: Thu, 24 Aug 2023 14:03:22 +0100 Subject: [PATCH] Update _index.en.md --- content/client/Client Deployment/_index.en.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/content/client/Client Deployment/_index.en.md b/content/client/Client Deployment/_index.en.md index daf79ea..f44d563 100644 --- a/content/client/Client Deployment/_index.en.md +++ b/content/client/Client Deployment/_index.en.md @@ -145,8 +145,9 @@ open -n /Applications/RustDesk.app ```sh #!/bin/bash -# Assign the value "XYZ" to the password variable -rustdesk_password="XYZ" +# Assign a random value to the password variable +rustdesk_password=$(cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 8 | head -n 1) + # Get your config string from your Web portal and Fill Below. rustdesk_config="encryptedconfigstring"