add `sysctl -p` command fixes https://github.com/tteck/Proxmox/issues/1688
@@ -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
-}
+}