summaryrefslogtreecommitdiff
path: root/gnu/machine/ssh.scm
diff options
context:
space:
mode:
authorThéo Tyburn <theo.tyburn@posteo.net>2026-06-03 10:56:10 +0200
committerNguyễn Gia Phong <cnx@loang.net>2026-08-31 11:00:19 +0900
commitc62ebcd02c2eb190ab5dc157475ef4a93a1c7581 (patch)
treef178f262874978ac0be45e5499db5cc2d63248fe /gnu/machine/ssh.scm
parent30cb1f541eb99b0fbbec1f8f29796151103c5f2b (diff)
doc: Move Commentary above module definition.
Merges: https://codeberg.org/guix/guix/pulls/9052 Reviewed-by: Ludovic Courtès <ludo@gnu.org> Reviewed-by: Maxim Cournoyer <maxim@guixotic.coop> Signed-off-by: Nguyễn Gia Phong <cnx@loang.net>
Diffstat (limited to 'gnu/machine/ssh.scm')
-rw-r--r--gnu/machine/ssh.scm18
1 files changed, 9 insertions, 9 deletions
diff --git a/gnu/machine/ssh.scm b/gnu/machine/ssh.scm
index 0ce28602363..d8c634000f7 100644
--- a/gnu/machine/ssh.scm
+++ b/gnu/machine/ssh.scm
@@ -19,6 +19,15 @@
19;;; You should have received a copy of the GNU General Public License 19;;; You should have received a copy of the GNU General Public License
20;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>. 20;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
21 21
22;;; Commentary:
23;;;
24;;; This module implements remote evaluation and system deployment for
25;;; machines that are accessible over SSH and have a known host-name. In the
26;;; sense of the broader "machine" interface, we describe the environment for
27;;; such machines as 'managed-host.
28;;;
29;;; Code:
30
22(define-module (gnu machine ssh) 31(define-module (gnu machine ssh)
23 #:use-module (gnu bootloader) 32 #:use-module (gnu bootloader)
24 #:use-module (gnu machine) 33 #:use-module (gnu machine)
@@ -70,15 +79,6 @@
70 machine-ssh-configuration-host-key 79 machine-ssh-configuration-host-key
71 machine-ssh-configuration-session)) 80 machine-ssh-configuration-session))
72 81
73;;; Commentary:
74;;;
75;;; This module implements remote evaluation and system deployment for
76;;; machines that are accessible over SSH and have a known host-name. In the
77;;; sense of the broader "machine" interface, we describe the environment for
78;;; such machines as 'managed-host.
79;;;
80;;; Code:
81
82 82
83;;; 83;;;
84;;; Parameters for the SSH client. 84;;; Parameters for the SSH client.