[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: system: bare-hurd.tmpl: Add openssh-sans-x client
From: |
guix-commits |
Subject: |
branch master updated: system: bare-hurd.tmpl: Add openssh-sans-x client and service. |
Date: |
Sat, 13 Jun 2020 03:23:55 -0400 |
This is an automated email from the git hooks/post-receive script.
janneke pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new edbc067 system: bare-hurd.tmpl: Add openssh-sans-x client and service.
edbc067 is described below
commit edbc067138fa417d03cbb204511d8b08b61a3d4d
Author: Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
AuthorDate: Thu May 7 19:14:07 2020 +0200
system: bare-hurd.tmpl: Add openssh-sans-x client and service.
* gnu/system/examples/bare-hurd.tmpl (%hurd-os)[packages]: Add
openssh-sans-x.
[services]: Add openssh-service. Add example usage.
---
gnu/system/examples/bare-hurd.tmpl | 31 +++++++++++++++++++++++++++----
1 file changed, 27 insertions(+), 4 deletions(-)
diff --git a/gnu/system/examples/bare-hurd.tmpl
b/gnu/system/examples/bare-hurd.tmpl
index 16f2041..414a937 100644
--- a/gnu/system/examples/bare-hurd.tmpl
+++ b/gnu/system/examples/bare-hurd.tmpl
@@ -5,12 +5,27 @@
;; To build a disk image for a virtual machine, do
;;
-;; ./pre-inst-env guix system disk-image --target=i586-pc-gnu --no-grafts \
+;; ./pre-inst-env guix system disk-image --target=i586-pc-gnu \
;; gnu/system/examples/bare-hurd.tmpl
;;
-;; it boots, but needs activation, more setup and services to be useful.
+;; You may run it like so
+;;
+;; guix environment --ad-hoc qemu -- qemu-system-i386 -enable-kvm -m 512M \
+;; -device rtl8139,netdev=net0 -netdev
user,id=net0,hostfwd=tcp:127.0.0.1:10022-:2222 \
+;; -snapshot -hda <the-image>
+;;
+;; and use it like
+;;
+;; ssh -p 10022 root@localhost
+;; guix build -e '(@@ (gnu packages commencement) gnu-make-boot0)'
+;;
+;; or even (if you use --image-size=3G)
+;;
+;; guix build hello
(use-modules (gnu) (gnu system hurd) (guix utils))
+(use-service-modules ssh)
+(use-package-modules ssh)
(define %hurd-os
(operating-system
@@ -25,7 +40,15 @@
%base-file-systems))
(host-name "guixygnu")
(timezone "Europe/Amsterdam")
- (packages %base-packages/hurd)
- (services %base-services/hurd)))
+ (packages (cons openssh-sans-x %base-packages/hurd))
+ (services (cons (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)))
+ %base-services/hurd))))
%hurd-os
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: system: bare-hurd.tmpl: Add openssh-sans-x client and service.,
guix-commits <=