From 6518e361171f64bcaaa4bf868139362ed95cc2e0 Mon Sep 17 00:00:00 2001 From: Michael Biebl Date: Sat, 20 Oct 2018 01:30:31 +0200 Subject: New upstream version 1.14.2 --- man/NetworkManager.8 | 13 +- man/NetworkManager.conf.5 | 15 +- man/NetworkManager.conf.xml | 7 + man/NetworkManager.xml | 7 + man/meson.build | 3 +- man/nm-initrd-generator.8 | 103 ++++++++ man/nm-initrd-generator.xml | 140 +++++++++++ man/nm-online.1 | 6 +- man/nm-openvswitch.7 | 6 +- man/nm-openvswitch.xml | 2 +- man/nm-settings-ifcfg-rh.5 | 233 ++++++++++++++--- man/nm-settings-ifcfg-rh.xml | 36 ++- man/nm-settings-keyfile.5 | 37 ++- man/nm-settings-keyfile.xml | 9 +- man/nm-settings.5 | 577 ++++++++++++++----------------------------- man/nm-settings.xml | 81 +++--- man/nmcli-examples.7 | 6 +- man/nmcli.1 | 75 +++++- man/nmcli.xml | 25 ++ man/nmtui.1 | 6 +- 20 files changed, 877 insertions(+), 510 deletions(-) create mode 100644 man/nm-initrd-generator.8 create mode 100644 man/nm-initrd-generator.xml (limited to 'man') diff --git a/man/NetworkManager.8 b/man/NetworkManager.8 index 5ce6c6ad..27520194 100644 --- a/man/NetworkManager.8 +++ b/man/NetworkManager.8 @@ -2,12 +2,12 @@ .\" Title: NetworkManager .\" Author: .\" Generator: DocBook XSL Stylesheets vsnapshot -.\" Date: 09/18/2018 +.\" Date: 10/19/2018 .\" Manual: Network management daemons -.\" Source: NetworkManager 1.12.4 +.\" Source: NetworkManager 1.14.2 .\" Language: English .\" -.TH "NETWORKMANAGER" "8" "" "NetworkManager 1\&.12\&.4" "Network management daemons" +.TH "NETWORKMANAGER" "8" "" "NetworkManager 1\&.14\&.2" "Network management daemons" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- @@ -260,6 +260,13 @@ is used with a fallback to the older \*(Aqnm\-system\-settings\&.conf\*(Aq if lo for more information on configuration file\&. .RE .PP +\fB\-\-configure\-and\-quit\fR [initrd] +.RS 4 +Quit after all devices reach a stable state\&. The optional +initrd +parameter enables mode, where no processes are left running after NetworkManager stops, which is useful for running from an initial ramdisk on rearly boot\&. +.RE +.PP \fB\-\-plugins\fR .RS 4 List plugins used to manage system\-wide connection settings\&. This list has preference over plugins specified in the configuration file\&. See diff --git a/man/NetworkManager.conf.5 b/man/NetworkManager.conf.5 index 4f912d3b..226da2d3 100644 --- a/man/NetworkManager.conf.5 +++ b/man/NetworkManager.conf.5 @@ -2,12 +2,12 @@ .\" Title: NetworkManager.conf .\" Author: .\" Generator: DocBook XSL Stylesheets vsnapshot -.\" Date: 09/18/2018 +.\" Date: 10/19/2018 .\" Manual: Configuration -.\" Source: NetworkManager 1.12.4 +.\" Source: NetworkManager 1.14.2 .\" Language: English .\" -.TH "NETWORKMANAGER\&.CONF" "5" "" "NetworkManager 1\&.12\&.4" "Configuration" +.TH "NETWORKMANAGER\&.CONF" "5" "" "NetworkManager 1\&.14\&.2" "Configuration" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- @@ -597,6 +597,10 @@ If left unspecified, the default value is 3 tries before failing the connection\ .RS 4 .RE .PP +\fIconnection\&.llmnr\fR +.RS 4 +.RE +.PP \fIconnection\&.mdns\fR .RS 4 .RE @@ -681,6 +685,11 @@ is unset, use the content of "/proc/sys/net/ipv6/conf/default/use_tempaddr" as l If left unspecified, routes are only added to the main table\&. Note that this is different from explicitly selecting the main table 254, because of how NetworkManager removes extraneous routes from the tables\&. .RE .PP +\fIsriov\&.autoprobe\-drivers\fR +.RS 4 +If left unspecified, drivers are autoprobed when the SR\-IOV VF gets created\&. +.RE +.PP \fIvpn\&.timeout\fR .RS 4 If left unspecified, default value of 60 seconds is used\&. diff --git a/man/NetworkManager.conf.xml b/man/NetworkManager.conf.xml index 17bc42f3..87cf0016 100644 --- a/man/NetworkManager.conf.xml +++ b/man/NetworkManager.conf.xml @@ -653,6 +653,9 @@ ipv6.ip6-privacy=0 connection.lldp + + connection.llmnr + connection.mdns @@ -727,6 +730,10 @@ ipv6.ip6-privacy=0 removes extraneous routes from the tables. + + sriov.autoprobe-drivers + If left unspecified, drivers are autoprobed when the SR-IOV VF gets created. + vpn.timeout If left unspecified, default value of 60 seconds is used. diff --git a/man/NetworkManager.xml b/man/NetworkManager.xml index 7b0513bb..f78a44f4 100644 --- a/man/NetworkManager.xml +++ b/man/NetworkManager.xml @@ -379,6 +379,13 @@ for more information on configuration file. + + initrd + Quit after all devices reach a stable state. + The optional initrd parameter enables mode, where no + processes are left running after NetworkManager stops, which is useful + for running from an initial ramdisk on rearly boot. + List plugins used to manage system-wide diff --git a/man/meson.build b/man/meson.build index 044ddcab..92943166 100644 --- a/man/meson.build +++ b/man/meson.build @@ -10,7 +10,7 @@ common_conf.set('NM_CONFIG_DEFAULT_MAIN_DHCP', config_dhcp_default) common = 'common.ent' -configure_file( +common_ent_file = configure_file( input: common + '.in', output: common, configuration: common_conf @@ -58,6 +58,7 @@ foreach man: mans input: input, output: output, command: xsltproc_options + [docbook_xls, '@INPUT@'], + depend_files: common_ent_file, install: true, install_dir: join_paths(nm_mandir, 'man' + man[1]) ) diff --git a/man/nm-initrd-generator.8 b/man/nm-initrd-generator.8 new file mode 100644 index 00000000..f8e3d3c9 --- /dev/null +++ b/man/nm-initrd-generator.8 @@ -0,0 +1,103 @@ +'\" t +.\" Title: nm-initrd-generator +.\" Author: +.\" Generator: DocBook XSL Stylesheets vsnapshot +.\" Date: 10/19/2018 +.\" Manual: System Administration +.\" Source: NetworkManager 1.14.2 +.\" Language: English +.\" +.TH "NM\-INITRD\-GENERATOR" "8" "" "NetworkManager 1\&.14\&.2" "System Administration" +.\" ----------------------------------------------------------------- +.\" * Define some portability stuff +.\" ----------------------------------------------------------------- +.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +.\" http://bugs.debian.org/507673 +.\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html +.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +.ie \n(.g .ds Aq \(aq +.el .ds Aq ' +.\" ----------------------------------------------------------------- +.\" * set default formatting +.\" ----------------------------------------------------------------- +.\" disable hyphenation +.nh +.\" disable justification (adjust text to left margin only) +.ad l +.\" ----------------------------------------------------------------- +.\" * MAIN CONTENT STARTS HERE * +.\" ----------------------------------------------------------------- +.SH "NAME" +nm-initrd-generator \- early boot NetworkManager configuration generator +.SH "SYNOPSIS" +.HP \w'\fBnm\-initrd\-generator\fR\ 'u +\fBnm\-initrd\-generator\fR [\fIOPTIONS\fR...] \-\- [\fICMDLINE\fR...] +.SH "DESCRIPTION" +.PP +\fBnm\-initrd\-generator\fR +scans the command line for options relevant to network configuration and creates configuration files for an early instance of NetworkManager run from the initial ramdisk during early boot\&. +.SH "OPTIONS" +.PP +\fB\-c\fR | \fB\-\-connections\-dir\fR \fIpath\fR +.RS 4 +Output connection directory\&. +.RE +.PP +\fB\-d\fR | \fB\-\-sysfs\-dir\fR \fIpath\fR +.RS 4 +The sysfs mount point\&. +.RE +.PP +\fB\-s\fR | \fB\-\-stdout\fR +.RS 4 +Dump connections to standard output\&. Useful for debugging\&. +.RE +.PP +\fICMDLINE\fR +.RS 4 +The options that appear on the kernel command line\&. The following options are recognized: +.RS 4 +\fBip\fR +.RE +.RS 4 +\fBrd\&.route\fR +.RE +.RS 4 +\fBbridge\fR +.RE +.RS 4 +\fBbond\fR +.RE +.RS 4 +\fBteam\fR +.RE +.RS 4 +\fBvlan\fR +.RE +.RS 4 +\fBbootdev\fR +.RE +.RS 4 +\fBnameserver\fR +.RE +.RS 4 +\fBrd\&.peerdns\fR +.RE +.RS 4 +\fBrd\&.bootif\fR +.RE +.RS 4 +\fBBOOTIF\fR +.RE +Please consult the +\fBdracut.cmdline\fR(7) +manual for the documentation of the precise format of the values supported\&. +.RE +.SH "EXIT STATUS" +.PP +\fBnm\-initrd\-generator\fR +exits with status 0\&. It ignores unrecognized options and prints an error message if it encounters a malformed option\&. +.SH "SEE ALSO" +.PP +\fBdracut.cmdline\fR(7), +\fBNetworkManager\fR(8)\&. diff --git a/man/nm-initrd-generator.xml b/man/nm-initrd-generator.xml new file mode 100644 index 00000000..df2cf12a --- /dev/null +++ b/man/nm-initrd-generator.xml @@ -0,0 +1,140 @@ + + + +%entities; +]> + + + + + + + nm-initrd-generator + NetworkManager developers + + + + nm-initrd-generator + 8 + NetworkManager + System Administration + &NM_VERSION; + + + + nm-initrd-generator + early boot NetworkManager configuration generator + + + + + nm-initrd-generator + OPTIONS + -- + CMDLINE + + + + Description + nm-initrd-generator scans the command line for options + relevant to network configuration and creates configuration files for an early + instance of NetworkManager run from the initial ramdisk during early boot. + + + Options + + + + + + + + path + + + + Output connection directory. + + + + + + + + + + path + + + + The sysfs mount point. + + + + + + + + + + + + + Dump connections to standard output. Useful for debugging. + + + + + CMDLINE + + + The options that appear on the kernel command line. The following options are recognized: + + + + + + + + + + + + + + + + Please consult the dracut.cmdline7 + manual for the documentation of the precise format of the values supported. + + + + + + Exit Status + nm-initrd-generator exits with status 0. It ignores unrecognized + options and prints an error message if it encounters a malformed option. + + + See Also + dracut.cmdline7, + NetworkManager8. + + diff --git a/man/nm-online.1 b/man/nm-online.1 index fd6378a4..9f63bd97 100644 --- a/man/nm-online.1 +++ b/man/nm-online.1 @@ -2,12 +2,12 @@ .\" Title: nm-online .\" Author: .\" Generator: DocBook XSL Stylesheets vsnapshot -.\" Date: 09/18/2018 +.\" Date: 10/19/2018 .\" Manual: General Commands Manual -.\" Source: NetworkManager 1.12.4 +.\" Source: NetworkManager 1.14.2 .\" Language: English .\" -.TH "NM\-ONLINE" "1" "" "NetworkManager 1\&.12\&.4" "General Commands Manual" +.TH "NM\-ONLINE" "1" "" "NetworkManager 1\&.14\&.2" "General Commands Manual" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff --git a/man/nm-openvswitch.7 b/man/nm-openvswitch.7 index fcaf76a8..1f325761 100644 --- a/man/nm-openvswitch.7 +++ b/man/nm-openvswitch.7 @@ -2,12 +2,12 @@ .\" Title: nm-openvswitch .\" Author: .\" Generator: DocBook XSL Stylesheets vsnapshot -.\" Date: 09/18/2018 +.\" Date: 10/19/2018 .\" Manual: OpenVSwitch support overview -.\" Source: NetworkManager 1.12.4 +.\" Source: NetworkManager 1.14.2 .\" Language: English .\" -.TH "NM\-OPENVSWITCH" "7" "" "NetworkManager 1\&.12\&.4" "OpenVSwitch support overview" +.TH "NM\-OPENVSWITCH" "7" "" "NetworkManager 1\&.14\&.2" "OpenVSwitch support overview" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff --git a/man/nm-openvswitch.xml b/man/nm-openvswitch.xml index 2b824c0e..7195adcc 100644 --- a/man/nm-openvswitch.xml +++ b/man/nm-openvswitch.xml @@ -7,7 +7,7 @@ ]>