commit cd5b847eb870da8769e54ec08d4260a039523eff parent 1f5b8d63d6ed9f6ceb028be8c9775f4f3d8c4192 Author: Jan Pobrislo <ccx@webprojekty.cz> Date: Wed, 27 Jul 2022 01:08:15 +0200 Comment config.aat Diffstat:
M | Makefile | | | 2 | +- |
M | config.aat | | | 5 | +++++ |
2 files changed, 6 insertions(+), 1 deletion(-)
diff --git a/Makefile b/Makefile @@ -39,5 +39,5 @@ build/config: build/config.awk mv "$@.new" "$@" postinstall.fileset: build/config build/postinstall.qawk - awk -v DEBUG=1 -f build/postinstall.qawk build/config >"$@.new" + awk -f build/postinstall.qawk build/config >"$@.new" mv "$@.new" "$@" diff --git a/config.aat b/config.aat @@ -1,5 +1,10 @@ |BEGIN{ +# Login shell for root user in /etc/passwd root_shell=/bin/zsh + +# Amount of ttys to initialize tty_max=12 + +# Number of gettys to spawn (should be less 9 to not overlap with rescue getty) getty_max=8 |}