services: vpn: Fix default tls-auth configuration.
* gnu/services/vpn.scm (serialize-tls-auth): Fix serialization error when tls-auth is disabled.
This commit is contained in:
parent
262a4d335a
commit
4b8b4418e6
|
@ -108,10 +108,12 @@
|
||||||
#f))
|
#f))
|
||||||
|
|
||||||
(define (serialize-tls-auth role location)
|
(define (serialize-tls-auth role location)
|
||||||
|
(if location
|
||||||
(serialize-field 'tls-auth
|
(serialize-field 'tls-auth
|
||||||
(string-append location " " (match role
|
(string-append location " " (match role
|
||||||
('server "0")
|
('server "0")
|
||||||
('client "1")))))
|
('client "1"))))
|
||||||
|
#f))
|
||||||
(define (tls-auth? val)
|
(define (tls-auth? val)
|
||||||
(or (eq? val #f)
|
(or (eq? val #f)
|
||||||
(string? val)))
|
(string? val)))
|
||||||
|
|
Loading…
Reference in New Issue