From 59b4e28413e638ae57782d6f5c502f7bda8ab726 Mon Sep 17 00:00:00 2001 From: tteckster Date: Mon, 14 Aug 2023 15:12:51 -0400 Subject: [PATCH] Update alpine-install.func add `sysctl -p` command fixes https://github.com/tteck/Proxmox/issues/1688 --- misc/alpine-install.func | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/misc/alpine-install.func b/misc/alpine-install.func index 96d1f849..d1eb439d 100644 --- a/misc/alpine-install.func +++ b/misc/alpine-install.func @@ -117,9 +117,10 @@ motd_ssh() { } customize() { + $STD sysctl -p if [[ "$PASSWORD" == "" ]]; then msg_info "Customizing Container" bash -c "passwd -d root" >/dev/null 2>&1 msg_ok "Customized Container" fi -} \ No newline at end of file +}