mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
services: openssh: Cosmetic changes.
* gnu/services/ssh.scm (<openssh-configuration>): Reformat to fit in 80 columns.
This commit is contained in:
parent
a42619e5e2
commit
4ca3e9b7b6
1 changed files with 21 additions and 10 deletions
|
@ -260,28 +260,39 @@ (define* (lsh-service #:key
|
|||
(define-record-type* <openssh-configuration>
|
||||
openssh-configuration make-openssh-configuration
|
||||
openssh-configuration?
|
||||
(openssh openssh-configuration-openssh ;package
|
||||
;; <package>
|
||||
(openssh openssh-configuration-openssh
|
||||
(default openssh))
|
||||
;; string
|
||||
(pid-file openssh-configuration-pid-file
|
||||
(default "/var/run/sshd.pid"))
|
||||
(port-number openssh-configuration-port-number ;integer
|
||||
;; integer
|
||||
(port-number openssh-configuration-port-number
|
||||
(default 22))
|
||||
(permit-root-login openssh-configuration-permit-root-login ;Boolean | 'without-password
|
||||
;; Boolean | 'without-password
|
||||
(permit-root-login openssh-configuration-permit-root-login
|
||||
(default #f))
|
||||
(allow-empty-passwords? openssh-configuration-allow-empty-passwords? ;Boolean
|
||||
;; Boolean
|
||||
(allow-empty-passwords? openssh-configuration-allow-empty-passwords?
|
||||
(default #f))
|
||||
(password-authentication? openssh-configuration-password-authentication? ;Boolean
|
||||
;; Boolean
|
||||
(password-authentication? openssh-configuration-password-authentication?
|
||||
(default #t))
|
||||
;; Boolean
|
||||
(public-key-authentication? openssh-configuration-public-key-authentication?
|
||||
(default #t)) ;Boolean
|
||||
(x11-forwarding? openssh-configuration-x11-forwarding? ;Boolean
|
||||
(default #t))
|
||||
;; Boolean
|
||||
(x11-forwarding? openssh-configuration-x11-forwarding?
|
||||
(default #f))
|
||||
;; Boolean
|
||||
(challenge-response-authentication? openssh-challenge-response-authentication?
|
||||
(default #f)) ;Boolean
|
||||
(default #f))
|
||||
;; Boolean
|
||||
(use-pam? openssh-configuration-use-pam?
|
||||
(default #t)) ;Boolean
|
||||
(default #t))
|
||||
;; Boolean
|
||||
(print-last-log? openssh-configuration-print-last-log?
|
||||
(default #t))) ;Boolean
|
||||
(default #t)))
|
||||
|
||||
(define %openssh-accounts
|
||||
(list (user-group (name "sshd") (system? #t))
|
||||
|
|
Loading…
Reference in a new issue