[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/11: system: examples: Add postfix.tmpl.
From: |
guix-commits |
Subject: |
04/11: system: examples: Add postfix.tmpl. |
Date: |
Thu, 7 Sep 2023 11:24:24 -0400 (EDT) |
rekado pushed a commit to branch wip-postfix
in repository guix.
commit 48885916e36438507b227dd6f8b0d7a313b15da9
Author: Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
AuthorDate: Thu Aug 6 07:41:07 2020 +0200
system: examples: Add postfix.tmpl.
* gnu/system/examples/postfix.tmpl: New file.
---
gnu/system/examples/postfix.tmpl | 52 ++++++++++++++++++++++++++++++++++++++++
1 file changed, 52 insertions(+)
diff --git a/gnu/system/examples/postfix.tmpl b/gnu/system/examples/postfix.tmpl
new file mode 100644
index 0000000000..e0b335954e
--- /dev/null
+++ b/gnu/system/examples/postfix.tmpl
@@ -0,0 +1,52 @@
+;; This is an operating system configuration template for testing postfix.
+
+(use-modules (gnu))
+(use-service-modules mail networking ssh)
+(use-package-modules ssh)
+
+(operating-system
+ (host-name "komputilo")
+ (timezone "Europe/Berlin")
+ (locale "en_US.utf8")
+
+ ;; Boot in "legacy" BIOS mode, assuming /dev/sdX is the
+ ;; target hard disk, and "my-root" is the label of the target
+ ;; root file system.
+ (bootloader (bootloader-configuration
+ (bootloader grub-bootloader)
+ (target "/dev/sdX")))
+
+ ;; Allow run-vm.sh --nographic
+ (kernel-arguments '("console=tty0" "console=ttyS0"))
+ (file-systems (cons (file-system
+ (device (file-system-label "guix"))
+ (mount-point "/")
+ (type "ext4"))
+ %base-file-systems))
+
+ ;; This is where user accounts are specified. The "root"
+ ;; account is implicit, and is initially created with the
+ ;; empty password.
+ (users (cons (user-account
+ (name "alice")
+ (comment "Bob's sister")
+ (group "users")
+
+ ;; Adding the account to the "wheel" group
+ ;; makes it a sudoer.
+ (supplementary-groups '("wheel")))
+ %base-user-accounts))
+
+ ;; Add services to the baseline: a DHCP client, POSTFIX and
+ ;; an SSH server.
+ (services (append (list (service dhcp-client-service-type)
+ (service openssh-service-type
+ (openssh-configuration
+ (openssh openssh-sans-x)
+ (use-pam? #f)
+ (port-number 2222)
+ (permit-root-login #t)
+ (allow-empty-passwords? #t)
+ (password-authentication? #t)))
+ (service postfix-service-type))
+ %base-services)))
- branch wip-postfix created (now 8af658c823), guix-commits, 2023/09/07
- 01/11: gnu: Add postfix., guix-commits, 2023/09/07
- 08/11: gnu: postfix-minimal: Update to 3.7.2., guix-commits, 2023/09/07
- 09/11: gnu: postfix-minimal: Simplify with G-expression., guix-commits, 2023/09/07
- 03/11: gnu: postfix-minimal: Update to 3.5.0., guix-commits, 2023/09/07
- 11/11: gnu: postfix-minimal: Update to 3.7.7., guix-commits, 2023/09/07
- 04/11: system: examples: Add postfix.tmpl.,
guix-commits <=
- 05/11: gnu: postfix-minimal: Fix startup warnings., guix-commits, 2023/09/07
- 10/11: gnu: postfix-minimal: Update to 3.7.5., guix-commits, 2023/09/07
- 02/11: services: Add postfix service., guix-commits, 2023/09/07
- 07/11: system: postfix.tmpl: Add mail-aliases-service., guix-commits, 2023/09/07
- 06/11: service: postfix: Use mail-aliases-service-type., guix-commits, 2023/09/07