From bd2d4c9b8e06b8b0ca7b902b691cf606f5de6b9d Mon Sep 17 00:00:00 2001 From: Haruue Icymoon Date: Mon, 4 Sep 2023 23:19:01 +0800 Subject: [PATCH] chore: rand pass for config in install_server.sh --- scripts/install_server.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/scripts/install_server.sh b/scripts/install_server.sh index 4a52def..e4af160 100644 --- a/scripts/install_server.sh +++ b/scripts/install_server.sh @@ -161,6 +161,10 @@ has_prefix() { [[ "x$_s" != "x${_s#"$_prefix"}" ]] } +generate_random_password() { + dd if=/dev/random bs=18 count=1 status=none | base64 +} + systemctl() { if [[ "x$FORCE_NO_SYSTEMD" == "x2" ]] || ! has_command systemctl; then warning "Ignored systemd command: systemctl $@" @@ -681,7 +685,7 @@ acme: auth: type: password - password: Se7RAuFZ8Lzg + password: $(generate_random_password) masquerade: type: proxy