Update cdist beta docs
This commit is contained in:
parent
0b38e55916
commit
29b22bace7
213 changed files with 607 additions and 451 deletions
|
@ -1,16 +1,33 @@
|
|||
cdist-type__letsencrypt_cert(7)
|
||||
===============================
|
||||
|
||||
|
||||
NAME
|
||||
----
|
||||
|
||||
cdist-type__letsencrypt_cert - Get an SSL certificate from Let's Encrypt
|
||||
|
||||
|
||||
DESCRIPTION
|
||||
-----------
|
||||
|
||||
Automatically obtain a Let's Encrypt SSL certificate using Certbot.
|
||||
|
||||
This type attempts to setup automatic renewals always. In many Linux
|
||||
distributions, that is the case out of the box, see:
|
||||
https://certbot.eff.org/docs/using.html#automated-renewals
|
||||
|
||||
For Alpine Linux and Arch Linux, we setup a system-wide cronjob that
|
||||
attempts to renew certificates daily.
|
||||
|
||||
If you are using FreeBSD, we configure periodic(8) as recommended by
|
||||
the port mantainer, so there will be a weekly attempt at renewal.
|
||||
|
||||
If your OS is not mentioned here or on Certbot's docs as having
|
||||
support for automated renewals, please make sure you check your OS
|
||||
and possibly patch this type so the system-wide cronjob is installed.
|
||||
|
||||
|
||||
REQUIRED PARAMETERS
|
||||
-------------------
|
||||
|
||||
|
@ -21,6 +38,7 @@ object id
|
|||
admin-email
|
||||
Where to send Let's Encrypt emails like "certificate needs renewal".
|
||||
|
||||
|
||||
OPTIONAL PARAMETERS
|
||||
-------------------
|
||||
|
||||
|
@ -36,25 +54,68 @@ webroot
|
|||
The path to your webroot, as set up in your webserver config. If this
|
||||
parameter is not present, Certbot will be run in standalone mode.
|
||||
|
||||
|
||||
OPTIONAL MULTIPLE PARAMETERS
|
||||
----------------------------
|
||||
|
||||
renew-hook
|
||||
Renew hook command directly passed to Certbot in cron job.
|
||||
|
||||
domain
|
||||
Domains to be included in the certificate. When specified then object id
|
||||
is not used as a domain.
|
||||
|
||||
deploy-hook
|
||||
Command to be executed only when the certificate associated with this
|
||||
``$__object_id`` is issued or renewed.
|
||||
You can specify it multiple times, but any failure will prevent further
|
||||
commands from being executed.
|
||||
|
||||
For this command, the
|
||||
shell variable ``$RENEWED_LINEAGE`` will point to the
|
||||
config live subdirectory (for example,
|
||||
``/etc/letsencrypt/live/${__object_id}``) containing the
|
||||
new certificates and keys; the shell variable
|
||||
``$RENEWED_DOMAINS`` will contain a space-delimited list
|
||||
of renewed certificate domains (for example,
|
||||
``example.com www.example.com``)
|
||||
|
||||
pre-hook
|
||||
Command to be run in a shell before obtaining any
|
||||
certificates.
|
||||
You can specify it multiple times, but any failure will prevent further
|
||||
commands from being executed.
|
||||
|
||||
Note these run regardless of which certificate is attempted, you may want to
|
||||
manage these system-wide hooks with ``__file`` in
|
||||
``/etc/letsencrypt/renewal-hooks/pre/``.
|
||||
|
||||
Intended primarily for renewal, where it
|
||||
can be used to temporarily shut down a webserver that
|
||||
might conflict with the standalone plugin. This will
|
||||
only be called if a certificate is actually to be
|
||||
obtained/renewed.
|
||||
|
||||
post-hook
|
||||
Command to be run in a shell after attempting to
|
||||
obtain/renew certificates.
|
||||
You can specify it multiple times, but any failure will prevent further
|
||||
commands from being executed.
|
||||
|
||||
Note these run regardless of which certificate was attempted, you may want to
|
||||
manage these system-wide hooks with ``__file`` in
|
||||
``/etc/letsencrypt/renewal-hooks/post/``.
|
||||
|
||||
Can be used to deploy
|
||||
renewed certificates, or to restart any servers that
|
||||
were stopped by --pre-hook. This is only run if an
|
||||
attempt was made to obtain/renew a certificate.
|
||||
|
||||
|
||||
BOOLEAN PARAMETERS
|
||||
------------------
|
||||
|
||||
automatic-renewal
|
||||
Install a cron job, which attempts to renew certificates daily.
|
||||
|
||||
staging
|
||||
Obtain a test certificate from a staging server.
|
||||
|
||||
|
||||
MESSAGES
|
||||
--------
|
||||
|
||||
|
@ -67,6 +128,7 @@ create
|
|||
remove
|
||||
Certificate was removed.
|
||||
|
||||
|
||||
EXAMPLES
|
||||
--------
|
||||
|
||||
|
@ -75,8 +137,7 @@ EXAMPLES
|
|||
# use object id as domain
|
||||
__letsencrypt_cert example.com \
|
||||
--admin-email root@example.com \
|
||||
--automatic-renewal \
|
||||
--renew-hook "service nginx reload" \
|
||||
--deploy-hook "service nginx reload" \
|
||||
--webroot /data/letsencrypt/root
|
||||
|
||||
.. code-block:: sh
|
||||
|
@ -85,11 +146,10 @@ EXAMPLES
|
|||
# and example.com needs to be included again with domain parameter
|
||||
__letsencrypt_cert example.com \
|
||||
--admin-email root@example.com \
|
||||
--automatic-renewal \
|
||||
--domain example.com \
|
||||
--domain foo.example.com \
|
||||
--domain bar.example.com \
|
||||
--renew-hook "service nginx reload" \
|
||||
--deploy-hook "service nginx reload" \
|
||||
--webroot /data/letsencrypt/root
|
||||
|
||||
AUTHORS
|
||||
|
@ -99,11 +159,13 @@ AUTHORS
|
|||
| Kamila Součková <kamila--@--ksp.sk>
|
||||
| Darko Poljak <darko.poljak--@--gmail.com>
|
||||
| Ľubomír Kučera <lubomir.kucera.jr at gmail.com>
|
||||
| Evilham <contact@evilham.com>
|
||||
|
||||
|
||||
COPYING
|
||||
-------
|
||||
|
||||
Copyright \(C) 2017-2018 Nico Schottelius, Kamila Součková, Darko Poljak and
|
||||
Copyright \(C) 2017-2021 Nico Schottelius, Kamila Součková, Darko Poljak and
|
||||
Ľubomír Kučera. You can redistribute it and/or modify it under the terms of
|
||||
the GNU General Public License as published by the Free Software Foundation,
|
||||
either version 3 of the License, or (at your option) any later version.
|
||||
|
|
|
@ -22,6 +22,16 @@ OPTIONAL PARAMETERS
|
|||
name
|
||||
If supplied, use the name and not the object id as the package name.
|
||||
|
||||
extra
|
||||
Extra optional dependencies which should be installed along the selected
|
||||
package. Can be specified multiple times. Multiple extras can be passed
|
||||
in one `--extra` as a comma-separated list.
|
||||
|
||||
Extra optional dependencies will be installed even when the base package
|
||||
is already installed. Notice that the type will not remove installed extras
|
||||
that are not explicitly named for the type because pip does not offer a
|
||||
management for orphaned packages and they may be used by other packages.
|
||||
|
||||
pip
|
||||
Instead of using pip from PATH, use the specific pip path.
|
||||
|
||||
|
@ -46,6 +56,14 @@ EXAMPLES
|
|||
# Use pip in a virtualenv located at /foo/shinken_virtualenv as user foo
|
||||
__package_pip pyro --state present --pip /foo/shinken_virtualenv/bin/pip --runas foo
|
||||
|
||||
# Install package with optional dependencies
|
||||
__package_pip mautrix-telegram --extra speedups --extra webp_convert --extra hq_thumbnails
|
||||
# the extras can also be specified comma-separated
|
||||
__package_pip mautrix-telegram --extra speedups,webp_convert,hq_thumbnails --extra postgres
|
||||
|
||||
# or take all extras
|
||||
__package_pip mautrix-telegram --extra all
|
||||
|
||||
|
||||
SEE ALSO
|
||||
--------
|
||||
|
@ -54,12 +72,13 @@ SEE ALSO
|
|||
|
||||
AUTHORS
|
||||
-------
|
||||
Nico Schottelius <nico-cdist--@--schottelius.org>
|
||||
| Nico Schottelius <nico-cdist--@--schottelius.org>
|
||||
| Matthias Stecher <matthiasstecher--@--gmx.de>
|
||||
|
||||
|
||||
COPYING
|
||||
-------
|
||||
Copyright \(C) 2012 Nico Schottelius. You can redistribute it
|
||||
and/or modify it under the terms of the GNU General Public License as
|
||||
published by the Free Software Foundation, either version 3 of the
|
||||
License, or (at your option) any later version.
|
||||
Copyright \(C) 2012 Nico Schottelius, 2021 Matthias Stecher. You can
|
||||
redistribute it and/or modify it under the terms of the GNU General
|
||||
Public License as published by the Free Software Foundation, either
|
||||
version 3 of the License, or (at your option) any later version.
|
||||
|
|
|
@ -79,6 +79,10 @@ BUGS
|
|||
- ``Include`` directives are ignored.
|
||||
- Config options are not added/removed to/from the config file if their value is
|
||||
the default value.
|
||||
- | The explorer will incorrectly report ``absent`` if OpenSSH internally
|
||||
transforms one value to another (e.g. ``permitrootlogin prohibit-password``
|
||||
is transformed to ``permitrootlogin without-password``).
|
||||
| Workaround: Use the value that OpenSSH uses internally.
|
||||
|
||||
|
||||
AUTHORS
|
||||
|
|
|
@ -764,6 +764,7 @@ div.code-block-caption code {
|
|||
}
|
||||
|
||||
table.highlighttable td.linenos,
|
||||
span.linenos,
|
||||
div.doctest > div.highlight span.gp { /* gp: Generic.Prompt */
|
||||
user-select: none;
|
||||
}
|
||||
|
|
|
@ -285,9 +285,10 @@ var Documentation = {
|
|||
initOnKeyListeners: function() {
|
||||
$(document).keydown(function(event) {
|
||||
var activeElementType = document.activeElement.tagName;
|
||||
// don't navigate when in search box or textarea
|
||||
// don't navigate when in search box, textarea, dropdown or button
|
||||
if (activeElementType !== 'TEXTAREA' && activeElementType !== 'INPUT' && activeElementType !== 'SELECT'
|
||||
&& !event.altKey && !event.ctrlKey && !event.metaKey && !event.shiftKey) {
|
||||
&& activeElementType !== 'BUTTON' && !event.altKey && !event.ctrlKey && !event.metaKey
|
||||
&& !event.shiftKey) {
|
||||
switch (event.keyCode) {
|
||||
case 37: // left
|
||||
var prevHref = $('link[rel="prev"]').prop('href');
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'),
|
||||
VERSION: '6.9.4',
|
||||
VERSION: '6.9.5',
|
||||
LANGUAGE: 'None',
|
||||
COLLAPSE_INDEX: false,
|
||||
BUILDER: 'html',
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
pre { line-height: 125%; margin: 0; }
|
||||
td.linenos pre { color: #000000; background-color: #f0f0f0; padding: 0 5px 0 5px; }
|
||||
span.linenos { color: #000000; background-color: #f0f0f0; padding: 0 5px 0 5px; }
|
||||
td.linenos pre.special { color: #000000; background-color: #ffffc0; padding: 0 5px 0 5px; }
|
||||
span.linenos.special { color: #000000; background-color: #ffffc0; padding: 0 5px 0 5px; }
|
||||
td.linenos pre { color: #000000; background-color: #f0f0f0; padding-left: 5px; padding-right: 5px; }
|
||||
span.linenos { color: #000000; background-color: #f0f0f0; padding-left: 5px; padding-right: 5px; }
|
||||
td.linenos pre.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
|
||||
span.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
|
||||
.highlight .hll { background-color: #ffffcc }
|
||||
.highlight { background: #eeffcc; }
|
||||
.highlight .c { color: #408090; font-style: italic } /* Comment */
|
||||
|
|
|
@ -59,10 +59,10 @@ var Search = {
|
|||
_pulse_status : -1,
|
||||
|
||||
htmlToText : function(htmlString) {
|
||||
var htmlElement = document.createElement('span');
|
||||
htmlElement.innerHTML = htmlString;
|
||||
$(htmlElement).find('.headerlink').remove();
|
||||
docContent = $(htmlElement).find('[role=main]')[0];
|
||||
var virtualDocument = document.implementation.createHTMLDocument('virtual');
|
||||
var htmlElement = $(htmlString, virtualDocument);
|
||||
htmlElement.find('.headerlink').remove();
|
||||
docContent = htmlElement.find('[role=main]')[0];
|
||||
if(docContent === undefined) {
|
||||
console.warn("Content block not found. Sphinx search tries to obtain it " +
|
||||
"via '[role=main]'. Could you check your theme or template.");
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>25. Best practice — cdist 6.9.4 documentation</title>
|
||||
<title>25. Best practice — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>12. Bootstrap — cdist 6.9.4 documentation</title>
|
||||
<title>12. Bootstrap — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>27. Local cache overview — cdist 6.9.4 documentation</title>
|
||||
<title>27. Local cache overview — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>13. Configuration — cdist 6.9.4 documentation</title>
|
||||
<title>13. Configuration — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>17. Explorer — cdist 6.9.4 documentation</title>
|
||||
<title>17. Explorer — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>2. Features — cdist 6.9.4 documentation</title>
|
||||
<title>2. Features — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>30. Hacking — cdist 6.9.4 documentation</title>
|
||||
<title>30. Hacking — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>4. How to install cdist — cdist 6.9.4 documentation</title>
|
||||
<title>4. How to install cdist — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>23. cdist integration / using cdist as library — cdist 6.9.4 documentation</title>
|
||||
<title>23. cdist integration / using cdist as library — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>20. Inventory — cdist 6.9.4 documentation</title>
|
||||
<title>20. Inventory — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>14. Manifest — cdist 6.9.4 documentation</title>
|
||||
<title>14. Manifest — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>18. Messaging — cdist 6.9.4 documentation</title>
|
||||
<title>18. Messaging — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>3. Supported operating systems — cdist 6.9.4 documentation</title>
|
||||
<title>3. Supported operating systems — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>19. Parallelization — cdist 6.9.4 documentation</title>
|
||||
<title>19. Parallelization — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>22. PreOS — cdist 6.9.4 documentation</title>
|
||||
<title>22. PreOS — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>7. Quickstart — cdist 6.9.4 documentation</title>
|
||||
<title>7. Quickstart — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>8. Dive into real world cdist — cdist 6.9.4 documentation</title>
|
||||
<title>8. Dive into real world cdist — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>24. Reference — cdist 6.9.4 documentation</title>
|
||||
<title>24. Reference — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>29. Remote exec and copy commands — cdist 6.9.4 documentation</title>
|
||||
<title>29. Remote exec and copy commands — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>28. Saving output streams — cdist 6.9.4 documentation</title>
|
||||
<title>28. Saving output streams — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>26. Execution stages — cdist 6.9.4 documentation</title>
|
||||
<title>26. Execution stages — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>6. Support — cdist 6.9.4 documentation</title>
|
||||
<title>6. Support — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>21. Trigger — cdist 6.9.4 documentation</title>
|
||||
<title>21. Trigger — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>31. Troubleshooting — cdist 6.9.4 documentation</title>
|
||||
<title>31. Troubleshooting — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -62,7 +62,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>15. cdist type — cdist 6.9.4 documentation</title>
|
||||
<title>15. cdist type — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16. cdist types — cdist 6.9.4 documentation</title>
|
||||
<title>16. cdist types — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>5. How to upgrade cdist — cdist 6.9.4 documentation</title>
|
||||
<title>5. How to upgrade cdist — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>1. Why should I use cdist? — cdist 6.9.4 documentation</title>
|
||||
<title>1. Why should I use cdist? — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>Index — cdist 6.9.4 documentation</title>
|
||||
<title>Index — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -61,7 +61,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>cdist - usable configuration management — cdist 6.9.4 documentation</title>
|
||||
<title>cdist - usable configuration management — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -62,7 +62,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>10. cdist-dump(1) — cdist 6.9.4 documentation</title>
|
||||
<title>10. cdist-dump(1) — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>11. cdist-new-type(1) — cdist 6.9.4 documentation</title>
|
||||
<title>11. cdist-new-type(1) — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>9. cdist(1) — cdist 6.9.4 documentation</title>
|
||||
<title>9. cdist(1) — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.1. cdist-type__acl(7) — cdist 6.9.4 documentation</title>
|
||||
<title>16.1. cdist-type__acl(7) — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.2. cdist-type__debian_backports(7) — cdist 6.9.4 documentation</title>
|
||||
<title>16.2. cdist-type__debian_backports(7) — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.3. cdist-type__apt_default_release(7) — cdist 6.9.4 documentation</title>
|
||||
<title>16.3. cdist-type__apt_default_release(7) — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.4. cdist-type__apt_key(7) — cdist 6.9.4 documentation</title>
|
||||
<title>16.4. cdist-type__apt_key(7) — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.5. cdist-type__apt_key_uri(7) — cdist 6.9.4 documentation</title>
|
||||
<title>16.5. cdist-type__apt_key_uri(7) — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.6. cdist-type__apt_mark(7) — cdist 6.9.4 documentation</title>
|
||||
<title>16.6. cdist-type__apt_mark(7) — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.7. cdist-type__apt_norecommends(7) — cdist 6.9.4 documentation</title>
|
||||
<title>16.7. cdist-type__apt_norecommends(7) — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.8. cdist-type__apt_ppa(7) — cdist 6.9.4 documentation</title>
|
||||
<title>16.8. cdist-type__apt_ppa(7) — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.9. cdist-type__apt_source(7) — cdist 6.9.4 documentation</title>
|
||||
<title>16.9. cdist-type__apt_source(7) — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.10. cdist-type__apt_unattended_upgrades(7) — cdist 6.9.4 documentation</title>
|
||||
<title>16.10. cdist-type__apt_unattended_upgrades(7) — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.11. cdist-type__apt_update_index(7) — cdist 6.9.4 documentation</title>
|
||||
<title>16.11. cdist-type__apt_update_index(7) — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.12. cdist-type__block(7) — cdist 6.9.4 documentation</title>
|
||||
<title>16.12. cdist-type__block(7) — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.13. cdist-type__ccollect_source(7) — cdist 6.9.4 documentation</title>
|
||||
<title>16.13. cdist-type__ccollect_source(7) — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.14. cdist-type__cdist(7) — cdist 6.9.4 documentation</title>
|
||||
<title>16.14. cdist-type__cdist(7) — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.15. cdist-type__cdist_preos_trigger(7) — cdist 6.9.4 documentation</title>
|
||||
<title>16.15. cdist-type__cdist_preos_trigger(7) — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.16. cdist-type__cdistmarker(7) — cdist 6.9.4 documentation</title>
|
||||
<title>16.16. cdist-type__cdistmarker(7) — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.17. cdist-type__check_messages(7) — cdist 6.9.4 documentation</title>
|
||||
<title>16.17. cdist-type__check_messages(7) — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.18. cdist-type__chroot_mount(7) — cdist 6.9.4 documentation</title>
|
||||
<title>16.18. cdist-type__chroot_mount(7) — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.19. cdist-type__chroot_umount(7) — cdist 6.9.4 documentation</title>
|
||||
<title>16.19. cdist-type__chroot_umount(7) — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.20. cdist-type__clean_path(7) — cdist 6.9.4 documentation</title>
|
||||
<title>16.20. cdist-type__clean_path(7) — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.21. cdist-type__config_file(7) — cdist 6.9.4 documentation</title>
|
||||
<title>16.21. cdist-type__config_file(7) — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.22. cdist-type__consul(7) — cdist 6.9.4 documentation</title>
|
||||
<title>16.22. cdist-type__consul(7) — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.23. cdist-type__consul_agent(7) — cdist 6.9.4 documentation</title>
|
||||
<title>16.23. cdist-type__consul_agent(7) — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.24. cdist-type__consul_check(7) — cdist 6.9.4 documentation</title>
|
||||
<title>16.24. cdist-type__consul_check(7) — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.25. cdist-type__consul_reload(7) — cdist 6.9.4 documentation</title>
|
||||
<title>16.25. cdist-type__consul_reload(7) — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.26. cdist-type__consul_service(7) — cdist 6.9.4 documentation</title>
|
||||
<title>16.26. cdist-type__consul_service(7) — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.27. cdist-type__consul_template(7) — cdist 6.9.4 documentation</title>
|
||||
<title>16.27. cdist-type__consul_template(7) — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.28. cdist-type__consul_template_template(7) — cdist 6.9.4 documentation</title>
|
||||
<title>16.28. cdist-type__consul_template_template(7) — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.29. cdist-type__consul_watch_checks(7) — cdist 6.9.4 documentation</title>
|
||||
<title>16.29. cdist-type__consul_watch_checks(7) — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.30. cdist-type__consul_watch_event(7) — cdist 6.9.4 documentation</title>
|
||||
<title>16.30. cdist-type__consul_watch_event(7) — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.31. cdist-type__consul_watch_key(7) — cdist 6.9.4 documentation</title>
|
||||
<title>16.31. cdist-type__consul_watch_key(7) — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.32. cdist-type__consul_watch_keyprefix(7) — cdist 6.9.4 documentation</title>
|
||||
<title>16.32. cdist-type__consul_watch_keyprefix(7) — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.33. cdist-type__consul_watch_nodes(7) — cdist 6.9.4 documentation</title>
|
||||
<title>16.33. cdist-type__consul_watch_nodes(7) — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.34. cdist-type__consul_watch_service(7) — cdist 6.9.4 documentation</title>
|
||||
<title>16.34. cdist-type__consul_watch_service(7) — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.35. cdist-type__consul_watch_services(7) — cdist 6.9.4 documentation</title>
|
||||
<title>16.35. cdist-type__consul_watch_services(7) — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.36. cdist-type__cron(7) — cdist 6.9.4 documentation</title>
|
||||
<title>16.36. cdist-type__cron(7) — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.37. cdist-type__daemontools(7) — cdist 6.9.4 documentation</title>
|
||||
<title>16.37. cdist-type__daemontools(7) — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.38. cdist-type__daemontools_service(7) — cdist 6.9.4 documentation</title>
|
||||
<title>16.38. cdist-type__daemontools_service(7) — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.39. cdist-type__debconf_set_selections(7) — cdist 6.9.4 documentation</title>
|
||||
<title>16.39. cdist-type__debconf_set_selections(7) — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.40. cdist-type__directory(7) — cdist 6.9.4 documentation</title>
|
||||
<title>16.40. cdist-type__directory(7) — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.41. cdist-type__docker(7) — cdist 6.9.4 documentation</title>
|
||||
<title>16.41. cdist-type__docker(7) — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.42. cdist-type__docker_compose(7) — cdist 6.9.4 documentation</title>
|
||||
<title>16.42. cdist-type__docker_compose(7) — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.43. cdist-type__docker_config(7) — cdist 6.9.4 documentation</title>
|
||||
<title>16.43. cdist-type__docker_config(7) — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.44. cdist-type__docker_secret(7) — cdist 6.9.4 documentation</title>
|
||||
<title>16.44. cdist-type__docker_secret(7) — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.45. cdist-type__docker_stack(7) — cdist 6.9.4 documentation</title>
|
||||
<title>16.45. cdist-type__docker_stack(7) — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.46. cdist-type__docker_swarm(7) — cdist 6.9.4 documentation</title>
|
||||
<title>16.46. cdist-type__docker_swarm(7) — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.47. cdist-type__dog_vdi(7) — cdist 6.9.4 documentation</title>
|
||||
<title>16.47. cdist-type__dog_vdi(7) — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.48. cdist-type__dot_file(7) — cdist 6.9.4 documentation</title>
|
||||
<title>16.48. cdist-type__dot_file(7) — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.49. cdist-type__download(7) — cdist 6.9.4 documentation</title>
|
||||
<title>16.49. cdist-type__download(7) — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.50. cdist-type__dpkg_architecture(7) — cdist 6.9.4 documentation</title>
|
||||
<title>16.50. cdist-type__dpkg_architecture(7) — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.51. cdist-type__file(7) — cdist 6.9.4 documentation</title>
|
||||
<title>16.51. cdist-type__file(7) — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.52. cdist-type__filesystem(7) — cdist 6.9.4 documentation</title>
|
||||
<title>16.52. cdist-type__filesystem(7) — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.53. cdist-type__firewalld_rule(7) — cdist 6.9.4 documentation</title>
|
||||
<title>16.53. cdist-type__firewalld_rule(7) — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.54. cdist-type__firewalld_start(7) — cdist 6.9.4 documentation</title>
|
||||
<title>16.54. cdist-type__firewalld_start(7) — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.55. cdist-type__git(7) — cdist 6.9.4 documentation</title>
|
||||
<title>16.55. cdist-type__git(7) — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.56. cdist-type__go_get(7) — cdist 6.9.4 documentation</title>
|
||||
<title>16.56. cdist-type__go_get(7) — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.57. cdist-type__golang_from_vendor(7) — cdist 6.9.4 documentation</title>
|
||||
<title>16.57. cdist-type__golang_from_vendor(7) — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.58. cdist-type__grafana_dashboard(7) — cdist 6.9.4 documentation</title>
|
||||
<title>16.58. cdist-type__grafana_dashboard(7) — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.59. cdist-type__group(7) — cdist 6.9.4 documentation</title>
|
||||
<title>16.59. cdist-type__group(7) — cdist 6.9.5 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.9.4
|
||||
6.9.5
|
||||
</div>
|
||||
|
||||
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue