[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/12: services: hurd-vm: Use the default SSH port number.
From: |
guix-commits |
Subject: |
03/12: services: hurd-vm: Use the default SSH port number. |
Date: |
Fri, 22 Sep 2023 09:58:42 -0400 (EDT) |
janneke pushed a commit to branch hurd-team
in repository guix.
commit 18db3f53d30ab13667d6fd3ab6cfe18b466d4cc3
Author: Ludovic Courtès <ludo@gnu.org>
AuthorDate: Fri Sep 22 14:54:04 2023 +0200
services: hurd-vm: Use the default SSH port number.
* gnu/services/virtualization.scm (%hurd-vm-operating-system): Remove
‘port-number’ from ‘openssh-configuration’.
(hurd-vm-net-options): Change 2222 to 22 in port forwarding.
---
gnu/services/virtualization.scm | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/gnu/services/virtualization.scm b/gnu/services/virtualization.scm
index e1a206e0eb..fd153dd051 100644
--- a/gnu/services/virtualization.scm
+++ b/gnu/services/virtualization.scm
@@ -1078,7 +1078,6 @@ that will be listening to receive secret keys on port
1004, TCP."
(openssh-configuration
(openssh openssh-sans-x)
(use-pam? #f)
- (port-number 2222)
(permit-root-login #t)
(allow-empty-passwords? #t)
(password-authentication? #t)))
@@ -1146,7 +1145,7 @@ is added to the OS specified in CONFIG."
"-:1004"
",hostfwd=tcp:127.0.0.1:"
(number->string (hurd-vm-port config %hurd-vm-ssh-port))
- "-:2222"
+ "-:22"
",hostfwd=tcp:127.0.0.1:"
(number->string (hurd-vm-port config %hurd-vm-vnc-port))
"-:5900")))
- branch hurd-team updated (539b171a59 -> 6e161413c7), guix-commits, 2023/09/22
- 03/12: services: hurd-vm: Use the default SSH port number.,
guix-commits <=
- 01/12: system: vm: Remove unused variable., guix-commits, 2023/09/22
- 05/12: services: guix: Use the right locale package on GNU/Hurd., guix-commits, 2023/09/22
- 07/12: services: childhurd: Authorize the childhurd’s key on the host., guix-commits, 2023/09/22
- 08/12: services: hurd-vm: ‘image’ field has to be an <image> record., guix-commits, 2023/09/22
- 09/12: tests: hurd-vm: Remove custom disk image configuration., guix-commits, 2023/09/22
- 12/12: services: hurd-vm: Implement zero-configuration offloading., guix-commits, 2023/09/22
- 02/12: secret-service: Increase default handshake timeout., guix-commits, 2023/09/22
- 04/12: gnu: glibc-utf8-locales: Reintroduce input labels., guix-commits, 2023/09/22
- 06/12: services: guix: Support declarative offloading setup., guix-commits, 2023/09/22
- 10/12: services: hurd-vm: Disable password-based authentication for root., guix-commits, 2023/09/22