Update beta branch

This commit is contained in:
Darko Poljak 2019-05-09 19:38:51 +02:00
parent ea42d431c6
commit 4b4ee6af30
192 changed files with 665 additions and 383 deletions

View File

@ -224,3 +224,140 @@ in the repository for such content: It allows you to
easily distinguish what is used by cdist and what is not
and also to store all important files in one
repository.
Perils of CDIST_ORDER_DEPENDENCY
--------------------------------
With CDIST_ORDER_DEPENDENCY all types are executed in the order in which they
are created in the manifest. The current created object automatically depends
on the previously created object.
It essentially helps you to build up blocks of code that build upon each other
(like first creating the directory xyz than the file below the directory).
This can be helpful, but it can also be the source of *evil*.
CDIST_ORDER_DEPENDENCY easily causes unobvious dependency cycles
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Let's see an example. Suppose you have special init manifest where among other
things you are assuring that remote host has packages `sudo` and `curl`
installed.
**init1**
.. code-block:: sh
CDIST_ORDER_DEPENDENCY=1
export CDIST_ORDER_DEPENDENCY
for p in sudo curl
do
__package "${p}"
done
Then you have some other special init manifest where among other things you are
assuring `sudo` package is installed.
**init2**
.. code-block:: sh
CDIST_ORDER_DEPENDENCY=1
export CDIST_ORDER_DEPENDENCY
__package sudo
Then you have third init manifest where you combine those two init manifests,
by including them:
**init**
.. code-block:: sh
sh -e "$__manifest/init1"
sh -e "$__manifest/init2"
The resulting init manifest is then equal to:
.. code-block:: sh
CDIST_ORDER_DEPENDENCY=1
export CDIST_ORDER_DEPENDENCY
for p in sudo curl
do
__package "${p}"
done
CDIST_ORDER_DEPENDENCY=1
export CDIST_ORDER_DEPENDENCY
__package sudo
In the end you get the following dependencies:
* `__package/curl` depends on `__package/sudo`
* `__package/sudo` depends on `__package/curl`
And here you have a circular dependency!
In the real world manifest can be quite complex, dependencies can become
complicated and circual dependencies are not so obvious. Resolving it can
become cumbersome.
**Practical solution?**
Instead of managing complex init manifests you can write custom types.
Each custom type can do one thing, it has well defined dependencies that will
not leak into init manifest. In custom type you can also add special explorers
and gencode.
Then, in init manifest you combine your complex types. It is:
* cleaner
* easier to follow
* easier to maintain
* easier to debug.
CDIST_ORDER_DEPENDENCY kills parallelization
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Suppose you have defined CDIST_ORDER_DEPENDENCY and then, among other things,
you specify creation of three, by nature independent, files.
**init**
.. code-block:: sh
CDIST_ORDER_DEPENDENCY=1
export CDIST_ORDER_DEPENDENCY
...
__file /tmp/file1
__file /tmp/file2
__file /tmp/file3
...
Due to defined CDIST_ORDER_DEPENDENCY cdist will execute them in specified order.
It is better to use CDIST_ORDER_DEPENDENCY in well defined blocks:
**init**
.. code-block:: sh
CDIST_ORDER_DEPENDENCY=1
export CDIST_ORDER_DEPENDENCY
...
unset CDIST_ORDER_DEPENDENCY
__file /tmp/file1
__file /tmp/file2
__file /tmp/file3
CDIST_ORDER_DEPENDENCY=1
export CDIST_ORDER_DEPENDENCY
...
unset CDIST_ORDER_DEPENDENCY

View File

@ -43,19 +43,36 @@ To install cdist, execute the following commands:
From version 4.2.0 cdist tags and releases are signed.
You can get GPG public key used for signing `here <_static/pgp-key-EFD2AE4EC36B6901.asc>`_.
You can also get cdist from `github mirror <https://github.com/ungleich/cdist>`_.
To install cdist with distutils from cloned repository, first you have to
create version.py:
.. code-block:: sh
make version
./bin/build-helper version
Then, as usual, you execute the following command:
Then you install it with:
.. code-block:: sh
make install
or with:
.. code-block:: sh
make install-user
to install it into user *site-packages* directory.
Or directly with distutils:
.. code-block:: sh
python setup.py install
Note that `bin/build-helper` script is intended for cdist maintainers.
Available versions in git
^^^^^^^^^^^^^^^^^^^^^^^^^

View File

@ -163,6 +163,8 @@ automatically depends on the previously created object.
It essentially helps you to build up blocks of code that build upon each other
(like first creating the directory xyz than the file below the directory).
Read also about `perils of CDIST_ORDER_DEPENDENCY <cdist-best-practice.html#perils-of-cdist-order-dependency>`_.
Overrides
---------

