unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: "Jan (janneke) Nieuwenhuizen" <janneke@gnu.org>
To: "Gábor Boskovits" <boskovits@gmail.com>, 35619@debbugs.gnu.org
Subject: [bug#35619] [PATCH 2/5] system: examples: Add postfix.tmpl.
Date: Mon, 10 Aug 2020 08:51:09 +0200	[thread overview]
Message-ID: <20200810065112.6879-2-janneke@gnu.org> (raw)
In-Reply-To: <20200810065112.6879-1-janneke@gnu.org>

* gnu/system/examples/postfix.tmpl: New file.
---
 gnu/system/examples/postfix.tmpl | 52 ++++++++++++++++++++++++++++++++
 1 file changed, 52 insertions(+)
 create mode 100644 gnu/system/examples/postfix.tmpl

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)))
-- 
Jan Nieuwenhuizen <janneke@gnu.org> | GNU LilyPond http://lilypond.org
Freelance IT http://JoyofSource.com | Avatar® http://AvatarAcademy.com





  reply	other threads:[~2020-08-10  6:52 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-05-07 15:15 [bug#35619] WIP version of postfix.scm Brant Gardner
2020-08-10  6:51 ` [bug#35619] [PATCH 1/5] gnu: postfix-minimal: Updato to 3.5.0 Jan (janneke) Nieuwenhuizen
2020-08-10  6:51   ` Jan (janneke) Nieuwenhuizen [this message]
2020-08-10  6:51   ` [bug#35619] [PATCH 3/5] gnu: postfix-minimal: Fix startup warnings Jan (janneke) Nieuwenhuizen
2020-08-10  6:51   ` [bug#35619] [PATCH 4/5] service: postfix: Use mail-aliases-service-type Jan (janneke) Nieuwenhuizen
2020-08-10  6:51   ` [bug#35619] [PATCH 5/5] system: postfix.tmpl: Add mail-aliases-service Jan (janneke) Nieuwenhuizen
2021-07-29 16:22     ` Christine Lemmer-Webber
2021-07-29 18:49       ` Gábor Boskovits
2021-07-30 14:16         ` Christine Lemmer-Webber
2022-06-12 10:29 ` [bug#35619] WIP version of postfix.scm Ricardo Wurmus
2023-09-07 16:13 ` Ricardo Wurmus
2023-09-07 19:32 ` Ricardo Wurmus

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20200810065112.6879-2-janneke@gnu.org \
    --to=janneke@gnu.org \
    --cc=35619@debbugs.gnu.org \
    --cc=boskovits@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).