Update cdist beta docs
This commit is contained in:
parent
f10bbf5595
commit
aa6fd37a44
194 changed files with 803 additions and 733 deletions
|
@ -226,8 +226,8 @@ and also to store all important files in one
|
|||
repository.
|
||||
|
||||
|
||||
Perils of CDIST_ORDER_DEPENDENCY
|
||||
--------------------------------
|
||||
Notes on 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.
|
||||
|
@ -235,96 +235,11 @@ 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.
|
||||
This can be helpful, but one must be aware of its side effects.
|
||||
|
||||
|
||||
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.
|
||||
|
||||
|
|
|
@ -163,7 +163,126 @@ 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>`_.
|
||||
Read also about `notes on CDIST_ORDER_DEPENDENCY <cdist-best-practice.html#notes-on-cdist-order-dependency>`_.
|
||||
|
||||
In version 6.2.0 semantic CDIST_ORDER_DEPENDENCY is finally fixed and well defined.
|
||||
|
||||
CDIST_ORDER_DEPENDENCY defines type order dependency context. Order dependency context
|
||||
starts when CDIST_ORDER_DEPENDENCY is set, and ends when it is unset. After each
|
||||
manifest execution finishes, any existing order dependency context is automatically
|
||||
unset. This ensures that CDIST_ORDER_DEPENDENCY is valid within the manifest where it
|
||||
is used. When order dependency context is defined then cdist executes types in the
|
||||
order in which they are created in the manifest inside order dependency context.
|
||||
|
||||
Sometimes the best way to see how something works is to see examples.
|
||||
|
||||
Suppose you have defined **initial manifest**:
|
||||
|
||||
.. code-block:: sh
|
||||
|
||||
__cycle1 cycle1
|
||||
export CDIST_ORDER_DEPENDENCY=1
|
||||
__cycle2 cycle2
|
||||
__cycle3 cycle3
|
||||
|
||||
with types **__cycle1**:
|
||||
|
||||
.. code-block:: sh
|
||||
|
||||
export CDIST_ORDER_DEPENDENCY=1
|
||||
__file /tmp/cycle11
|
||||
__file /tmp/cycle12
|
||||
__file /tmp/cycle13
|
||||
|
||||
**__cycle2**:
|
||||
|
||||
.. code-block:: sh
|
||||
|
||||
__file /tmp/cycle21
|
||||
export CDIST_ORDER_DEPENDENCY=1
|
||||
__file /tmp/cycle22
|
||||
__file /tmp/cycle23
|
||||
unset CDIST_ORDER_DEPENDENCY
|
||||
__file /tmp/cycle24
|
||||
|
||||
**__cycle3**:
|
||||
|
||||
.. code-block:: sh
|
||||
|
||||
__file /tmp/cycle31
|
||||
__file /tmp/cycle32
|
||||
export CDIST_ORDER_DEPENDENCY=1
|
||||
__file /tmp/cycle33
|
||||
__file /tmp/cycle34
|
||||
|
||||
For the above config, cdist results in the following expected *dependency graph*
|
||||
(type *__cycleX* is shown as *cX*, *__file/tmp/cycleXY* is shown as *fcXY*):
|
||||
|
||||
::
|
||||
|
||||
c1---->fc11
|
||||
| /\
|
||||
| |
|
||||
+----->fc12
|
||||
| /\
|
||||
| |
|
||||
+----->fc13
|
||||
|
||||
c2--+--->fc21
|
||||
/\ |
|
||||
| |
|
||||
| +----->fc22
|
||||
| | /\
|
||||
| | |
|
||||
| +----->fc23
|
||||
| |
|
||||
| |
|
||||
| +----->fc24
|
||||
|
|
||||
|
|
||||
c3---->fc31
|
||||
|
|
||||
|
|
||||
+----->fc32
|
||||
|
|
||||
|
|
||||
+----->fc33
|
||||
| /\
|
||||
| |
|
||||
+----->fc34
|
||||
|
||||
Before version 6.2.0 the above configuration would result in cycle:
|
||||
|
||||
::
|
||||
|
||||
ERROR: 185.203.112.26: Cycle detected in object dependencies:
|
||||
__file/tmp/cycle11 -> __cycle3/cycle3 -> __cycle2/cycle2 -> __cycle1/cycle1 -> __file/tmp/cycle11!
|
||||
|
||||
The following manifest shows an example for order dependency contexts:
|
||||
|
||||
.. code-block:: sh
|
||||
|
||||
__file /tmp/fileA
|
||||
export CDIST_ORDER_DEPENDENCY=1
|
||||
__file /tmp/fileB
|
||||
__file /tmp/fileC
|
||||
__file /tmp/fileD
|
||||
unset CDIST_ORDER_DEPENDENCY
|
||||
__file /tmp/fileE
|
||||
__file /tmp/fileF
|
||||
export CDIST_ORDER_DEPENDENCY=1
|
||||
__file /tmp/fileG
|
||||
__file /tmp/fileH
|
||||
unset CDIST_ORDER_DEPENDENCY
|
||||
__file /tmp/fileI
|
||||
|
||||
This means:
|
||||
|
||||
* C depends on B
|
||||
* D depends on C
|
||||
* H depends on G
|
||||
|
||||
and there are no other dependencies from this manifest.
|
||||
|
||||
|
||||
Overrides
|
||||
|
|
|
@ -442,7 +442,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>`_.
|
||||
Note that in version 6.2.0 semantic of this processing mode is finally fixed and well defined.
|
||||
|
||||
CDIST_REMOTE_EXEC
|
||||
Use this command for remote execution (should behave like ssh).
|
||||
|
|
|
@ -943,6 +943,8 @@ CDIST_OVERRIDE
|
|||
|
||||
CDIST_ORDER_DEPENDENCY
|
||||
Create dependencies based on the execution order.
|
||||
Note that in version 6.2.0 semantic of this processing mode is
|
||||
finally fixed and well defined.
|
||||
|
||||
CDIST_REMOTE_EXEC
|
||||
Use this command for remote execution (should behave like ssh).
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>25. Best practice — cdist 6.1.1 documentation</title>
|
||||
<title>25. Best practice — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
@ -132,9 +132,8 @@
|
|||
<li class="toctree-l2"><a class="reference internal" href="#templating">25.8. Templating</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="#testing-a-new-type">25.9. Testing a new type</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="#other-content-in-cdist-repository">25.10. Other content in cdist repository</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="#perils-of-cdist-order-dependency">25.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">25.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">25.11.2. CDIST_ORDER_DEPENDENCY kills parallelization</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="#notes-on-cdist-order-dependency">25.11. Notes on CDIST_ORDER_DEPENDENCY</a><ul>
|
||||
<li class="toctree-l3"><a class="reference internal" href="#cdist-order-dependency-kills-parallelization">25.11.1. CDIST_ORDER_DEPENDENCY kills parallelization</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
|
@ -433,84 +432,16 @@ 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>25.11. Perils of CDIST_ORDER_DEPENDENCY<a class="headerlink" href="#perils-of-cdist-order-dependency" title="Permalink to this headline">¶</a></h2>
|
||||
<div class="section" id="notes-on-cdist-order-dependency">
|
||||
<h2>25.11. Notes on CDIST_ORDER_DEPENDENCY<a class="headerlink" href="#notes-on-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>25.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"><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">"</span><span class="si">${</span><span class="nv">p</span><span class="si">}</span><span class="s2">"</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"><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"><div class="highlight"><pre><span></span>sh -e <span class="s2">"</span><span class="nv">$__manifest</span><span class="s2">/init1"</span>
|
||||
sh -e <span class="s2">"</span><span class="nv">$__manifest</span><span class="s2">/init2"</span>
|
||||
</pre></div>
|
||||
</div>
|
||||
<p>The resulting init manifest is then equal to:</p>
|
||||
<div class="highlight-sh"><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">"</span><span class="si">${</span><span class="nv">p</span><span class="si">}</span><span class="s2">"</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>
|
||||
<p>This can be helpful, but one must be aware of its side effects.</p>
|
||||
<div class="section" id="cdist-order-dependency-kills-parallelization">
|
||||
<h3>25.11.2. CDIST_ORDER_DEPENDENCY kills parallelization<a class="headerlink" href="#cdist-order-dependency-kills-parallelization" title="Permalink to this headline">¶</a></h3>
|
||||
<h3>25.11.1. 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>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>12. Bootstrap — cdist 6.1.1 documentation</title>
|
||||
<title>12. Bootstrap — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>27. Local cache overview — cdist 6.1.1 documentation</title>
|
||||
<title>27. Local cache overview — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>13. Configuration — cdist 6.1.1 documentation</title>
|
||||
<title>13. Configuration — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>17. Explorer — cdist 6.1.1 documentation</title>
|
||||
<title>17. Explorer — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>2. Features — cdist 6.1.1 documentation</title>
|
||||
<title>2. Features — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>30. Hacking — cdist 6.1.1 documentation</title>
|
||||
<title>30. Hacking — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>4. How to install cdist — cdist 6.1.1 documentation</title>
|
||||
<title>4. How to install cdist — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</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.1.1 documentation</title>
|
||||
<title>23. cdist integration / using cdist as library — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>20. Inventory — cdist 6.1.1 documentation</title>
|
||||
<title>20. Inventory — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>14. Manifest — cdist 6.1.1 documentation</title>
|
||||
<title>14. Manifest — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
@ -341,7 +341,108 @@ 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>
|
||||
<p>Read also about <a class="reference external" href="cdist-best-practice.html#notes-on-cdist-order-dependency">notes on CDIST_ORDER_DEPENDENCY</a>.</p>
|
||||
<p>In version 6.2.0 semantic CDIST_ORDER_DEPENDENCY is finally fixed and well defined.</p>
|
||||
<p>CDIST_ORDER_DEPENDENCY defines type order dependency context. Order dependency context
|
||||
starts when CDIST_ORDER_DEPENDENCY is set, and ends when it is unset. After each
|
||||
manifest execution finishes, any existing order dependency context is automatically
|
||||
unset. This ensures that CDIST_ORDER_DEPENDENCY is valid within the manifest where it
|
||||
is used. When order dependency context is defined then cdist executes types in the
|
||||
order in which they are created in the manifest inside order dependency context.</p>
|
||||
<p>Sometimes the best way to see how something works is to see examples.</p>
|
||||
<p>Suppose you have defined <strong>initial manifest</strong>:</p>
|
||||
<div class="highlight-sh"><div class="highlight"><pre><span></span>__cycle1 cycle1
|
||||
<span class="nb">export</span> <span class="nv">CDIST_ORDER_DEPENDENCY</span><span class="o">=</span><span class="m">1</span>
|
||||
__cycle2 cycle2
|
||||
__cycle3 cycle3
|
||||
</pre></div>
|
||||
</div>
|
||||
<p>with types <strong>__cycle1</strong>:</p>
|
||||
<div class="highlight-sh"><div class="highlight"><pre><span></span><span class="nb">export</span> <span class="nv">CDIST_ORDER_DEPENDENCY</span><span class="o">=</span><span class="m">1</span>
|
||||
__file /tmp/cycle11
|
||||
__file /tmp/cycle12
|
||||
__file /tmp/cycle13
|
||||
</pre></div>
|
||||
</div>
|
||||
<p><strong>__cycle2</strong>:</p>
|
||||
<div class="highlight-sh"><div class="highlight"><pre><span></span>__file /tmp/cycle21
|
||||
<span class="nb">export</span> <span class="nv">CDIST_ORDER_DEPENDENCY</span><span class="o">=</span><span class="m">1</span>
|
||||
__file /tmp/cycle22
|
||||
__file /tmp/cycle23
|
||||
<span class="nb">unset</span> CDIST_ORDER_DEPENDENCY
|
||||
__file /tmp/cycle24
|
||||
</pre></div>
|
||||
</div>
|
||||
<p><strong>__cycle3</strong>:</p>
|
||||
<div class="highlight-sh"><div class="highlight"><pre><span></span>__file /tmp/cycle31
|
||||
__file /tmp/cycle32
|
||||
<span class="nb">export</span> <span class="nv">CDIST_ORDER_DEPENDENCY</span><span class="o">=</span><span class="m">1</span>
|
||||
__file /tmp/cycle33
|
||||
__file /tmp/cycle34
|
||||
</pre></div>
|
||||
</div>
|
||||
<p>For the above config, cdist results in the following expected <em>dependency graph</em>
|
||||
(type <em>__cycleX</em> is shown as <em>cX</em>, <em>__file/tmp/cycleXY</em> is shown as <em>fcXY</em>):</p>
|
||||
<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">c1</span><span class="o">----></span><span class="n">fc11</span>
|
||||
<span class="o">|</span> <span class="o">/</span>\
|
||||
<span class="o">|</span> <span class="o">|</span>
|
||||
<span class="o">+-----></span><span class="n">fc12</span>
|
||||
<span class="o">|</span> <span class="o">/</span>\
|
||||
<span class="o">|</span> <span class="o">|</span>
|
||||
<span class="o">+-----></span><span class="n">fc13</span>
|
||||
|
||||
<span class="n">c2</span><span class="o">--+---></span><span class="n">fc21</span>
|
||||
<span class="o">/</span>\ <span class="o">|</span>
|
||||
<span class="o">|</span> <span class="o">|</span>
|
||||
<span class="o">|</span> <span class="o">+-----></span><span class="n">fc22</span>
|
||||
<span class="o">|</span> <span class="o">|</span> <span class="o">/</span>\
|
||||
<span class="o">|</span> <span class="o">|</span> <span class="o">|</span>
|
||||
<span class="o">|</span> <span class="o">+-----></span><span class="n">fc23</span>
|
||||
<span class="o">|</span> <span class="o">|</span>
|
||||
<span class="o">|</span> <span class="o">|</span>
|
||||
<span class="o">|</span> <span class="o">+-----></span><span class="n">fc24</span>
|
||||
<span class="o">|</span>
|
||||
<span class="o">|</span>
|
||||
<span class="n">c3</span><span class="o">----></span><span class="n">fc31</span>
|
||||
<span class="o">|</span>
|
||||
<span class="o">|</span>
|
||||
<span class="o">+-----></span><span class="n">fc32</span>
|
||||
<span class="o">|</span>
|
||||
<span class="o">|</span>
|
||||
<span class="o">+-----></span><span class="n">fc33</span>
|
||||
<span class="o">|</span> <span class="o">/</span>\
|
||||
<span class="o">|</span> <span class="o">|</span>
|
||||
<span class="o">+-----></span><span class="n">fc34</span>
|
||||
</pre></div>
|
||||
</div>
|
||||
<p>Before version 6.2.0 the above configuration would result in cycle:</p>
|
||||
<div class="highlight-default"><div class="highlight"><pre><span></span>ERROR: 185.203.112.26: Cycle detected in object dependencies:
|
||||
__file/tmp/cycle11 -> __cycle3/cycle3 -> __cycle2/cycle2 -> __cycle1/cycle1 -> __file/tmp/cycle11!
|
||||
</pre></div>
|
||||
</div>
|
||||
<p>The following manifest shows an example for order dependency contexts:</p>
|
||||
<div class="highlight-sh"><div class="highlight"><pre><span></span>__file /tmp/fileA
|
||||
<span class="nb">export</span> <span class="nv">CDIST_ORDER_DEPENDENCY</span><span class="o">=</span><span class="m">1</span>
|
||||
__file /tmp/fileB
|
||||
__file /tmp/fileC
|
||||
__file /tmp/fileD
|
||||
<span class="nb">unset</span> CDIST_ORDER_DEPENDENCY
|
||||
__file /tmp/fileE
|
||||
__file /tmp/fileF
|
||||
<span class="nb">export</span> <span class="nv">CDIST_ORDER_DEPENDENCY</span><span class="o">=</span><span class="m">1</span>
|
||||
__file /tmp/fileG
|
||||
__file /tmp/fileH
|
||||
<span class="nb">unset</span> CDIST_ORDER_DEPENDENCY
|
||||
__file /tmp/fileI
|
||||
</pre></div>
|
||||
</div>
|
||||
<p>This means:</p>
|
||||
<ul class="simple">
|
||||
<li>C depends on B</li>
|
||||
<li>D depends on C</li>
|
||||
<li>H depends on G</li>
|
||||
</ul>
|
||||
<p>and there are no other dependencies from this manifest.</p>
|
||||
</div>
|
||||
<div class="section" id="overrides">
|
||||
<h2>14.7. Overrides<a class="headerlink" href="#overrides" title="Permalink to this headline">¶</a></h2>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>18. Messaging — cdist 6.1.1 documentation</title>
|
||||
<title>18. Messaging — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>3. Supported operating systems — cdist 6.1.1 documentation</title>
|
||||
<title>3. Supported operating systems — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>19. Parallelization — cdist 6.1.1 documentation</title>
|
||||
<title>19. Parallelization — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>22. PreOS — cdist 6.1.1 documentation</title>
|
||||
<title>22. PreOS — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>7. Quickstart — cdist 6.1.1 documentation</title>
|
||||
<title>7. Quickstart — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</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.1.1 documentation</title>
|
||||
<title>8. Dive into real world cdist — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>24. Reference — cdist 6.1.1 documentation</title>
|
||||
<title>24. Reference — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
@ -648,7 +648,7 @@ not specified otherwise while invoking it.</p>
|
|||
<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>).
|
||||
Read also about <a class="reference external" href="cdist-best-practice.html#perils-of-cdist-order-dependency">perils of CDIST_ORDER_DEPENDENCY</a>.</dd>
|
||||
Note that in version 6.2.0 semantic of this processing mode is finally fixed and well defined.</dd>
|
||||
<dt>CDIST_REMOTE_EXEC</dt>
|
||||
<dd>Use this command for remote execution (should behave like ssh).</dd>
|
||||
<dt>CDIST_REMOTE_COPY</dt>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>29. Remote exec and copy commands — cdist 6.1.1 documentation</title>
|
||||
<title>29. Remote exec and copy commands — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>28. Saving output streams — cdist 6.1.1 documentation</title>
|
||||
<title>28. Saving output streams — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>26. Execution stages — cdist 6.1.1 documentation</title>
|
||||
<title>26. Execution stages — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>6. Support — cdist 6.1.1 documentation</title>
|
||||
<title>6. Support — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>21. Trigger — cdist 6.1.1 documentation</title>
|
||||
<title>21. Trigger — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>31. Troubleshooting — cdist 6.1.1 documentation</title>
|
||||
<title>31. Troubleshooting — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -71,7 +71,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>15. cdist type — cdist 6.1.1 documentation</title>
|
||||
<title>15. cdist type — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16. cdist types — cdist 6.1.1 documentation</title>
|
||||
<title>16. cdist types — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>5. How to upgrade cdist — cdist 6.1.1 documentation</title>
|
||||
<title>5. How to upgrade cdist — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</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.1.1 documentation</title>
|
||||
<title>1. Why should I use cdist? — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>Index — cdist 6.1.1 documentation</title>
|
||||
<title>Index — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -24,7 +24,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -71,7 +71,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>cdist - usable configuration management — cdist 6.1.1 documentation</title>
|
||||
<title>cdist - usable configuration management — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -71,7 +71,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>10. cdist-dump(1) — cdist 6.1.1 documentation</title>
|
||||
<title>10. cdist-dump(1) — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>11. cdist-new-type(1) — cdist 6.1.1 documentation</title>
|
||||
<title>11. cdist-new-type(1) — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>9. cdist(1) — cdist 6.1.1 documentation</title>
|
||||
<title>9. cdist(1) — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
@ -1036,7 +1036,9 @@ directory used does not allow executables.</dd>
|
|||
<dt>CDIST_OVERRIDE</dt>
|
||||
<dd>Allow overwriting type parameters.</dd>
|
||||
<dt>CDIST_ORDER_DEPENDENCY</dt>
|
||||
<dd>Create dependencies based on the execution order.</dd>
|
||||
<dd>Create dependencies based on the execution order.
|
||||
Note that in version 6.2.0 semantic of this processing mode is
|
||||
finally fixed and well defined.</dd>
|
||||
<dt>CDIST_REMOTE_EXEC</dt>
|
||||
<dd>Use this command for remote execution (should behave like ssh).</dd>
|
||||
<dt>CDIST_REMOTE_COPY</dt>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.1. cdist-type__acl(7) — cdist 6.1.1 documentation</title>
|
||||
<title>16.1. cdist-type__acl(7) — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.2. cdist-type__apt_default_release(7) — cdist 6.1.1 documentation</title>
|
||||
<title>16.2. cdist-type__apt_default_release(7) — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.3. cdist-type__apt_key(7) — cdist 6.1.1 documentation</title>
|
||||
<title>16.3. cdist-type__apt_key(7) — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.4. cdist-type__apt_key_uri(7) — cdist 6.1.1 documentation</title>
|
||||
<title>16.4. cdist-type__apt_key_uri(7) — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.5. cdist-type__apt_mark(7) — cdist 6.1.1 documentation</title>
|
||||
<title>16.5. cdist-type__apt_mark(7) — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.6. cdist-type__apt_norecommends(7) — cdist 6.1.1 documentation</title>
|
||||
<title>16.6. cdist-type__apt_norecommends(7) — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.7. cdist-type__apt_ppa(7) — cdist 6.1.1 documentation</title>
|
||||
<title>16.7. cdist-type__apt_ppa(7) — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.8. cdist-type__apt_source(7) — cdist 6.1.1 documentation</title>
|
||||
<title>16.8. cdist-type__apt_source(7) — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.9. cdist-type__apt_update_index(7) — cdist 6.1.1 documentation</title>
|
||||
<title>16.9. cdist-type__apt_update_index(7) — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.10. cdist-type__block(7) — cdist 6.1.1 documentation</title>
|
||||
<title>16.10. cdist-type__block(7) — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.11. cdist-type__ccollect_source(7) — cdist 6.1.1 documentation</title>
|
||||
<title>16.11. cdist-type__ccollect_source(7) — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.12. cdist-type__cdist(7) — cdist 6.1.1 documentation</title>
|
||||
<title>16.12. cdist-type__cdist(7) — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.13. cdist-type__cdist_preos_trigger(7) — cdist 6.1.1 documentation</title>
|
||||
<title>16.13. cdist-type__cdist_preos_trigger(7) — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.14. cdist-type__cdistmarker(7) — cdist 6.1.1 documentation</title>
|
||||
<title>16.14. cdist-type__cdistmarker(7) — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.15. cdist-type__check_messages(7) — cdist 6.1.1 documentation</title>
|
||||
<title>16.15. cdist-type__check_messages(7) — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.16. cdist-type__chroot_mount(7) — cdist 6.1.1 documentation</title>
|
||||
<title>16.16. cdist-type__chroot_mount(7) — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.17. cdist-type__chroot_umount(7) — cdist 6.1.1 documentation</title>
|
||||
<title>16.17. cdist-type__chroot_umount(7) — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.18. cdist-type__clean_path(7) — cdist 6.1.1 documentation</title>
|
||||
<title>16.18. cdist-type__clean_path(7) — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.19. cdist-type__config_file(7) — cdist 6.1.1 documentation</title>
|
||||
<title>16.19. cdist-type__config_file(7) — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.20. cdist-type__consul(7) — cdist 6.1.1 documentation</title>
|
||||
<title>16.20. cdist-type__consul(7) — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.21. cdist-type__consul_agent(7) — cdist 6.1.1 documentation</title>
|
||||
<title>16.21. cdist-type__consul_agent(7) — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.22. cdist-type__consul_check(7) — cdist 6.1.1 documentation</title>
|
||||
<title>16.22. cdist-type__consul_check(7) — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.23. cdist-type__consul_reload(7) — cdist 6.1.1 documentation</title>
|
||||
<title>16.23. cdist-type__consul_reload(7) — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.24. cdist-type__consul_service(7) — cdist 6.1.1 documentation</title>
|
||||
<title>16.24. cdist-type__consul_service(7) — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.25. cdist-type__consul_template(7) — cdist 6.1.1 documentation</title>
|
||||
<title>16.25. cdist-type__consul_template(7) — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.26. cdist-type__consul_template_template(7) — cdist 6.1.1 documentation</title>
|
||||
<title>16.26. cdist-type__consul_template_template(7) — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.27. cdist-type__consul_watch_checks(7) — cdist 6.1.1 documentation</title>
|
||||
<title>16.27. cdist-type__consul_watch_checks(7) — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.28. cdist-type__consul_watch_event(7) — cdist 6.1.1 documentation</title>
|
||||
<title>16.28. cdist-type__consul_watch_event(7) — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.29. cdist-type__consul_watch_key(7) — cdist 6.1.1 documentation</title>
|
||||
<title>16.29. cdist-type__consul_watch_key(7) — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.30. cdist-type__consul_watch_keyprefix(7) — cdist 6.1.1 documentation</title>
|
||||
<title>16.30. cdist-type__consul_watch_keyprefix(7) — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.31. cdist-type__consul_watch_nodes(7) — cdist 6.1.1 documentation</title>
|
||||
<title>16.31. cdist-type__consul_watch_nodes(7) — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.32. cdist-type__consul_watch_service(7) — cdist 6.1.1 documentation</title>
|
||||
<title>16.32. cdist-type__consul_watch_service(7) — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.33. cdist-type__consul_watch_services(7) — cdist 6.1.1 documentation</title>
|
||||
<title>16.33. cdist-type__consul_watch_services(7) — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.34. cdist-type__cron(7) — cdist 6.1.1 documentation</title>
|
||||
<title>16.34. cdist-type__cron(7) — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.35. cdist-type__daemontools(7) — cdist 6.1.1 documentation</title>
|
||||
<title>16.35. cdist-type__daemontools(7) — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.36. cdist-type__daemontools_service(7) — cdist 6.1.1 documentation</title>
|
||||
<title>16.36. cdist-type__daemontools_service(7) — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.37. cdist-type__debconf_set_selections(7) — cdist 6.1.1 documentation</title>
|
||||
<title>16.37. cdist-type__debconf_set_selections(7) — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.38. cdist-type__directory(7) — cdist 6.1.1 documentation</title>
|
||||
<title>16.38. cdist-type__directory(7) — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.39. cdist-type__docker(7) — cdist 6.1.1 documentation</title>
|
||||
<title>16.39. cdist-type__docker(7) — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.40. cdist-type__docker_compose(7) — cdist 6.1.1 documentation</title>
|
||||
<title>16.40. cdist-type__docker_compose(7) — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.41. cdist-type__docker_config(7) — cdist 6.1.1 documentation</title>
|
||||
<title>16.41. cdist-type__docker_config(7) — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.42. cdist-type__docker_secret(7) — cdist 6.1.1 documentation</title>
|
||||
<title>16.42. cdist-type__docker_secret(7) — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.43. cdist-type__docker_stack(7) — cdist 6.1.1 documentation</title>
|
||||
<title>16.43. cdist-type__docker_stack(7) — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.44. cdist-type__docker_swarm(7) — cdist 6.1.1 documentation</title>
|
||||
<title>16.44. cdist-type__docker_swarm(7) — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.45. cdist-type__dog_vdi(7) — cdist 6.1.1 documentation</title>
|
||||
<title>16.45. cdist-type__dog_vdi(7) — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.46. cdist-type__dot_file(7) — cdist 6.1.1 documentation</title>
|
||||
<title>16.46. cdist-type__dot_file(7) — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.47. cdist-type__file(7) — cdist 6.1.1 documentation</title>
|
||||
<title>16.47. cdist-type__file(7) — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.48. cdist-type__filesystem(7) — cdist 6.1.1 documentation</title>
|
||||
<title>16.48. cdist-type__filesystem(7) — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.49. cdist-type__firewalld_rule(7) — cdist 6.1.1 documentation</title>
|
||||
<title>16.49. cdist-type__firewalld_rule(7) — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.50. cdist-type__firewalld_start(7) — cdist 6.1.1 documentation</title>
|
||||
<title>16.50. cdist-type__firewalld_start(7) — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.51. cdist-type__git(7) — cdist 6.1.1 documentation</title>
|
||||
<title>16.51. cdist-type__git(7) — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.52. cdist-type__go_get(7) — cdist 6.1.1 documentation</title>
|
||||
<title>16.52. cdist-type__go_get(7) — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.53. cdist-type__golang_from_vendor(7) — cdist 6.1.1 documentation</title>
|
||||
<title>16.53. cdist-type__golang_from_vendor(7) — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.54. cdist-type__grafana_dashboard(7) — cdist 6.1.1 documentation</title>
|
||||
<title>16.54. cdist-type__grafana_dashboard(7) — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.55. cdist-type__group(7) — cdist 6.1.1 documentation</title>
|
||||
<title>16.55. cdist-type__group(7) — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.56. cdist-type__hostname(7) — cdist 6.1.1 documentation</title>
|
||||
<title>16.56. cdist-type__hostname(7) — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.57. cdist-type__hosts(7) — cdist 6.1.1 documentation</title>
|
||||
<title>16.57. cdist-type__hosts(7) — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.58. cdist-type__install_bootloader_grub(7) — cdist 6.1.1 documentation</title>
|
||||
<title>16.58. cdist-type__install_bootloader_grub(7) — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.59. cdist-type__install_chroot_mount(7) — cdist 6.1.1 documentation</title>
|
||||
<title>16.59. cdist-type__install_chroot_mount(7) — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.60. cdist-type__install_chroot_umount(7) — cdist 6.1.1 documentation</title>
|
||||
<title>16.60. cdist-type__install_chroot_umount(7) — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.61. cdist-type__install_config(7) — cdist 6.1.1 documentation</title>
|
||||
<title>16.61. cdist-type__install_config(7) — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.62. cdist-type__install_coreos(7) — cdist 6.1.1 documentation</title>
|
||||
<title>16.62. cdist-type__install_coreos(7) — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.63. cdist-type__directory(7) — cdist 6.1.1 documentation</title>
|
||||
<title>16.63. cdist-type__directory(7) — cdist 6.2.0 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.1.1',
|
||||
VERSION:'6.2.0',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.1.1
|
||||
6.2.0
|
||||
</div>
|
||||
|
||||
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue