mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
services: connman: Deprecate 'iwd?' field.
* gnu/services/networking.scm (<connman-configuration>) [iwd?]: Use helper to warn deprecated field. (connman-shepherd-service): Make iwd? a local variable independent from the deprecated field. * doc/guix.texi (Networking Setup): Remove mention of iwd? field. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
269871d18e
commit
17c80118fa
2 changed files with 27 additions and 23 deletions
|
@ -19926,8 +19926,6 @@ networks.
|
|||
@item @code{disable-vpn?} (default: @code{#f})
|
||||
When true, disable connman's vpn plugin.
|
||||
|
||||
@item @code{iwd?} (default: @code{#f})
|
||||
When true, ConnMan uses iwd to connect to wireless networks.
|
||||
@end table
|
||||
@end deftp
|
||||
|
||||
|
|
|
@ -1294,7 +1294,8 @@ (define-record-type* <connman-configuration>
|
|||
(disable-vpn? connman-configuration-disable-vpn?
|
||||
(default #f))
|
||||
(iwd? connman-configuration-iwd?
|
||||
(default #f)))
|
||||
(default #f)
|
||||
(sanitize warn-iwd?-field-deprecation)))
|
||||
|
||||
(define (connman-activation config)
|
||||
(let ((disable-vpn? (connman-configuration-disable-vpn? config)))
|
||||
|
@ -1308,27 +1309,32 @@ (define (connman-activation config)
|
|||
(define (connman-shepherd-service config)
|
||||
(match-record config <connman-configuration> (connman shepherd-requirement
|
||||
disable-vpn? iwd?)
|
||||
(list (shepherd-service
|
||||
(documentation "Run Connman")
|
||||
(provision '(networking))
|
||||
(requirement `(user-processes dbus-system loopback
|
||||
,@shepherd-requirement
|
||||
,@(if iwd? '(iwd) '())))
|
||||
(start #~(make-forkexec-constructor
|
||||
(list (string-append #$connman
|
||||
"/sbin/connmand")
|
||||
"--nodaemon"
|
||||
"--nodnsproxy"
|
||||
#$@(if disable-vpn? '("--noplugin=vpn") '())
|
||||
#$@(if iwd? '("--wifi=iwd_agent") '()))
|
||||
(let ((iwd? (or iwd? ; TODO: deprecated field, remove later.
|
||||
(and shepherd-requirement
|
||||
(memq 'iwd shepherd-requirement)))))
|
||||
(list (shepherd-service
|
||||
(documentation "Run Connman")
|
||||
(provision '(networking))
|
||||
(requirement `(user-processes dbus-system loopback
|
||||
,@shepherd-requirement
|
||||
;; TODO: iwd? is deprecated and should be passed
|
||||
;; with shepherd-requirement, remove later.
|
||||
,@(if iwd? '(iwd) '())))
|
||||
(start #~(make-forkexec-constructor
|
||||
(list (string-append #$connman
|
||||
"/sbin/connmand")
|
||||
"--nodaemon"
|
||||
"--nodnsproxy"
|
||||
#$@(if disable-vpn? '("--noplugin=vpn") '())
|
||||
#$@(if iwd? '("--wifi=iwd_agent") '()))
|
||||
|
||||
;; As connman(8) notes, when passing '-n', connman
|
||||
;; "directs log output to the controlling terminal in
|
||||
;; addition to syslog." Redirect stdout and stderr
|
||||
;; to avoid spamming the console (XXX: for some reason
|
||||
;; redirecting to /dev/null doesn't work.)
|
||||
#:log-file "/var/log/connman.log"))
|
||||
(stop #~(make-kill-destructor))))))
|
||||
;; As connman(8) notes, when passing '-n', connman
|
||||
;; "directs log output to the controlling terminal in
|
||||
;; addition to syslog." Redirect stdout and stderr
|
||||
;; to avoid spamming the console (XXX: for some reason
|
||||
;; redirecting to /dev/null doesn't work.)
|
||||
#:log-file "/var/log/connman.log"))
|
||||
(stop #~(make-kill-destructor)))))))
|
||||
|
||||
(define %connman-log-rotation
|
||||
(list (log-rotation
|
||||
|
|
Loading…
Reference in a new issue