diff options
author | David Michael <fedora.dm0@gmail.com> | 2016-12-07 10:12:10 -0800 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2016-12-07 19:12:10 +0100 |
commit | 618b196e9de0aa233d080d0b48c1ba24f3ab86bc (patch) | |
tree | 538b983b82b26839977b97fe1d117532fc8386e9 /man | |
parent | 3e7b9f76f56db77fa1e8a09b543176c7ddd136de (diff) |
network: support negation in matching patterns (#4809)
Diffstat (limited to 'man')
-rw-r--r-- | man/systemd.network.xml | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/man/systemd.network.xml b/man/systemd.network.xml index 53c49f817f..0fa68b7623 100644 --- a/man/systemd.network.xml +++ b/man/systemd.network.xml @@ -123,7 +123,10 @@ <listitem> <para>A whitespace-separated list of shell-style globs matching the persistent path, as exposed by the udev - property <literal>ID_PATH</literal>.</para> + property <literal>ID_PATH</literal>. If the list is + prefixed with a "!", the test is inverted; i.e. it is + true when <literal>ID_PATH</literal> does not match any + item in the list.</para> </listitem> </varlistentry> <varlistentry> @@ -134,7 +137,8 @@ exposed by the udev property <literal>DRIVER</literal> of its parent device, or if that is not set the driver as exposed by <literal>ethtool -i</literal> of the - device itself.</para> + device itself. If the list is prefixed with a "!", the + test is inverted.</para> </listitem> </varlistentry> <varlistentry> @@ -142,7 +146,8 @@ <listitem> <para>A whitespace-separated list of shell-style globs matching the device type, as exposed by the udev property - <literal>DEVTYPE</literal>.</para> + <literal>DEVTYPE</literal>. If the list is prefixed with + a "!", the test is inverted.</para> </listitem> </varlistentry> <varlistentry> @@ -150,7 +155,8 @@ <listitem> <para>A whitespace-separated list of shell-style globs matching the device name, as exposed by the udev property - <literal>INTERFACE</literal>.</para> + <literal>INTERFACE</literal>. If the list is prefixed + with a "!", the test is inverted.</para> </listitem> </varlistentry> <varlistentry> |