소스 검색

Update alpine-install.func

add `sysctl -p` command
fixes https://github.com/tteck/Proxmox/issues/1688
tteckster 1 년 전
부모
커밋
59b4e28413
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      misc/alpine-install.func

+ 2 - 1
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
-}
+}