View File

@ -54,9 +54,7 @@ we can use cdist to configure it. You can copy and paste the following
code into your shell to get started and configure localhost::
# Get cdist
# Mirrors can be found on
# http://www.nico.schottelius.org/software/cdist/install/#index2h4
git clone git://code.ungleich.ch/ungleich-public/cdist
git clone git@code.ungleich.ch:ungleich-public/cdist.git
# Create manifest (maps configuration to host(s)
cd cdist

View File

@ -433,6 +433,7 @@ CDIST_OVERRIDE
CDIST_ORDER_DEPENDENCY
Create dependencies based on the execution order (see `cdist manifest <cdist-manifest.html>`_).
Read also about `perils of CDIST_ORDER_DEPENDENCY <cdist-best-practice.html#perils-of-cdist-order-dependency>`_.
CDIST_REMOTE_EXEC
Use this command for remote execution (should behave like ssh).

View File

@ -30,7 +30,7 @@ username
source
Select the source from which to clone cdist from.
Defaults to "git://code.ungleich.ch/ungleich-public/cdist.git".
Defaults to "git@code.ungleich.ch:ungleich-public/cdist.git".
branch
@ -47,7 +47,7 @@ EXAMPLES
__cdist /home/cdist/cdist
# Use alternative source
__cdist --source "git://code.ungleich.ch/ungleich-public/cdist" /home/cdist/cdist
__cdist --source "git@code.ungleich.ch:ungleich-public/cdist.git" /home/cdist/cdist
AUTHORS

View File

@ -44,7 +44,7 @@ EXAMPLES
__git /home/services/dokuwiki --source git://github.com/splitbrain/dokuwiki.git
# Checkout cdist, stay on branch 2.1
__git /home/nico/cdist --source git://code.ungleich.ch/ungleich-public/cdist.git --branch 2.1
__git /home/nico/cdist --source git@code.ungleich.ch:ungleich-public/cdist.git --branch 2.1
AUTHORS

View File

