Update cdist beta docs

pull/1/head
Darko Poljak 3 years ago
parent c0fd8f0c36
commit ba47754e3f

@ -184,6 +184,7 @@ The following types are available:
- __dog_vdi (`cdist-type__dog_vdi(7) <man7/cdist-type__dog_vdi.html>`_)
- __dot_file (`cdist-type__dot_file(7) <man7/cdist-type__dot_file.html>`_)
- __download (`cdist-type__download(7) <man7/cdist-type__download.html>`_)
- __dpkg_architecture (`cdist-type__dpkg_architecture(7) <man7/cdist-type__dpkg_architecture.html>`_)
- __file_old (`cdist-type__file_old(7) <man7/cdist-type__file_old.html>`_)
- __filesystem (`cdist-type__filesystem(7) <man7/cdist-type__filesystem.html>`_)
- __firewalld_rule (`cdist-type__firewalld_rule(7) <man7/cdist-type__firewalld_rule.html>`_)

@ -52,6 +52,7 @@ cdist types
__dog_vdi <man7/cdist-type__dog_vdi>
__dot_file <man7/cdist-type__dot_file>
__download <man7/cdist-type__download>
__dpkg_architecture <man7/cdist-type__dpkg_architecture>
__file_old <man7/cdist-type__file_old>
__filesystem <man7/cdist-type__filesystem>
__firewalld_rule <man7/cdist-type__firewalld_rule>

@ -0,0 +1,103 @@
cdist-type__dpkg_architecture(7)
================================
NAME
----
cdist-type__dpkg_architecture - Handles foreign architectures on debian-like
systems managed by `dpkg`
DESCRIPTION
-----------
This type handles foreign architectures on systems managed by
:strong:`dpkg`\ (1). The object id is the name of the architecture accepted by
`dpkg`, which should be added or removed.
If the architecture is not setup on the system, it adds a new architecture as a
new foreign architecture in `dpkg`. Then, it updates the apt package index to
make packages from the new architecture available.
If the architecture should be removed, it will remove it if it is not the base
architecture on where the system was installed on. Before it, it will purge
every package based on the "to be removed" architecture via `apt` to be able to
remove the selected architecture.
REQUIRED PARAMETERS
-------------------
None.
OPTIONAL PARAMETERS
-------------------
state
``present`` or ``absent``. Defaults to ``present``.
MESSAGES
--------
added
Added the specified architecture
removed
Removed the specified architecture
ABORTS
------
Aborts in the following cases:
If :strong:`dpkg`\ (1) is not available. It will abort with a proper error
message.
If the architecture is the same as the base architecture the system is build
upon it (returned by ``dpkg --print-architecture``) and it should be removed.
It will fail if it can not execute :strong:`apt`\ (8). It is assumed that it is
already installed.
EXAMPLES
--------
.. code-block:: sh
# add i386 (32 bit) architecture
__dpkg_architecture i386
# remove it again :)
__dpkg_architecture i386 --state absent
SEE ALSO
--------
`Multiarch on Debian systems <https://wiki.debian.org/Multiarch>`_
`How to setup multiarch on Debian <https://wiki.debian.org/Multiarch/HOWTO>`_
:strong:`dpkg`\ (1)
:strong:`cdist-type__package_dpkg`\ (7)
:strong:`cdist-type__package_apt`\ (7)
Useful commands:
.. code-block:: sh
# base architecture installed on this system
dpkg --print-architecture
# extra architectures added
dpkg --print-foreign-architectures
AUTHORS
-------
Matthias Stecher <matthiasstecher at gmx.de>
COPYING
-------
Copyright \(C) 2020 Matthias Stecher. You can redistribute it
and/or modify it under the terms of the GNU General Public License as
ublished by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.

