diff options
author | 宋文武 <iyzsong@member.fsf.org> | 2017-01-27 21:37:42 +0800 |
---|---|---|
committer | 宋文武 <iyzsong@member.fsf.org> | 2017-02-12 14:48:34 +0800 |
commit | c32d02fe7edc0117c09d3fcd27140c3b149b496c (patch) | |
tree | 8c35fb9978e5b9adf02755390a1c137abcc4bf86 /doc | |
parent | 92ac2cff825e3854201f6d0396790400364fff0e (diff) | |
download | guix-c32d02fe7edc0117c09d3fcd27140c3b149b496c.tar guix-c32d02fe7edc0117c09d3fcd27140c3b149b496c.tar.gz |
services: Add openvswitch-service-type.
* gnu/services/networking.scm (<openvswitch-configuration>): New record type.
(openvswitch-activation, openvswitch-shepherd-service): New procedures.
(openvswitch-service-type): New variable.
* doc/guix.texi (Networking Services): Document it.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/guix.texi | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/doc/guix.texi b/doc/guix.texi index 50cab274af..6cdb5e592b 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -9264,6 +9264,23 @@ Boolean values @var{ipv4?} and @var{ipv6?} determine whether to use IPv4/IPv6 sockets. @end deffn +@deffn {Scheme Variable} openvswitch-service-type +This is the type of the @uref{http://www.openvswitch.org, Open vSwitch} +service, whose value should be an @code{openvswitch-configuration} +object. +@end deffn + +@deftp {Data Type} openvswitch-configuration +Data type representing the configuration of Open vSwitch, a multilayer +virtual switch which is designed to enable massive network automation +through programmatic extension. + +@table @asis +@item @code{package} (default: @var{openvswitch}) +Package object of the Open vSwitch. + +@end table +@end deftp @node X Window @subsubsection X Window |