nixos/*: normalize more docbook for auto-conversion

pennae 5a643387 e4f876eb

Changed files
+22 -45
nixos
lib
modules
config
services
+10 -20
nixos/lib/systemd-unit-options.nix
···
description = ''
Each attribute in this set specifies an option in the
<literal>[Unit]</literal> section of the unit. See
-
<citerefentry><refentrytitle>systemd.unit</refentrytitle>
-
<manvolnum>5</manvolnum></citerefentry> for details.
+
<citerefentry><refentrytitle>systemd.unit</refentrytitle><manvolnum>5</manvolnum></citerefentry> for details.
'';
};
···
description = ''
Each attribute in this set specifies an option in the
<literal>[Service]</literal> section of the unit. See
-
<citerefentry><refentrytitle>systemd.service</refentrytitle>
-
<manvolnum>5</manvolnum></citerefentry> for details.
+
<citerefentry><refentrytitle>systemd.service</refentrytitle><manvolnum>5</manvolnum></citerefentry> for details.
'';
};
···
description = ''
Automatically start this unit at the given date/time, which
must be in the format described in
-
<citerefentry><refentrytitle>systemd.time</refentrytitle>
-
<manvolnum>7</manvolnum></citerefentry>. This is equivalent
+
<citerefentry><refentrytitle>systemd.time</refentrytitle><manvolnum>7</manvolnum></citerefentry>. This is equivalent
to adding a corresponding timer unit with
<option>OnCalendar</option> set to the value given here.
'';
···
description = ''
Each attribute in this set specifies an option in the
<literal>[Socket]</literal> section of the unit. See
-
<citerefentry><refentrytitle>systemd.socket</refentrytitle>
-
<manvolnum>5</manvolnum></citerefentry> for details.
+
<citerefentry><refentrytitle>systemd.socket</refentrytitle><manvolnum>5</manvolnum></citerefentry> for details.
'';
};
};
···
description = ''
Each attribute in this set specifies an option in the
<literal>[Timer]</literal> section of the unit. See
-
<citerefentry><refentrytitle>systemd.timer</refentrytitle>
-
<manvolnum>5</manvolnum></citerefentry> and
-
<citerefentry><refentrytitle>systemd.time</refentrytitle>
-
<manvolnum>7</manvolnum></citerefentry> for details.
+
<citerefentry><refentrytitle>systemd.timer</refentrytitle><manvolnum>5</manvolnum></citerefentry> and
+
<citerefentry><refentrytitle>systemd.time</refentrytitle><manvolnum>7</manvolnum></citerefentry> for details.
'';
};
···
description = ''
Each attribute in this set specifies an option in the
<literal>[Path]</literal> section of the unit. See
-
<citerefentry><refentrytitle>systemd.path</refentrytitle>
-
<manvolnum>5</manvolnum></citerefentry> for details.
+
<citerefentry><refentrytitle>systemd.path</refentrytitle><manvolnum>5</manvolnum></citerefentry> for details.
'';
};
···
description = ''
Each attribute in this set specifies an option in the
<literal>[Mount]</literal> section of the unit. See
-
<citerefentry><refentrytitle>systemd.mount</refentrytitle>
-
<manvolnum>5</manvolnum></citerefentry> for details.
+
<citerefentry><refentrytitle>systemd.mount</refentrytitle><manvolnum>5</manvolnum></citerefentry> for details.
'';
};
···
description = ''
Each attribute in this set specifies an option in the
<literal>[Automount]</literal> section of the unit. See
-
<citerefentry><refentrytitle>systemd.automount</refentrytitle>
-
<manvolnum>5</manvolnum></citerefentry> for details.
+
<citerefentry><refentrytitle>systemd.automount</refentrytitle><manvolnum>5</manvolnum></citerefentry> for details.
'';
};
···
description = ''
Each attribute in this set specifies an option in the
<literal>[Slice]</literal> section of the unit. See
-
<citerefentry><refentrytitle>systemd.slice</refentrytitle>
-
<manvolnum>5</manvolnum></citerefentry> for details.
+
<citerefentry><refentrytitle>systemd.slice</refentrytitle><manvolnum>5</manvolnum></citerefentry> for details.
'';
};
+11 -22
nixos/modules/config/mysql.nix
···
description = ''
The name of the column in the log table to which the name of the remote
host that initiates the session is stored. The value is supposed to be
-
set by the PAM-aware application with <literal>pam_set_item(PAM_RHOST)
-
</literal>.
+
set by the PAM-aware application with <literal>pam_set_item(PAM_RHOST)</literal>.
'';
};
timeColumn = mkOption {
···
LIMIT 1
'';
description = ''
-
SQL query for the <link
-
xlink:href="https://man7.org/linux/man-pages/man3/getpwnam.3.html">getpwnam</link>
+
SQL query for the <link xlink:href="https://man7.org/linux/man-pages/man3/getpwnam.3.html">getpwnam</link>
syscall.
'';
};
···
LIMIT 1
'';
description = ''
-
SQL query for the <link
-
xlink:href="https://man7.org/linux/man-pages/man3/getpwuid.3.html">getpwuid</link>
+
SQL query for the <link xlink:href="https://man7.org/linux/man-pages/man3/getpwuid.3.html">getpwuid</link>
syscall.
'';
};
···
LIMIT 1
'';
description = ''
-
SQL query for the <link
-
xlink:href="https://man7.org/linux/man-pages/man3/getspnam.3.html">getspnam</link>
+
SQL query for the <link xlink:href="https://man7.org/linux/man-pages/man3/getspnam.3.html">getspnam</link>
syscall.
'';
};
···
SELECT username,'x',uid,'5000','MySQL User', CONCAT('/home/',username),'/run/sw/current-system/bin/bash' FROM users
'';
description = ''
-
SQL query for the <link
-
xlink:href="https://man7.org/linux/man-pages/man3/getpwent.3.html">getpwent</link>
+
SQL query for the <link xlink:href="https://man7.org/linux/man-pages/man3/getpwent.3.html">getpwent</link>
syscall.
'';
};
···
SELECT username,password,'1','0','99999','0','0','-1','0' FROM users
'';
description = ''
-
SQL query for the <link
-
xlink:href="https://man7.org/linux/man-pages/man3/getspent.3.html">getspent</link>
+
SQL query for the <link xlink:href="https://man7.org/linux/man-pages/man3/getspent.3.html">getspent</link>
syscall.
'';
};
···
SELECT name,password,gid FROM groups WHERE name='%1$s' LIMIT 1
'';
description = ''
-
SQL query for the <link
-
xlink:href="https://man7.org/linux/man-pages/man3/getgrnam.3.html">getgrnam</link>
+
SQL query for the <link xlink:href="https://man7.org/linux/man-pages/man3/getgrnam.3.html">getgrnam</link>
syscall.
'';
};
···
SELECT name,password,gid FROM groups WHERE gid='%1$u' LIMIT 1
'';
description = ''
-
SQL query for the <link
-
xlink:href="https://man7.org/linux/man-pages/man3/getgrgid.3.html">getgrgid</link>
+
SQL query for the <link xlink:href="https://man7.org/linux/man-pages/man3/getgrgid.3.html">getgrgid</link>
syscall.
'';
};
···
SELECT name,password,gid FROM groups
'';
description = ''
-
SQL query for the <link
-
xlink:href="https://man7.org/linux/man-pages/man3/getgrent.3.html">getgrent</link>
+
SQL query for the <link xlink:href="https://man7.org/linux/man-pages/man3/getgrent.3.html">getgrent</link>
syscall.
'';
};
···
SELECT username FROM grouplist WHERE gid='%1$u'
'';
description = ''
-
SQL query for the <link
-
xlink:href="https://man7.org/linux/man-pages/man3/memsbygid.3.html">memsbygid</link>
+
SQL query for the <link xlink:href="https://man7.org/linux/man-pages/man3/memsbygid.3.html">memsbygid</link>
syscall.
'';
};
···
SELECT gid FROM grouplist WHERE username='%1$s'
'';
description = ''
-
SQL query for the <link
-
xlink:href="https://man7.org/linux/man-pages/man3/gidsbymem.3.html">gidsbymem</link>
+
SQL query for the <link xlink:href="https://man7.org/linux/man-pages/man3/gidsbymem.3.html">gidsbymem</link>
syscall.
'';
};
+1 -3
nixos/modules/services/networking/globalprotect-vpn.nix
···
settings = mkOption {
description = ''
GlobalProtect-openconnect configuration. For more information, visit
-
<link
-
xlink:href="https://github.com/yuezk/GlobalProtect-openconnect/wiki/Configuration"
-
/>.
+
<link xlink:href="https://github.com/yuezk/GlobalProtect-openconnect/wiki/Configuration"/>.
'';
default = { };
example = {