@ -9,7 +9,9 @@ cdist-type__package_apt - Manage packages with apt-get
DESCRIPTION
-----------
apt-get is usually used on Debian and variants (like Ubuntu) to
manage packages.
manage packages. The package will be installed without recommended
or suggested packages. If such packages are required, install them
separatly or use the parameter ``--install-recommends``.
This type will also update package index, if it is older
than one day, to avoid missing package error messages.
@ -23,7 +25,7 @@ None
OPTIONAL PARAMETERS
-------------------
name
If supplied, use the name and not the object id as the package name.
If supplied, use the name and not the object id as the package name.
state
Either "present" or "absent", defaults to "present"
@ -39,6 +41,15 @@ version
BOOLEAN PARAMETERS
------------------
install-recommends
If the package will be installed, it also installs recommended packages
with it. It will not install recommended packages if the original package
is already installed.
In most cases, it is recommended to install recommended packages separatly
to control which additional packages will be installed to avoid useless
installed packages.
purge-if-absent
If this parameter is given when state is `absent`, the package is
purged from the system (using `--purge`).

@ -1,6 +1,6 @@
var DOCUMENTATION_OPTIONS = {
URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'),
VERSION: '6.8.0-21-g9e89088e',
VERSION: '6.9.1',
LANGUAGE: 'None',
COLLAPSE_INDEX: false,
BUILDER: 'html',

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>25. Best practice &mdash; cdist 6.8.0-21-g9e89088e documentation</title>
<title>25. Best practice &mdash; cdist 6.9.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
6.8.0-21-g9e89088e
6.9.1
</div>

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>12. Bootstrap &mdash; cdist 6.8.0-21-g9e89088e documentation</title>
<title>12. Bootstrap &mdash; cdist 6.9.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
6.8.0-21-g9e89088e
6.9.1
</div>

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>27. Local cache overview &mdash; cdist 6.8.0-21-g9e89088e documentation</title>
<title>27. Local cache overview &mdash; cdist 6.9.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
6.8.0-21-g9e89088e
6.9.1
</div>

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>13. Configuration &mdash; cdist 6.8.0-21-g9e89088e documentation</title>
<title>13. Configuration &mdash; cdist 6.9.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
6.8.0-21-g9e89088e
6.9.1
</div>

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>17. Explorer &mdash; cdist 6.8.0-21-g9e89088e documentation</title>
<title>17. Explorer &mdash; cdist 6.9.1 documentation</title>
@ -36,7 +36,7 @@
<link rel="index" title="Index" href="genindex.html" />
<link rel="search" title="Search" href="search.html" />
<link rel="next" title="18. Messaging" href="cdist-messaging.html" />
<link rel="prev" title="16.164. cdist-type__zypper_service(7)" href="man7/cdist-type__zypper_service.html" />
<link rel="prev" title="16.165. cdist-type__zypper_service(7)" href="man7/cdist-type__zypper_service.html" />
</head>
<body class="wy-body-for-nav">
@ -63,7 +63,7 @@
<div class="version">
6.8.0-21-g9e89088e
6.9.1
</div>
@ -245,7 +245,7 @@ dpkg -s <span class="s2">&quot;</span><span class="nv">$name</span><span class="
<a href="cdist-messaging.html" class="btn btn-neutral float-right" title="18. Messaging" accesskey="n" rel="next">Next <span class="fa fa-arrow-circle-right"></span></a>
<a href="man7/cdist-type__zypper_service.html" class="btn btn-neutral float-left" title="16.164. cdist-type__zypper_service(7)" accesskey="p" rel="prev"><span class="fa fa-arrow-circle-left"></span> Previous</a>
<a href="man7/cdist-type__zypper_service.html" class="btn btn-neutral float-left" title="16.165. cdist-type__zypper_service(7)" accesskey="p" rel="prev"><span class="fa fa-arrow-circle-left"></span> Previous</a>
</div>

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>2. Features &mdash; cdist 6.8.0-21-g9e89088e documentation</title>
<title>2. Features &mdash; cdist 6.9.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
6.8.0-21-g9e89088e
6.9.1
</div>

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>30. Hacking &mdash; cdist 6.8.0-21-g9e89088e documentation</title>
<title>30. Hacking &mdash; cdist 6.9.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
6.8.0-21-g9e89088e
6.9.1
</div>

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>4. How to install cdist &mdash; cdist 6.8.0-21-g9e89088e documentation</title>
<title>4. How to install cdist &mdash; cdist 6.9.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
6.8.0-21-g9e89088e
6.9.1
</div>

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>23. cdist integration / using cdist as library &mdash; cdist 6.8.0-21-g9e89088e documentation</title>
<title>23. cdist integration / using cdist as library &mdash; cdist 6.9.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
6.8.0-21-g9e89088e
6.9.1
</div>

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>20. Inventory &mdash; cdist 6.8.0-21-g9e89088e documentation</title>
<title>20. Inventory &mdash; cdist 6.9.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
6.8.0-21-g9e89088e
6.9.1
</div>

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>14. Manifest &mdash; cdist 6.8.0-21-g9e89088e documentation</title>
<title>14. Manifest &mdash; cdist 6.9.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
6.8.0-21-g9e89088e
6.9.1
</div>

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>18. Messaging &mdash; cdist 6.8.0-21-g9e89088e documentation</title>
<title>18. Messaging &mdash; cdist 6.9.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
6.8.0-21-g9e89088e
6.9.1
</div>

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>3. Supported operating systems &mdash; cdist 6.8.0-21-g9e89088e documentation</title>
<title>3. Supported operating systems &mdash; cdist 6.9.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
6.8.0-21-g9e89088e
6.9.1
</div>

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>19. Parallelization &mdash; cdist 6.8.0-21-g9e89088e documentation</title>
<title>19. Parallelization &mdash; cdist 6.9.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
6.8.0-21-g9e89088e
6.9.1
</div>

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>22. PreOS &mdash; cdist 6.8.0-21-g9e89088e documentation</title>
<title>22. PreOS &mdash; cdist 6.9.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
6.8.0-21-g9e89088e
6.9.1
</div>

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>7. Quickstart &mdash; cdist 6.8.0-21-g9e89088e documentation</title>
<title>7. Quickstart &mdash; cdist 6.9.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
6.8.0-21-g9e89088e
6.9.1
</div>

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>8. Dive into real world cdist &mdash; cdist 6.8.0-21-g9e89088e documentation</title>
<title>8. Dive into real world cdist &mdash; cdist 6.9.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
6.8.0-21-g9e89088e
6.9.1
</div>

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>24. Reference &mdash; cdist 6.8.0-21-g9e89088e documentation</title>
<title>24. Reference &mdash; cdist 6.9.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
6.8.0-21-g9e89088e
6.9.1
</div>
@ -354,6 +354,7 @@ This directory is referenced by the variable __object (see below).</p>
<li><p>__dog_vdi (<a class="reference external" href="man7/cdist-type__dog_vdi.html">cdist-type__dog_vdi(7)</a>)</p></li>
<li><p>__dot_file (<a class="reference external" href="man7/cdist-type__dot_file.html">cdist-type__dot_file(7)</a>)</p></li>
<li><p>__download (<a class="reference external" href="man7/cdist-type__download.html">cdist-type__download(7)</a>)</p></li>
<li><p>__dpkg_architecture (<a class="reference external" href="man7/cdist-type__dpkg_architecture.html">cdist-type__dpkg_architecture(7)</a>)</p></li>
<li><p>__file_old (<a class="reference external" href="man7/cdist-type__file_old.html">cdist-type__file_old(7)</a>)</p></li>
<li><p>__filesystem (<a class="reference external" href="man7/cdist-type__filesystem.html">cdist-type__filesystem(7)</a>)</p></li>
<li><p>__firewalld_rule (<a class="reference external" href="man7/cdist-type__firewalld_rule.html">cdist-type__firewalld_rule(7)</a>)</p></li>

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>29. Remote exec and copy commands &mdash; cdist 6.8.0-21-g9e89088e documentation</title>
<title>29. Remote exec and copy commands &mdash; cdist 6.9.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
6.8.0-21-g9e89088e
6.9.1
</div>

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>28. Saving output streams &mdash; cdist 6.8.0-21-g9e89088e documentation</title>
<title>28. Saving output streams &mdash; cdist 6.9.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
6.8.0-21-g9e89088e
6.9.1
</div>

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>26. Execution stages &mdash; cdist 6.8.0-21-g9e89088e documentation</title>
<title>26. Execution stages &mdash; cdist 6.9.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
6.8.0-21-g9e89088e
6.9.1
</div>

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>6. Support &mdash; cdist 6.8.0-21-g9e89088e documentation</title>
<title>6. Support &mdash; cdist 6.9.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
6.8.0-21-g9e89088e
6.9.1
</div>

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>21. Trigger &mdash; cdist 6.8.0-21-g9e89088e documentation</title>
<title>21. Trigger &mdash; cdist 6.9.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
6.8.0-21-g9e89088e
6.9.1
</div>

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>31. Troubleshooting &mdash; cdist 6.8.0-21-g9e89088e documentation</title>
<title>31. Troubleshooting &mdash; cdist 6.9.1 documentation</title>
@ -62,7 +62,7 @@
<div class="version">
6.8.0-21-g9e89088e
6.9.1
</div>

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>15. cdist type &mdash; cdist 6.8.0-21-g9e89088e documentation</title>
<title>15. cdist type &mdash; cdist 6.9.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
6.8.0-21-g9e89088e
6.9.1
</div>

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>16. cdist types &mdash; cdist 6.8.0-21-g9e89088e documentation</title>
<title>16. cdist types &mdash; cdist 6.9.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
6.8.0-21-g9e89088e
6.9.1
</div>
@ -152,122 +152,123 @@
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__dog_vdi.html">16.46. __dog_vdi</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__dot_file.html">16.47. __dot_file</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__download.html">16.48. __download</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__file_old.html">16.49. __file_old</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__filesystem.html">16.50. __filesystem</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__firewalld_rule.html">16.51. __firewalld_rule</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__firewalld_start.html">16.52. __firewalld_start</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__git.html">16.53. __git</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__go_get.html">16.54. __go_get</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__golang_from_vendor.html">16.55. __golang_from_vendor</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__grafana_dashboard.html">16.56. __grafana_dashboard</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__group.html">16.57. __group</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__hostname.html">16.58. __hostname</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__hosts.html">16.59. __hosts</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__install_bootloader_grub.html">16.60. __install_bootloader_grub</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__install_chroot_mount.html">16.61. __install_chroot_mount</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__install_chroot_umount.html">16.62. __install_chroot_umount</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__install_config.html">16.63. __install_config</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__install_coreos.html">16.64. __install_coreos</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__install_directory.html">16.65. __install_directory</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__install_file.html">16.66. __install_file</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__install_fstab.html">16.67. __install_fstab</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__install_generate_fstab.html">16.68. __install_generate_fstab</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__install_mkfs.html">16.69. __install_mkfs</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__install_mount.html">16.70. __install_mount</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__install_partition_msdos.html">16.71. __install_partition_msdos</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__install_partition_msdos_apply.html">16.72. __install_partition_msdos_apply</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__install_reboot.html">16.73. __install_reboot</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__install_reset_disk.html">16.74. __install_reset_disk</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__install_stage.html">16.75. __install_stage</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__install_umount.html">16.76. __install_umount</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__iptables_apply.html">16.77. __iptables_apply</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__iptables_rule.html">16.78. __iptables_rule</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__issue.html">16.79. __issue</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__jail.html">16.80. __jail</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__jail_freebsd10.html">16.81. __jail_freebsd10</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__jail_freebsd9.html">16.82. __jail_freebsd9</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__key_value.html">16.83. __key_value</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__keyboard.html">16.84. __keyboard</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__letsencrypt_cert.html">16.85. __letsencrypt_cert</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__line.html">16.86. __line</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__link.html">16.87. __link</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__locale.html">16.88. __locale</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__locale_system.html">16.89. __locale_system</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__motd.html">16.90. __motd</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__mount.html">16.91. __mount</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__mysql_database.html">16.92. __mysql_database</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__mysql_privileges.html">16.93. __mysql_privileges</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__mysql_user.html">16.94. __mysql_user</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__openldap_server.html">16.95. __openldap_server</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__package.html">16.96. __package</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__package_apk.html">16.97. __package_apk</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__package_apt.html">16.98. __package_apt</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__package_dpkg.html">16.99. __package_dpkg</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__package_emerge.html">16.100. __package_emerge</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__package_emerge_dependencies.html">16.101. __package_emerge_dependencies</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__package_luarocks.html">16.102. __package_luarocks</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__package_opkg.html">16.103. __package_opkg</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__package_pacman.html">16.104. __package_pacman</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__package_pip.html">16.105. __package_pip</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__package_pkg_freebsd.html">16.106. __package_pkg_freebsd</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__package_pkg_openbsd.html">16.107. __package_pkg_openbsd</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__package_pkgng_freebsd.html">16.108. __package_pkgng_freebsd</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__package_rubygem.html">16.109. __package_rubygem</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__package_update_index.html">16.110. __package_update_index</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__package_upgrade_all.html">16.111. __package_upgrade_all</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__package_yum.html">16.112. __package_yum</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__package_zypper.html">16.113. __package_zypper</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__pacman_conf.html">16.114. __pacman_conf</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__pacman_conf_integrate.html">16.115. __pacman_conf_integrate</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__pf_apply_anchor.html">16.116. __pf_apply_anchor</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__pf_ruleset.html">16.117. __pf_ruleset</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__ping.html">16.118. __ping</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__postfix.html">16.119. __postfix</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__postfix_master.html">16.120. __postfix_master</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__postfix_postconf.html">16.121. __postfix_postconf</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__postfix_postmap.html">16.122. __postfix_postmap</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__postfix_reload.html">16.123. __postfix_reload</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__postgres_database.html">16.124. __postgres_database</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__postgres_extension.html">16.125. __postgres_extension</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__postgres_role.html">16.126. __postgres_role</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__process.html">16.127. __process</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__prometheus_alertmanager.html">16.128. __prometheus_alertmanager</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__prometheus_exporter.html">16.129. __prometheus_exporter</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__prometheus_server.html">16.130. __prometheus_server</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__pyvenv.html">16.131. __pyvenv</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__qemu_img.html">16.132. __qemu_img</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__rbenv.html">16.133. __rbenv</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__rsync.html">16.134. __rsync</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__rvm.html">16.135. __rvm</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__rvm_gem.html">16.136. __rvm_gem</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__rvm_gemset.html">16.137. __rvm_gemset</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__rvm_ruby.html">16.138. __rvm_ruby</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__sensible_editor.html">16.139. __sensible_editor</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__service.html">16.140. __service</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__ssh_authorized_key.html">16.141. __ssh_authorized_key</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__ssh_authorized_keys.html">16.142. __ssh_authorized_keys</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__ssh_dot_ssh.html">16.143. __ssh_dot_ssh</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__staged_file.html">16.144. __staged_file</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__start_on_boot.html">16.145. __start_on_boot</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__sysctl.html">16.146. __sysctl</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__systemd_service.html">16.147. __systemd_service</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__systemd_unit.html">16.148. __systemd_unit</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__timezone.html">16.149. __timezone</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__uci.html">16.150. __uci</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__uci_section.html">16.151. __uci_section</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__ufw.html">16.152. __ufw</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__ufw_rule.html">16.153. __ufw_rule</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__unpack.html">16.154. __unpack</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__update_alternatives.html">16.155. __update_alternatives</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__user.html">16.156. __user</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__user_groups.html">16.157. __user_groups</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__xymon_apache.html">16.158. __xymon_apache</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__xymon_client.html">16.159. __xymon_client</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__xymon_config.html">16.160. __xymon_config</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__xymon_server.html">16.161. __xymon_server</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__yum_repo.html">16.162. __yum_repo</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__zypper_repo.html">16.163. __zypper_repo</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__zypper_service.html">16.164. __zypper_service</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__dpkg_architecture.html">16.49. __dpkg_architecture</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__file_old.html">16.50. __file_old</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__filesystem.html">16.51. __filesystem</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__firewalld_rule.html">16.52. __firewalld_rule</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__firewalld_start.html">16.53. __firewalld_start</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__git.html">16.54. __git</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__go_get.html">16.55. __go_get</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__golang_from_vendor.html">16.56. __golang_from_vendor</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__grafana_dashboard.html">16.57. __grafana_dashboard</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__group.html">16.58. __group</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__hostname.html">16.59. __hostname</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__hosts.html">16.60. __hosts</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__install_bootloader_grub.html">16.61. __install_bootloader_grub</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__install_chroot_mount.html">16.62. __install_chroot_mount</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__install_chroot_umount.html">16.63. __install_chroot_umount</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__install_config.html">16.64. __install_config</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__install_coreos.html">16.65. __install_coreos</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__install_directory.html">16.66. __install_directory</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__install_file.html">16.67. __install_file</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__install_fstab.html">16.68. __install_fstab</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__install_generate_fstab.html">16.69. __install_generate_fstab</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__install_mkfs.html">16.70. __install_mkfs</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__install_mount.html">16.71. __install_mount</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__install_partition_msdos.html">16.72. __install_partition_msdos</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__install_partition_msdos_apply.html">16.73. __install_partition_msdos_apply</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__install_reboot.html">16.74. __install_reboot</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__install_reset_disk.html">16.75. __install_reset_disk</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__install_stage.html">16.76. __install_stage</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__install_umount.html">16.77. __install_umount</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__iptables_apply.html">16.78. __iptables_apply</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__iptables_rule.html">16.79. __iptables_rule</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__issue.html">16.80. __issue</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__jail.html">16.81. __jail</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__jail_freebsd10.html">16.82. __jail_freebsd10</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__jail_freebsd9.html">16.83. __jail_freebsd9</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__key_value.html">16.84. __key_value</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__keyboard.html">16.85. __keyboard</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__letsencrypt_cert.html">16.86. __letsencrypt_cert</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__line.html">16.87. __line</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__link.html">16.88. __link</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__locale.html">16.89. __locale</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__locale_system.html">16.90. __locale_system</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__motd.html">16.91. __motd</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__mount.html">16.92. __mount</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__mysql_database.html">16.93. __mysql_database</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__mysql_privileges.html">16.94. __mysql_privileges</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__mysql_user.html">16.95. __mysql_user</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__openldap_server.html">16.96. __openldap_server</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__package.html">16.97. __package</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__package_apk.html">16.98. __package_apk</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__package_apt.html">16.99. __package_apt</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__package_dpkg.html">16.100. __package_dpkg</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__package_emerge.html">16.101. __package_emerge</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__package_emerge_dependencies.html">16.102. __package_emerge_dependencies</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__package_luarocks.html">16.103. __package_luarocks</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__package_opkg.html">16.104. __package_opkg</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__package_pacman.html">16.105. __package_pacman</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__package_pip.html">16.106. __package_pip</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__package_pkg_freebsd.html">16.107. __package_pkg_freebsd</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__package_pkg_openbsd.html">16.108. __package_pkg_openbsd</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__package_pkgng_freebsd.html">16.109. __package_pkgng_freebsd</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__package_rubygem.html">16.110. __package_rubygem</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__package_update_index.html">16.111. __package_update_index</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__package_upgrade_all.html">16.112. __package_upgrade_all</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__package_yum.html">16.113. __package_yum</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__package_zypper.html">16.114. __package_zypper</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__pacman_conf.html">16.115. __pacman_conf</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__pacman_conf_integrate.html">16.116. __pacman_conf_integrate</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__pf_apply_anchor.html">16.117. __pf_apply_anchor</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__pf_ruleset.html">16.118. __pf_ruleset</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__ping.html">16.119. __ping</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__postfix.html">16.120. __postfix</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__postfix_master.html">16.121. __postfix_master</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__postfix_postconf.html">16.122. __postfix_postconf</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__postfix_postmap.html">16.123. __postfix_postmap</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__postfix_reload.html">16.124. __postfix_reload</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__postgres_database.html">16.125. __postgres_database</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__postgres_extension.html">16.126. __postgres_extension</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__postgres_role.html">16.127. __postgres_role</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__process.html">16.128. __process</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__prometheus_alertmanager.html">16.129. __prometheus_alertmanager</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__prometheus_exporter.html">16.130. __prometheus_exporter</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__prometheus_server.html">16.131. __prometheus_server</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__pyvenv.html">16.132. __pyvenv</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__qemu_img.html">16.133. __qemu_img</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__rbenv.html">16.134. __rbenv</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__rsync.html">16.135. __rsync</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__rvm.html">16.136. __rvm</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__rvm_gem.html">16.137. __rvm_gem</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__rvm_gemset.html">16.138. __rvm_gemset</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__rvm_ruby.html">16.139. __rvm_ruby</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__sensible_editor.html">16.140. __sensible_editor</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__service.html">16.141. __service</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__ssh_authorized_key.html">16.142. __ssh_authorized_key</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__ssh_authorized_keys.html">16.143. __ssh_authorized_keys</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__ssh_dot_ssh.html">16.144. __ssh_dot_ssh</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__staged_file.html">16.145. __staged_file</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__start_on_boot.html">16.146. __start_on_boot</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__sysctl.html">16.147. __sysctl</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__systemd_service.html">16.148. __systemd_service</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__systemd_unit.html">16.149. __systemd_unit</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__timezone.html">16.150. __timezone</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__uci.html">16.151. __uci</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__uci_section.html">16.152. __uci_section</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__ufw.html">16.153. __ufw</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__ufw_rule.html">16.154. __ufw_rule</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__unpack.html">16.155. __unpack</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__update_alternatives.html">16.156. __update_alternatives</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__user.html">16.157. __user</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__user_groups.html">16.158. __user_groups</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__xymon_apache.html">16.159. __xymon_apache</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__xymon_client.html">16.160. __xymon_client</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__xymon_config.html">16.161. __xymon_config</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__xymon_server.html">16.162. __xymon_server</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__yum_repo.html">16.163. __yum_repo</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__zypper_repo.html">16.164. __zypper_repo</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__zypper_service.html">16.165. __zypper_service</a></li>
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="cdist-explorer.html">17. Explorer</a></li>
@ -401,122 +402,123 @@
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__dog_vdi.html">16.46. __dog_vdi</a></li>
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__dot_file.html">16.47. __dot_file</a></li>
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__download.html">16.48. __download</a></li>
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__file_old.html">16.49. __file_old</a></li>
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__filesystem.html">16.50. __filesystem</a></li>
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__firewalld_rule.html">16.51. __firewalld_rule</a></li>
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__firewalld_start.html">16.52. __firewalld_start</a></li>
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__git.html">16.53. __git</a></li>
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__go_get.html">16.54. __go_get</a></li>
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__golang_from_vendor.html">16.55. __golang_from_vendor</a></li>
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__grafana_dashboard.html">16.56. __grafana_dashboard</a></li>
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__group.html">16.57. __group</a></li>
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__hostname.html">16.58. __hostname</a></li>
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__hosts.html">16.59. __hosts</a></li>
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__install_bootloader_grub.html">16.60. __install_bootloader_grub</a></li>
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__install_chroot_mount.html">16.61. __install_chroot_mount</a></li>
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__install_chroot_umount.html">16.62. __install_chroot_umount</a></li>
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__install_config.html">16.63. __install_config</a></li>
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__install_coreos.html">16.64. __install_coreos</a></li>
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__install_directory.html">16.65. __install_directory</a></li>
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__install_file.html">16.66. __install_file</a></li>
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__install_fstab.html">16.67. __install_fstab</a></li>
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__install_generate_fstab.html">16.68. __install_generate_fstab</a></li>
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__install_mkfs.html">16.69. __install_mkfs</a></li>
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__install_mount.html">16.70. __install_mount</a></li>
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__install_partition_msdos.html">16.71. __install_partition_msdos</a></li>
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__install_partition_msdos_apply.html">16.72. __install_partition_msdos_apply</a></li>
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__install_reboot.html">16.73. __install_reboot</a></li>
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__install_reset_disk.html">16.74. __install_reset_disk</a></li>
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__install_stage.html">16.75. __install_stage</a></li>
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__install_umount.html">16.76. __install_umount</a></li>
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__iptables_apply.html">16.77. __iptables_apply</a></li>
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__iptables_rule.html">16.78. __iptables_rule</a></li>
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__issue.html">16.79. __issue</a></li>
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__jail.html">16.80. __jail</a></li>
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__jail_freebsd10.html">16.81. __jail_freebsd10</a></li>
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__jail_freebsd9.html">16.82. __jail_freebsd9</a></li>
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__key_value.html">16.83. __key_value</a></li>
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__keyboard.html">16.84. __keyboard</a></li>
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__letsencrypt_cert.html">16.85. __letsencrypt_cert</a></li>
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__line.html">16.86. __line</a></li>
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__link.html">16.87. __link</a></li>
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__locale.html">16.88. __locale</a></li>
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__locale_system.html">16.89. __locale_system</a></li>
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__motd.html">16.90. __motd</a></li>
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__mount.html">16.91. __mount</a></li>
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__mysql_database.html">16.92. __mysql_database</a></li>
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__mysql_privileges.html">16.93. __mysql_privileges</a></li>
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__mysql_user.html">16.94. __mysql_user</a></li>
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__openldap_server.html">16.95. __openldap_server</a></li>
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__package.html">16.96. __package</a></li>
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__package_apk.html">16.97. __package_apk</a></li>
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__package_apt.html">16.98. __package_apt</a></li>
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__package_dpkg.html">16.99. __package_dpkg</a></li>
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__package_emerge.html">16.100. __package_emerge</a></li>
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__package_emerge_dependencies.html">16.101. __package_emerge_dependencies</a></li>
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__package_luarocks.html">16.102. __package_luarocks</a></li>
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__package_opkg.html">16.103. __package_opkg</a></li>
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__package_pacman.html">16.104. __package_pacman</a></li>
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__package_pip.html">16.105. __package_pip</a></li>
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__package_pkg_freebsd.html">16.106. __package_pkg_freebsd</a></li>
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__package_pkg_openbsd.html">16.107. __package_pkg_openbsd</a></li>
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__package_pkgng_freebsd.html">16.108. __package_pkgng_freebsd</a></li>
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__package_rubygem.html">16.109. __package_rubygem</a></li>
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__package_update_index.html">16.110. __package_update_index</a></li>
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__package_upgrade_all.html">16.111. __package_upgrade_all</a></li>
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__package_yum.html">16.112. __package_yum</a></li>
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__package_zypper.html">16.113. __package_zypper</a></li>
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__pacman_conf.html">16.114. __pacman_conf</a></li>
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__pacman_conf_integrate.html">16.115. __pacman_conf_integrate</a></li>
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__pf_apply_anchor.html">16.116. __pf_apply_anchor</a></li>
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__pf_ruleset.html">16.117. __pf_ruleset</a></li>
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__ping.html">16.118. __ping</a></li>
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__postfix.html">16.119. __postfix</a></li>
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__postfix_master.html">16.120. __postfix_master</a></li>
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__postfix_postconf.html">16.121. __postfix_postconf</a</