@ -1,6 +1,6 @@
var DOCUMENTATION_OPTIONS = {
URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'),
VERSION: '5.0.0',
VERSION: '5.0.1',
LANGUAGE: 'None',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>24. Best practice &mdash; cdist 5.0.0 documentation</title>
<title>24. Best practice &mdash; cdist 5.0.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
5.0.0
5.0.1
</div>
@ -122,6 +122,11 @@
<li class="toctree-l2"><a class="reference internal" href="#templating">24.8. Templating</a></li>
<li class="toctree-l2"><a class="reference internal" href="#testing-a-new-type">24.9. Testing a new type</a></li>
<li class="toctree-l2"><a class="reference internal" href="#other-content-in-cdist-repository">24.10. Other content in cdist repository</a></li>
<li class="toctree-l2"><a class="reference internal" href="#perils-of-cdist-order-dependency">24.11. Perils of CDIST_ORDER_DEPENDENCY</a><ul>
<li class="toctree-l3"><a class="reference internal" href="#cdist-order-dependency-easily-causes-unobvious-dependency-cycles">24.11.1. CDIST_ORDER_DEPENDENCY easily causes unobvious dependency cycles</a></li>
<li class="toctree-l3"><a class="reference internal" href="#cdist-order-dependency-kills-parallelization">24.11.2. CDIST_ORDER_DEPENDENCY kills parallelization</a></li>
</ul>
</li>
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="cdist-stages.html">25. Execution stages</a></li>
@ -418,6 +423,117 @@ easily distinguish what is used by cdist and what is not
and also to store all important files in one
repository.</p>
</div>
<div class="section" id="perils-of-cdist-order-dependency">
<h2>24.11. Perils of CDIST_ORDER_DEPENDENCY<a class="headerlink" href="#perils-of-cdist-order-dependency" title="Permalink to this headline"></a></h2>
<p>With CDIST_ORDER_DEPENDENCY all types are executed in the order in which they
are created in the manifest. The current created object automatically depends
on the previously created object.</p>
<p>It essentially helps you to build up blocks of code that build upon each other
(like first creating the directory xyz than the file below the directory).</p>
<p>This can be helpful, but it can also be the source of <em>evil</em>.</p>
<div class="section" id="cdist-order-dependency-easily-causes-unobvious-dependency-cycles">
<h3>24.11.1. CDIST_ORDER_DEPENDENCY easily causes unobvious dependency cycles<a class="headerlink" href="#cdist-order-dependency-easily-causes-unobvious-dependency-cycles" title="Permalink to this headline"></a></h3>
<p>Let's see an example. Suppose you have special init manifest where among other
things you are assuring that remote host has packages <cite>sudo</cite> and <cite>curl</cite>
installed.</p>
<p><strong>init1</strong></p>
<div class="highlight-sh notranslate"><div class="highlight"><pre><span></span><span class="nv">CDIST_ORDER_DEPENDENCY</span><span class="o">=</span><span class="m">1</span>
<span class="nb">export</span> CDIST_ORDER_DEPENDENCY
<span class="k">for</span> p in sudo curl
<span class="k">do</span>
__package <span class="s2">&quot;</span><span class="si">${</span><span class="nv">p</span><span class="si">}</span><span class="s2">&quot;</span>
<span class="k">done</span>
</pre></div>
</div>
<p>Then you have some other special init manifest where among other things you are
assuring <cite>sudo</cite> package is installed.</p>
<p><strong>init2</strong></p>
<div class="highlight-sh notranslate"><div class="highlight"><pre><span></span><span class="nv">CDIST_ORDER_DEPENDENCY</span><span class="o">=</span><span class="m">1</span>
<span class="nb">export</span> CDIST_ORDER_DEPENDENCY
__package sudo
</pre></div>
</div>
<p>Then you have third init manifest where you combine those two init manifests,
by including them:</p>
<p><strong>init</strong></p>
<div class="highlight-sh notranslate"><div class="highlight"><pre><span></span>sh -e <span class="s2">&quot;</span><span class="nv">$__manifest</span><span class="s2">/init1&quot;</span>
sh -e <span class="s2">&quot;</span><span class="nv">$__manifest</span><span class="s2">/init2&quot;</span>
</pre></div>
</div>
<p>The resulting init manifest is then equal to:</p>
<div class="highlight-sh notranslate"><div class="highlight"><pre><span></span><span class="nv">CDIST_ORDER_DEPENDENCY</span><span class="o">=</span><span class="m">1</span>
<span class="nb">export</span> CDIST_ORDER_DEPENDENCY
<span class="k">for</span> p in sudo curl
<span class="k">do</span>
__package <span class="s2">&quot;</span><span class="si">${</span><span class="nv">p</span><span class="si">}</span><span class="s2">&quot;</span>
<span class="k">done</span>
<span class="nv">CDIST_ORDER_DEPENDENCY</span><span class="o">=</span><span class="m">1</span>
<span class="nb">export</span> CDIST_ORDER_DEPENDENCY
__package sudo
</pre></div>
</div>
<p>In the end you get the following dependencies:</p>
<ul class="simple">
<li><cite>__package/curl</cite> depends on <cite>__package/sudo</cite></li>
<li><cite>__package/sudo</cite> depends on <cite>__package/curl</cite></li>
</ul>
<p>And here you have a circular dependency!</p>
<p>In the real world manifest can be quite complex, dependencies can become
complicated and circual dependencies are not so obvious. Resolving it can
become cumbersome.</p>
<p><strong>Practical solution?</strong></p>
<p>Instead of managing complex init manifests you can write custom types.
Each custom type can do one thing, it has well defined dependencies that will
not leak into init manifest. In custom type you can also add special explorers
and gencode.</p>
<p>Then, in init manifest you combine your complex types. It is:</p>
<ul class="simple">
<li>cleaner</li>
<li>easier to follow</li>
<li>easier to maintain</li>
<li>easier to debug.</li>
</ul>
</div>
<div class="section" id="cdist-order-dependency-kills-parallelization">
<h3>24.11.2. CDIST_ORDER_DEPENDENCY kills parallelization<a class="headerlink" href="#cdist-order-dependency-kills-parallelization" title="Permalink to this headline"></a></h3>
<p>Suppose you have defined CDIST_ORDER_DEPENDENCY and then, among other things,
you specify creation of three, by nature independent, files.</p>
<p><strong>init</strong></p>
<div class="highlight-sh notranslate"><div class="highlight"><pre><span></span><span class="nv">CDIST_ORDER_DEPENDENCY</span><span class="o">=</span><span class="m">1</span>
<span class="nb">export</span> CDIST_ORDER_DEPENDENCY
...
__file /tmp/file1
__file /tmp/file2
__file /tmp/file3
...
</pre></div>
</div>
<p>Due to defined CDIST_ORDER_DEPENDENCY cdist will execute them in specified order.
It is better to use CDIST_ORDER_DEPENDENCY in well defined blocks:</p>
<p><strong>init</strong></p>
<div class="highlight-sh notranslate"><div class="highlight"><pre><span></span><span class="nv">CDIST_ORDER_DEPENDENCY</span><span class="o">=</span><span class="m">1</span>
<span class="nb">export</span> CDIST_ORDER_DEPENDENCY
...
<span class="nb">unset</span> CDIST_ORDER_DEPENDENCY
__file /tmp/file1
__file /tmp/file2
__file /tmp/file3
<span class="nv">CDIST_ORDER_DEPENDENCY</span><span class="o">=</span><span class="m">1</span>
<span class="nb">export</span> CDIST_ORDER_DEPENDENCY
...
<span class="nb">unset</span> CDIST_ORDER_DEPENDENCY
</pre></div>
</div>
</div>
</div>
</div>

View File

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

View File

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

View File

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

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>16. Explorer &mdash; cdist 5.0.0 documentation</title>
<title>16. Explorer &mdash; cdist 5.0.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
5.0.0
5.0.1
</div>

View File

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

View File

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

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>4. How to install cdist &mdash; cdist 5.0.0 documentation</title>
<title>4. How to install cdist &mdash; cdist 5.0.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
5.0.0
5.0.1
</div>
@ -240,15 +240,26 @@ immediately.</p>
</div>
<p>From version 4.2.0 cdist tags and releases are signed.
You can get GPG public key used for signing <a class="reference external" href="_static/pgp-key-EFD2AE4EC36B6901.asc">here</a>.</p>
<p>You can also get cdist from <a class="reference external" href="https://github.com/ungleich/cdist">github mirror</a>.</p>
<p>To install cdist with distutils from cloned repository, first you have to
create version.py:</p>
<div class="highlight-sh notranslate"><div class="highlight"><pre><span></span>make version
<div class="highlight-sh notranslate"><div class="highlight"><pre><span></span>./bin/build-helper version
</pre></div>
</div>
<p>Then, as usual, you execute the following command:</p>
<p>Then you install it with:</p>
<div class="highlight-sh notranslate"><div class="highlight"><pre><span></span>make install
</pre></div>
</div>
<p>or with:</p>
<div class="highlight-sh notranslate"><div class="highlight"><pre><span></span>make install-user
</pre></div>
</div>
<p>to install it into user <em>site-packages</em> directory.
Or directly with distutils:</p>
<div class="highlight-sh notranslate"><div class="highlight"><pre><span></span>python setup.py install
</pre></div>
</div>
<p>Note that <cite>bin/build-helper</cite> script is intended for cdist maintainers.</p>
<div class="section" id="available-versions-in-git">
<h4>4.2.1.1. Available versions in git<a class="headerlink" href="#available-versions-in-git" title="Permalink to this headline"></a></h4>
<blockquote>

View File

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

View File

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

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>13. Manifest &mdash; cdist 5.0.0 documentation</title>
<title>13. Manifest &mdash; cdist 5.0.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
5.0.0
5.0.1
</div>
@ -331,6 +331,7 @@ When cdist sees that this variable is setup, the current created object
automatically depends on the previously created object.</p>
<p>It essentially helps you to build up blocks of code that build upon each other
(like first creating the directory xyz than the file below the directory).</p>
<p>Read also about <a class="reference external" href="cdist-best-practice.html#perils-of-cdist-order-dependency">perils of CDIST_ORDER_DEPENDENCY</a>.</p>
</div>
<div class="section" id="overrides">
<h2>13.7. Overrides<a class="headerlink" href="#overrides" title="Permalink to this headline"></a></h2>

View File

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

View File

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

View File

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

View File

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

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>7. Quickstart &mdash; cdist 5.0.0 documentation</title>
<title>7. Quickstart &mdash; cdist 5.0.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
5.0.0
5.0.1
</div>
@ -232,9 +232,7 @@ documentation.</p>
we can use cdist to configure it. You can copy and paste the following
code into your shell to get started and configure localhost:</p>
<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="c1"># Get cdist</span>
<span class="c1"># Mirrors can be found on</span>
<span class="c1"># http://www.nico.schottelius.org/software/cdist/install/#index2h4</span>
<span class="n">git</span> <span class="n">clone</span> <span class="n">git</span><span class="p">:</span><span class="o">//</span><span class="n">code</span><span class="o">.</span><span class="n">ungleich</span><span class="o">.</span><span class="n">ch</span><span class="o">/</span><span class="n">ungleich</span><span class="o">-</span><span class="n">public</span><span class="o">/</span><span class="n">cdist</span>
<span class="n">git</span> <span class="n">clone</span> <span class="n">git</span><span class="nd">@code</span><span class="o">.</span><span class="n">ungleich</span><span class="o">.</span><span class="n">ch</span><span class="p">:</span><span class="n">ungleich</span><span class="o">-</span><span class="n">public</span><span class="o">/</span><span class="n">cdist</span><span class="o">.</span><span class="n">git</span>
<span class="c1"># Create manifest (maps configuration to host(s)</span>
<span class="n">cd</span> <span class="n">cdist</span>

View File

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

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>23. Reference &mdash; cdist 5.0.0 documentation</title>
<title>23. Reference &mdash; cdist 5.0.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
5.0.0
5.0.1
</div>
@ -628,7 +628,8 @@ not specified otherwise while invoking it.</p>
<dt>CDIST_OVERRIDE</dt>
<dd>Allow overwriting type parameters (see <a class="reference external" href="cdist-manifest.html">cdist manifest</a>).</dd>
<dt>CDIST_ORDER_DEPENDENCY</dt>
<dd>Create dependencies based on the execution order (see <a class="reference external" href="cdist-manifest.html">cdist manifest</a>).</dd>
<dd>Create dependencies based on the execution order (see <a class="reference external" href="cdist-manifest.html">cdist manifest</a>).
Read also about <a class="reference external" href="cdist-best-practice.html#perils-of-cdist-order-dependency">perils of CDIST_ORDER_DEPENDENCY</a>.</dd>
<dt>CDIST_REMOTE_EXEC</dt>
<dd>Use this command for remote execution (should behave like ssh).</dd>
<dt>CDIST_REMOTE_COPY</dt>

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>5. How to upgrade cdist &mdash; cdist 5.0.0 documentation</title>
<title>5. How to upgrade cdist &mdash; cdist 5.0.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
5.0.0
5.0.1
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>1. Why should I use cdist? &mdash; cdist 5.0.0 documentation</title>
<title>1. Why should I use cdist? &mdash; cdist 5.0.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
5.0.0
5.0.1
</div>

View File

@ -9,7 +9,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Index &mdash; cdist 5.0.0 documentation</title>
<title>Index &mdash; cdist 5.0.1 documentation</title>
@ -62,7 +62,7 @@
<div class="version">
5.0.0
5.0.1
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>cdist - usable configuration management &mdash; cdist 5.0.0 documentation</title>
<title>cdist - usable configuration management &mdash; cdist 5.0.1 documentation</title>
@ -62,7 +62,7 @@
<div class="version">
5.0.0
5.0.1
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>10. cdist-dump(1) &mdash; cdist 5.0.0 documentation</title>
<title>10. cdist-dump(1) &mdash; cdist 5.0.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
5.0.0
5.0.1
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>9. cdist(1) &mdash; cdist 5.0.0 documentation</title>
<title>9. cdist(1) &mdash; cdist 5.0.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
5.0.0
5.0.1
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>15.1. cdist-type__acl(7) &mdash; cdist 5.0.0 documentation</title>
<title>15.1. cdist-type__acl(7) &mdash; cdist 5.0.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
5.0.0
5.0.1
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>15.2. cdist-type__apt_default_release(7) &mdash; cdist 5.0.0 documentation</title>
<title>15.2. cdist-type__apt_default_release(7) &mdash; cdist 5.0.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
5.0.0
5.0.1
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>15.3. cdist-type__apt_key(7) &mdash; cdist 5.0.0 documentation</title>
<title>15.3. cdist-type__apt_key(7) &mdash; cdist 5.0.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
5.0.0
5.0.1
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>15.4. cdist-type__apt_key_uri(7) &mdash; cdist 5.0.0 documentation</title>
<title>15.4. cdist-type__apt_key_uri(7) &mdash; cdist 5.0.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
5.0.0
5.0.1
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>15.5. cdist-type__apt_mark(7) &mdash; cdist 5.0.0 documentation</title>
<title>15.5. cdist-type__apt_mark(7) &mdash; cdist 5.0.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
5.0.0
5.0.1
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>15.6. cdist-type__apt_norecommends(7) &mdash; cdist 5.0.0 documentation</title>
<title>15.6. cdist-type__apt_norecommends(7) &mdash; cdist 5.0.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
5.0.0
5.0.1
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>15.7. cdist-type__apt_ppa(7) &mdash; cdist 5.0.0 documentation</title>
<title>15.7. cdist-type__apt_ppa(7) &mdash; cdist 5.0.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
5.0.0
5.0.1
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>15.8. cdist-type__apt_source(7) &mdash; cdist 5.0.0 documentation</title>
<title>15.8. cdist-type__apt_source(7) &mdash; cdist 5.0.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
5.0.0
5.0.1
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>15.9. cdist-type__apt_update_index(7) &mdash; cdist 5.0.0 documentation</title>
<title>15.9. cdist-type__apt_update_index(7) &mdash; cdist 5.0.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
5.0.0
5.0.1
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>15.10. cdist-type__block(7) &mdash; cdist 5.0.0 documentation</title>
<title>15.10. cdist-type__block(7) &mdash; cdist 5.0.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
5.0.0
5.0.1
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>15.11. cdist-type__ccollect_source(7) &mdash; cdist 5.0.0 documentation</title>
<title>15.11. cdist-type__ccollect_source(7) &mdash; cdist 5.0.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
5.0.0
5.0.1
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>15.12. cdist-type__cdist(7) &mdash; cdist 5.0.0 documentation</title>
<title>15.12. cdist-type__cdist(7) &mdash; cdist 5.0.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
5.0.0
5.0.1
</div>
@ -371,7 +371,7 @@ other hosts.</p>
Defaults to &quot;cdist&quot;.</dd>
<dt>source</dt>
<dd>Select the source from which to clone cdist from.
Defaults to &quot;git://code.ungleich.ch/ungleich-public/cdist.git&quot;.</dd>
Defaults to &quot;<a class="reference external" href="mailto:git&#37;&#52;&#48;code&#46;ungleich&#46;ch">git<span>&#64;</span>code<span>&#46;</span>ungleich<span>&#46;</span>ch</a>:ungleich-public/cdist.git&quot;.</dd>
<dt>branch</dt>
<dd>Select the branch to checkout from.
Defaults to &quot;master&quot;.</dd>
@ -383,7 +383,7 @@ Defaults to &quot;master&quot;.</dd>
__cdist /home/cdist/cdist
<span class="c1"># Use alternative source</span>
__cdist --source <span class="s2">&quot;git://code.ungleich.ch/ungleich-public/cdist&quot;</span> /home/cdist/cdist
__cdist --source <span class="s2">&quot;git@code.ungleich.ch:ungleich-public/cdist.git&quot;</span> /home/cdist/cdist
</pre></div>
</div>
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>15.13. cdist-type__cdist_preos_trigger(7) &mdash; cdist 5.0.0 documentation</title>
<title>15.13. cdist-type__cdist_preos_trigger(7) &mdash; cdist 5.0.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
5.0.0
5.0.1
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>15.14. cdist-type__cdistmarker(7) &mdash; cdist 5.0.0 documentation</title>
<title>15.14. cdist-type__cdistmarker(7) &mdash; cdist 5.0.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
5.0.0
5.0.1
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>15.15. cdist-type__check_messages(7) &mdash; cdist 5.0.0 documentation</title>
<title>15.15. cdist-type__check_messages(7) &mdash; cdist 5.0.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
5.0.0
5.0.1
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>15.16. cdist-type__chroot_mount(7) &mdash; cdist 5.0.0 documentation</title>
<title>15.16. cdist-type__chroot_mount(7) &mdash; cdist 5.0.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
5.0.0
5.0.1
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>15.17. cdist-type__chroot_umount(7) &mdash; cdist 5.0.0 documentation</title>
<title>15.17. cdist-type__chroot_umount(7) &mdash; cdist 5.0.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
5.0.0
5.0.1
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>15.18. cdist-type__clean_path(7) &mdash; cdist 5.0.0 documentation</title>
<title>15.18. cdist-type__clean_path(7) &mdash; cdist 5.0.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
5.0.0
5.0.1
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>15.19. cdist-type__config_file(7) &mdash; cdist 5.0.0 documentation</title>
<title>15.19. cdist-type__config_file(7) &mdash; cdist 5.0.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
5.0.0
5.0.1
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>15.20. cdist-type__consul(7) &mdash; cdist 5.0.0 documentation</title>
<title>15.20. cdist-type__consul(7) &mdash; cdist 5.0.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
5.0.0
5.0.1
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>15.21. cdist-type__consul_agent(7) &mdash; cdist 5.0.0 documentation</title>
<title>15.21. cdist-type__consul_agent(7) &mdash; cdist 5.0.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
5.0.0
5.0.1
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>15.22. cdist-type__consul_check(7) &mdash; cdist 5.0.0 documentation</title>
<title>15.22. cdist-type__consul_check(7) &mdash; cdist 5.0.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
5.0.0
5.0.1
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>15.23. cdist-type__consul_reload(7) &mdash; cdist 5.0.0 documentation</title>
<title>15.23. cdist-type__consul_reload(7) &mdash; cdist 5.0.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
5.0.0
5.0.1
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>15.24. cdist-type__consul_service(7) &mdash; cdist 5.0.0 documentation</title>
<title>15.24. cdist-type__consul_service(7) &mdash; cdist 5.0.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
5.0.0
5.0.1
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>15.25. cdist-type__consul_template(7) &mdash; cdist 5.0.0 documentation</title>
<title>15.25. cdist-type__consul_template(7) &mdash; cdist 5.0.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
5.0.0
5.0.1
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>15.26. cdist-type__consul_template_template(7) &mdash; cdist 5.0.0 documentation</title>
<title>15.26. cdist-type__consul_template_template(7) &mdash; cdist 5.0.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
5.0.0
5.0.1
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>15.27. cdist-type__consul_watch_checks(7) &mdash; cdist 5.0.0 documentation</title>
<title>15.27. cdist-type__consul_watch_checks(7) &mdash; cdist 5.0.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
5.0.0
5.0.1
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>15.28. cdist-type__consul_watch_event(7) &mdash; cdist 5.0.0 documentation</title>
<title>15.28. cdist-type__consul_watch_event(7) &mdash; cdist 5.0.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
5.0.0
5.0.1
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>15.29. cdist-type__consul_watch_key(7) &mdash; cdist 5.0.0 documentation</title>
<title>15.29. cdist-type__consul_watch_key(7) &mdash; cdist 5.0.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
5.0.0
5.0.1
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>15.30. cdist-type__consul_watch_keyprefix(7) &mdash; cdist 5.0.0 documentation</title>
<title>15.30. cdist-type__consul_watch_keyprefix(7) &mdash; cdist 5.0.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
5.0.0
5.0.1
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>15.31. cdist-type__consul_watch_nodes(7) &mdash; cdist 5.0.0 documentation</title>
<title>15.31. cdist-type__consul_watch_nodes(7) &mdash; cdist 5.0.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
5.0.0
5.0.1
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>15.32. cdist-type__consul_watch_service(7) &mdash; cdist 5.0.0 documentation</title>
<title>15.32. cdist-type__consul_watch_service(7) &mdash; cdist 5.0.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
5.0.0
5.0.1
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>15.33. cdist-type__consul_watch_services(7) &mdash; cdist 5.0.0 documentation</title>
<title>15.33. cdist-type__consul_watch_services(7) &mdash; cdist 5.0.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
5.0.0
5.0.1
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>15.34. cdist-type__cron(7) &mdash; cdist 5.0.0 documentation</title>
<title>15.34. cdist-type__cron(7) &mdash; cdist 5.0.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
5.0.0
5.0.1
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>15.35. cdist-type__daemontools(7) &mdash; cdist 5.0.0 documentation</title>
<title>15.35. cdist-type__daemontools(7) &mdash; cdist 5.0.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
5.0.0
5.0.1
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>15.36. cdist-type__daemontools_service(7) &mdash; cdist 5.0.0 documentation</title>
<title>15.36. cdist-type__daemontools_service(7) &mdash; cdist 5.0.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
5.0.0
5.0.1
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>15.37. cdist-type__debconf_set_selections(7) &mdash; cdist 5.0.0 documentation</title>
<title>15.37. cdist-type__debconf_set_selections(7) &mdash; cdist 5.0.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
5.0.0
5.0.1
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>15.38. cdist-type__directory(7) &mdash; cdist 5.0.0 documentation</title>
<title>15.38. cdist-type__directory(7) &mdash; cdist 5.0.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
5.0.0
5.0.1
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>15.39. cdist-type__docker(7) &mdash; cdist 5.0.0 documentation</title>
<title>15.39. cdist-type__docker(7) &mdash; cdist 5.0.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
5.0.0
5.0.1
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>15.40. cdist-type__docker_compose(7) &mdash; cdist 5.0.0 documentation</title>
<title>15.40. cdist-type__docker_compose(7) &mdash; cdist 5.0.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
5.0.0
5.0.1
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>15.41. cdist-type__docker_config(7) &mdash; cdist 5.0.0 documentation</title>
<title>15.41. cdist-type__docker_config(7) &mdash; cdist 5.0.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
5.0.0
5.0.1
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>15.42. cdist-type__docker_secret(7) &mdash; cdist 5.0.0 documentation</title>
<title>15.42. cdist-type__docker_secret(7) &mdash; cdist 5.0.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
5.0.0
5.0.1
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>15.43. cdist-type__docker_stack(7) &mdash; cdist 5.0.0 documentation</title>
<title>15.43. cdist-type__docker_stack(7) &mdash; cdist 5.0.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
5.0.0
5.0.1
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>15.44. cdist-type__docker_swarm(7) &mdash; cdist 5.0.0 documentation</title>
<title>15.44. cdist-type__docker_swarm(7) &mdash; cdist 5.0.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
5.0.0
5.0.1
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>15.45. cdist-type__dog_vdi(7) &mdash; cdist 5.0.0 documentation</title>
<title>15.45. cdist-type__dog_vdi(7) &mdash; cdist 5.0.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
5.0.0
5.0.1
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>15.46. cdist-type__dot_file(7) &mdash; cdist 5.0.0 documentation</title>
<title>15.46. cdist-type__dot_file(7) &mdash; cdist 5.0.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
5.0.0
5.0.1
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>15.47. cdist-type__file(7) &mdash; cdist 5.0.0 documentation</title>
<title>15.47. cdist-type__file(7) &mdash; cdist 5.0.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
5.0.0
5.0.1
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>15.48. cdist-type__filesystem(7) &mdash; cdist 5.0.0 documentation</title>
<title>15.48. cdist-type__filesystem(7) &mdash; cdist 5.0.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
5.0.0
5.0.1
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>15.49. cdist-type__firewalld_rule(7) &mdash; cdist 5.0.0 documentation</title>
<title>15.49. cdist-type__firewalld_rule(7) &mdash; cdist 5.0.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
5.0.0
5.0.1
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>15.50. cdist-type__firewalld_start(7) &mdash; cdist 5.0.0 documentation</title>
<title>15.50. cdist-type__firewalld_start(7) &mdash; cdist 5.0.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
5.0.0
5.0.1
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>15.51. cdist-type__git(7) &mdash; cdist 5.0.0 documentation</title>
<title>15.51. cdist-type__git(7) &mdash; cdist 5.0.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
5.0.0
5.0.1
</div>
@ -382,7 +382,7 @@ Default branch is &quot;master&quot;</dd>
<div class="highlight-sh notranslate"><div class="highlight"><pre><span></span>__git /home/services/dokuwiki --source git://github.com/splitbrain/dokuwiki.git
<span class="c1"># Checkout cdist, stay on branch 2.1</span>
__git /home/nico/cdist --source git://code.ungleich.ch/ungleich-public/cdist.git --branch <span class="m">2</span>.1
__git /home/nico/cdist --source git@code.ungleich.ch:ungleich-public/cdist.git --branch <span class="m">2</span>.1
</pre></div>
</div>
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>15.52. cdist-type__go_get(7) &mdash; cdist 5.0.0 documentation</title>
<title>15.52. cdist-type__go_get(7) &mdash; cdist 5.0.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
5.0.0
5.0.1
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>15.53. cdist-type__golang_from_vendor(7) &mdash; cdist 5.0.0 documentation</title>
<title>15.53. cdist-type__golang_from_vendor(7) &mdash; cdist 5.0.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
5.0.0
5.0.1
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>15.54. cdist-type__grafana_dashboard(7) &mdash; cdist 5.0.0 documentation</title>
<title>15.54. cdist-type__grafana_dashboard(7) &mdash; cdist 5.0.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
5.0.0
5.0.1
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>15.55. cdist-type__group(7) &mdash; cdist 5.0.0 documentation</title>
<title>15.55. cdist-type__group(7) &mdash; cdist 5.0.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
5.0.0
5.0.1
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>15.56. cdist-type__hostname(7) &mdash; cdist 5.0.0 documentation</title>
<title>15.56. cdist-type__hostname(7) &mdash; cdist 5.0.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
5.0.0
5.0.1
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>15.57. cdist-type__hosts(7) &mdash; cdist 5.0.0 documentation</title>
<title>15.57. cdist-type__hosts(7) &mdash; cdist 5.0.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
5.0.0
5.0.1
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>15.58. cdist-type__install_bootloader_grub(7) &mdash; cdist 5.0.0 documentation</title>
<title>15.58. cdist-type__install_bootloader_grub(7) &mdash; cdist 5.0.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
5.0.0
5.0.1
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>15.59. cdist-type__install_chroot_mount(7) &mdash; cdist 5.0.0 documentation</title>
<title>15.59. cdist-type__install_chroot_mount(7) &mdash; cdist 5.0.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
5.0.0
5.0.1
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>15.60. cdist-type__install_chroot_umount(7) &mdash; cdist 5.0.0 documentation</title>
<title>15.60. cdist-type__install_chroot_umount(7) &mdash; cdist 5.0.1 documentation</title>
@ -63,7 +63,7 @@
<div class="version">
5.0.0
5.0.1
</div>

Some files were not shown because too many files have changed in this diff Show More