forked from ungleich-public/cdist-web
Update cdist beta docs
This commit is contained in:
parent
a7a8c05e1d
commit
dd12d925b6
204 changed files with 660 additions and 642 deletions
|
@ -3,7 +3,7 @@ Support
|
|||
|
||||
Chat
|
||||
~~~~
|
||||
Chat with us: `ungleich chat <https://chat.ungleich.ch/ungleich/channels/cdist>`_.
|
||||
Chat with us on `#cdist:ungleich.ch <https://ungleich.ch/u/projects/open-chat/>`_.
|
||||
|
||||
Mailing list
|
||||
~~~~~~~~~~~~
|
||||
|
|
|
@ -21,6 +21,11 @@ command
|
|||
|
||||
OPTIONAL PARAMETERS
|
||||
-------------------
|
||||
**NOTE**: All time-related parameters (``--minute``, ``--hour``, ``--day_of_month``
|
||||
``--month`` and ``--day_of_week``) defaults to ``*``, which means to execute it
|
||||
**always**. If you set ``--hour 0`` to execute the cronjob only at midnight, it
|
||||
will execute **every** minute in the first hour of the morning all days.
|
||||
|
||||
state
|
||||
Either present or absent. Defaults to present.
|
||||
minute
|
||||
|
|
|
@ -50,13 +50,13 @@ state
|
|||
create or modify it
|
||||
|
||||
group
|
||||
Group to chgrp to.
|
||||
Group to chgrp to. Defaults to ``root``.
|
||||
|
||||
mode
|
||||
Unix permissions, suitable for chmod.
|
||||
Unix permissions, suitable for chmod. Defaults to a very secure ``0600``.
|
||||
|
||||
owner
|
||||
User to chown to.
|
||||
User to chown to. Defaults to ``root``.
|
||||
|
||||
source
|
||||
If supplied, copy this file from the host running cdist to the target.
|
||||
|
|
|
@ -18,7 +18,7 @@ source
|
|||
Specifies the link source.
|
||||
|
||||
type
|
||||
Specifies the link type: Either hard or symoblic.
|
||||
Specifies the link type: Either hard or symbolic.
|
||||
|
||||
|
||||
OPTIONAL PARAMETERS
|
||||
|
|
|
@ -9,7 +9,7 @@ cdist-type__pyvenv - Create or remove python virtual environment
|
|||
DESCRIPTION
|
||||
-----------
|
||||
This cdist type allows you to create or remove python virtual
|
||||
environment using pyvenv.
|
||||
environment using pyvenv on python3 -m venv.
|
||||
It assumes pyvenv is already installed. Concrete package depends
|
||||
on concrete OS and/or OS version/distribution.
|
||||
Ensure this for e.g. in your init manifest as in the following example:
|
||||
|
@ -57,7 +57,7 @@ EXAMPLES
|
|||
|
||||
__pyvenv /home/services/djangoenv
|
||||
|
||||
# Use specific pyvenv
|
||||
# Use specific pyvenv
|
||||
__pyvenv /home/foo/fooenv --pyvenv /usr/local/bin/pyvenv-3.4
|
||||
|
||||
# Create python virtualenv for user foo.
|
||||
|
@ -76,4 +76,3 @@ COPYING
|
|||
-------
|
||||
Copyright \(C) 2016 Darko Poljak. Free use of this software is
|
||||
granted under the terms of the GNU General Public License v3 or later (GPLv3+).
|
||||
|
||||
|
|
|
@ -15,25 +15,27 @@ This type was created to be used by the __ssh_authorized_keys type.
|
|||
REQUIRED PARAMETERS
|
||||
-------------------
|
||||
file
|
||||
the authorized_keys file to which the given key should be added
|
||||
The authorized_keys file where the given key should be managed.
|
||||
|
||||
key
|
||||
a string containing the ssh keytype, base 64 encoded key and optional
|
||||
trailing comment which shall be added to the given authorized_keys file.
|
||||
The ssh key which shall be managed in this authorized_keys file.
|
||||
Must be a string containing the ssh keytype, base 64 encoded key and
|
||||
optional trailing comment which shall be added to the given
|
||||
authorized_keys file.
|
||||
|
||||
|
||||
OPTIONAL PARAMETERS
|
||||
-------------------
|
||||
comment
|
||||
explicit comment instead of the one which may be trailing the given key
|
||||
Use this comment instead of the one which may be trailing in the key.
|
||||
|
||||
option
|
||||
an option to set for this authorized_key entry.
|
||||
An option to set for this authorized_key entry.
|
||||
Can be specified multiple times.
|
||||
See sshd(8) for available options.
|
||||
|
||||
state
|
||||
if the given keys should be 'present' or 'absent', defaults to 'present'.
|
||||
If the managed key should be 'present' or 'absent', defaults to 'present'.
|
||||
|
||||
|
||||
MESSAGES
|
||||
|
@ -64,7 +66,7 @@ EXAMPLES
|
|||
|
||||
SEE ALSO
|
||||
--------
|
||||
:strong:`cdist__ssh_authorized_keys`\ (7), :strong:`sshd`\ (8)
|
||||
:strong:`cdist-type__ssh_authorized_keys`\ (7), :strong:`sshd`\ (8)
|
||||
|
||||
|
||||
AUTHORS
|
||||
|
|
|
@ -20,42 +20,45 @@ then left to the user to ensure that the file exists and that ownership and
|
|||
permissions work with ssh.
|
||||
|
||||
|
||||
REQUIRED PARAMETERS
|
||||
-------------------
|
||||
REQUIRED MULTIPLE PARAMETERS
|
||||
----------------------------
|
||||
key
|
||||
the ssh key which shall be added to this authorized_keys file.
|
||||
Must be a string and can be specified multiple times.
|
||||
An ssh key which shall be managed in this authorized_keys file.
|
||||
Must be a string containing the ssh keytype, base 64 encoded key and
|
||||
optional trailing comment which shall be added to the given
|
||||
authorized_keys file.
|
||||
Can be specified multiple times.
|
||||
|
||||
|
||||
OPTIONAL PARAMETERS
|
||||
-------------------
|
||||
comment
|
||||
explicit comment instead of the one which may be trailing the given key
|
||||
Use this comment instead of the one which may be trailing in each key.
|
||||
|
||||
file
|
||||
an alternative destination file, defaults to ~$owner/.ssh/authorized_keys
|
||||
An alternative destination file, defaults to ~$owner/.ssh/authorized_keys.
|
||||
|
||||
option
|
||||
an option to set for all created authorized_key entries.
|
||||
An option to set for all authorized_key entries in the key parameter.
|
||||
Can be specified multiple times.
|
||||
See sshd(8) for available options.
|
||||
|
||||
owner
|
||||
the user owning the authorized_keys file, defaults to object_id.
|
||||
The user owning the authorized_keys file, defaults to object_id.
|
||||
|
||||
state
|
||||
if the given keys should be 'present' or 'absent', defaults to 'present'.
|
||||
If the given keys should be 'present' or 'absent', defaults to 'present'.
|
||||
|
||||
|
||||
BOOLEAN PARAMETERS
|
||||
------------------
|
||||
noparent
|
||||
don't create or change ownership and permissions of the directory containing
|
||||
the authorized_keys file
|
||||
Don't create or change ownership and permissions of the directory containing
|
||||
the authorized_keys file.
|
||||
|
||||
nofile
|
||||
don't manage existence, ownership and permissions of the the authorized_keys
|
||||
file
|
||||
Don't manage existence, ownership and permissions of the the authorized_keys
|
||||
file.
|
||||
|
||||
|
||||
EXAMPLES
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>25. Best practice — cdist 6.5.5 documentation</title>
|
||||
<title>25. Best practice — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>12. Bootstrap — cdist 6.5.5 documentation</title>
|
||||
<title>12. Bootstrap — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>27. Local cache overview — cdist 6.5.5 documentation</title>
|
||||
<title>27. Local cache overview — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>13. Configuration — cdist 6.5.5 documentation</title>
|
||||
<title>13. Configuration — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
@ -258,7 +258,7 @@ only [GLOBAL] section.</p>
|
|||
<span class="c1">#</span>
|
||||
<span class="c1"># init_manifest</span>
|
||||
<span class="c1"># Specify default initial manifest.</span>
|
||||
<span class="c1"># init_mainfest = <path-to-init-manifst></span>
|
||||
<span class="c1"># init_manifest = <path-to-init-manifest></span>
|
||||
<span class="c1">#</span>
|
||||
<span class="c1"># inventory_dir</span>
|
||||
<span class="c1"># Specify inventory directory.</span>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>17. Explorer — cdist 6.5.5 documentation</title>
|
||||
<title>17. Explorer — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>2. Features — cdist 6.5.5 documentation</title>
|
||||
<title>2. Features — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>30. Hacking — cdist 6.5.5 documentation</title>
|
||||
<title>30. Hacking — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>4. How to install cdist — cdist 6.5.5 documentation</title>
|
||||
<title>4. How to install cdist — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</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.5.5 documentation</title>
|
||||
<title>23. cdist integration / using cdist as library — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>20. Inventory — cdist 6.5.5 documentation</title>
|
||||
<title>20. Inventory — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>14. Manifest — cdist 6.5.5 documentation</title>
|
||||
<title>14. Manifest — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>18. Messaging — cdist 6.5.5 documentation</title>
|
||||
<title>18. Messaging — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>3. Supported operating systems — cdist 6.5.5 documentation</title>
|
||||
<title>3. Supported operating systems — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>19. Parallelization — cdist 6.5.5 documentation</title>
|
||||
<title>19. Parallelization — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>22. PreOS — cdist 6.5.5 documentation</title>
|
||||
<title>22. PreOS — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>7. Quickstart — cdist 6.5.5 documentation</title>
|
||||
<title>7. Quickstart — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</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.5.5 documentation</title>
|
||||
<title>8. Dive into real world cdist — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>24. Reference — cdist 6.5.5 documentation</title>
|
||||
<title>24. Reference — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>29. Remote exec and copy commands — cdist 6.5.5 documentation</title>
|
||||
<title>29. Remote exec and copy commands — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>28. Saving output streams — cdist 6.5.5 documentation</title>
|
||||
<title>28. Saving output streams — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>26. Execution stages — cdist 6.5.5 documentation</title>
|
||||
<title>26. Execution stages — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>6. Support — cdist 6.5.5 documentation</title>
|
||||
<title>6. Support — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
@ -202,7 +202,7 @@
|
|||
<h1>6. Support<a class="headerlink" href="#support" title="Permalink to this headline">¶</a></h1>
|
||||
<div class="section" id="chat">
|
||||
<h2>6.1. Chat<a class="headerlink" href="#chat" title="Permalink to this headline">¶</a></h2>
|
||||
<p>Chat with us: <a class="reference external" href="https://chat.ungleich.ch/ungleich/channels/cdist">ungleich chat</a>.</p>
|
||||
<p>Chat with us on <a class="reference external" href="https://ungleich.ch/u/projects/open-chat/">#cdist:ungleich.ch</a>.</p>
|
||||
</div>
|
||||
<div class="section" id="mailing-list">
|
||||
<h2>6.2. Mailing list<a class="headerlink" href="#mailing-list" title="Permalink to this headline">¶</a></h2>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>21. Trigger — cdist 6.5.5 documentation</title>
|
||||
<title>21. Trigger — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>31. Troubleshooting — cdist 6.5.5 documentation</title>
|
||||
<title>31. Troubleshooting — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -71,7 +71,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>15. cdist type — cdist 6.5.5 documentation</title>
|
||||
<title>15. cdist type — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16. cdist types — cdist 6.5.5 documentation</title>
|
||||
<title>16. cdist types — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>5. How to upgrade cdist — cdist 6.5.5 documentation</title>
|
||||
<title>5. How to upgrade cdist — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</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.5.5 documentation</title>
|
||||
<title>1. Why should I use cdist? — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>Index — cdist 6.5.5 documentation</title>
|
||||
<title>Index — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -24,7 +24,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -71,7 +71,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>cdist - usable configuration management — cdist 6.5.5 documentation</title>
|
||||
<title>cdist - usable configuration management — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -71,7 +71,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>10. cdist-dump(1) — cdist 6.5.5 documentation</title>
|
||||
<title>10. cdist-dump(1) — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>11. cdist-new-type(1) — cdist 6.5.5 documentation</title>
|
||||
<title>11. cdist-new-type(1) — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>9. cdist(1) — cdist 6.5.5 documentation</title>
|
||||
<title>9. cdist(1) — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.1. cdist-type__acl(7) — cdist 6.5.5 documentation</title>
|
||||
<title>16.1. cdist-type__acl(7) — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</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.5.5 documentation</title>
|
||||
<title>16.2. cdist-type__apt_default_release(7) — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</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.5.5 documentation</title>
|
||||
<title>16.3. cdist-type__apt_key(7) — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</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.5.5 documentation</title>
|
||||
<title>16.4. cdist-type__apt_key_uri(7) — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</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.5.5 documentation</title>
|
||||
<title>16.5. cdist-type__apt_mark(7) — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</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.5.5 documentation</title>
|
||||
<title>16.6. cdist-type__apt_norecommends(7) — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</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.5.5 documentation</title>
|
||||
<title>16.7. cdist-type__apt_ppa(7) — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</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.5.5 documentation</title>
|
||||
<title>16.8. cdist-type__apt_source(7) — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.9. cdist-type__apt_unattended_upgrades(7) — cdist 6.5.5 documentation</title>
|
||||
<title>16.9. cdist-type__apt_unattended_upgrades(7) — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.10. cdist-type__apt_update_index(7) — cdist 6.5.5 documentation</title>
|
||||
<title>16.10. cdist-type__apt_update_index(7) — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.11. cdist-type__block(7) — cdist 6.5.5 documentation</title>
|
||||
<title>16.11. cdist-type__block(7) — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.12. cdist-type__ccollect_source(7) — cdist 6.5.5 documentation</title>
|
||||
<title>16.12. cdist-type__ccollect_source(7) — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.13. cdist-type__cdist(7) — cdist 6.5.5 documentation</title>
|
||||
<title>16.13. cdist-type__cdist(7) — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.14. cdist-type__cdist_preos_trigger(7) — cdist 6.5.5 documentation</title>
|
||||
<title>16.14. cdist-type__cdist_preos_trigger(7) — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.15. cdist-type__cdistmarker(7) — cdist 6.5.5 documentation</title>
|
||||
<title>16.15. cdist-type__cdistmarker(7) — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.16. cdist-type__check_messages(7) — cdist 6.5.5 documentation</title>
|
||||
<title>16.16. cdist-type__check_messages(7) — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.17. cdist-type__chroot_mount(7) — cdist 6.5.5 documentation</title>
|
||||
<title>16.17. cdist-type__chroot_mount(7) — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.18. cdist-type__chroot_umount(7) — cdist 6.5.5 documentation</title>
|
||||
<title>16.18. cdist-type__chroot_umount(7) — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.19. cdist-type__clean_path(7) — cdist 6.5.5 documentation</title>
|
||||
<title>16.19. cdist-type__clean_path(7) — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.20. cdist-type__config_file(7) — cdist 6.5.5 documentation</title>
|
||||
<title>16.20. cdist-type__config_file(7) — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.21. cdist-type__consul(7) — cdist 6.5.5 documentation</title>
|
||||
<title>16.21. cdist-type__consul(7) — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.22. cdist-type__consul_agent(7) — cdist 6.5.5 documentation</title>
|
||||
<title>16.22. cdist-type__consul_agent(7) — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.23. cdist-type__consul_check(7) — cdist 6.5.5 documentation</title>
|
||||
<title>16.23. cdist-type__consul_check(7) — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.24. cdist-type__consul_reload(7) — cdist 6.5.5 documentation</title>
|
||||
<title>16.24. cdist-type__consul_reload(7) — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.25. cdist-type__consul_service(7) — cdist 6.5.5 documentation</title>
|
||||
<title>16.25. cdist-type__consul_service(7) — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.26. cdist-type__consul_template(7) — cdist 6.5.5 documentation</title>
|
||||
<title>16.26. cdist-type__consul_template(7) — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.27. cdist-type__consul_template_template(7) — cdist 6.5.5 documentation</title>
|
||||
<title>16.27. cdist-type__consul_template_template(7) — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.28. cdist-type__consul_watch_checks(7) — cdist 6.5.5 documentation</title>
|
||||
<title>16.28. cdist-type__consul_watch_checks(7) — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.29. cdist-type__consul_watch_event(7) — cdist 6.5.5 documentation</title>
|
||||
<title>16.29. cdist-type__consul_watch_event(7) — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.30. cdist-type__consul_watch_key(7) — cdist 6.5.5 documentation</title>
|
||||
<title>16.30. cdist-type__consul_watch_key(7) — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.31. cdist-type__consul_watch_keyprefix(7) — cdist 6.5.5 documentation</title>
|
||||
<title>16.31. cdist-type__consul_watch_keyprefix(7) — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.32. cdist-type__consul_watch_nodes(7) — cdist 6.5.5 documentation</title>
|
||||
<title>16.32. cdist-type__consul_watch_nodes(7) — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.33. cdist-type__consul_watch_service(7) — cdist 6.5.5 documentation</title>
|
||||
<title>16.33. cdist-type__consul_watch_service(7) — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.34. cdist-type__consul_watch_services(7) — cdist 6.5.5 documentation</title>
|
||||
<title>16.34. cdist-type__consul_watch_services(7) — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.35. cdist-type__cron(7) — cdist 6.5.5 documentation</title>
|
||||
<title>16.35. cdist-type__cron(7) — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
@ -388,6 +388,10 @@
|
|||
</div>
|
||||
<div class="section" id="optional-parameters">
|
||||
<h2>16.35.4. OPTIONAL PARAMETERS<a class="headerlink" href="#optional-parameters" title="Permalink to this headline">¶</a></h2>
|
||||
<p><strong>NOTE</strong>: All time-related parameters (<code class="docutils literal"><span class="pre">--minute</span></code>, <code class="docutils literal"><span class="pre">--hour</span></code>, <code class="docutils literal"><span class="pre">--day_of_month</span></code>
|
||||
<code class="docutils literal"><span class="pre">--month</span></code> and <code class="docutils literal"><span class="pre">--day_of_week</span></code>) defaults to <code class="docutils literal"><span class="pre">*</span></code>, which means to execute it
|
||||
<strong>always</strong>. If you set <code class="docutils literal"><span class="pre">--hour</span> <span class="pre">0</span></code> to execute the cronjob only at midnight, it
|
||||
will execute <strong>every</strong> minute in the first hour of the morning all days.</p>
|
||||
<dl class="docutils">
|
||||
<dt>state</dt>
|
||||
<dd>Either present or absent. Defaults to present.</dd>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.36. cdist-type__daemontools(7) — cdist 6.5.5 documentation</title>
|
||||
<title>16.36. cdist-type__daemontools(7) — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.37. cdist-type__daemontools_service(7) — cdist 6.5.5 documentation</title>
|
||||
<title>16.37. cdist-type__daemontools_service(7) — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.38. cdist-type__debconf_set_selections(7) — cdist 6.5.5 documentation</title>
|
||||
<title>16.38. cdist-type__debconf_set_selections(7) — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.39. cdist-type__directory(7) — cdist 6.5.5 documentation</title>
|
||||
<title>16.39. cdist-type__directory(7) — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.40. cdist-type__docker(7) — cdist 6.5.5 documentation</title>
|
||||
<title>16.40. cdist-type__docker(7) — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.41. cdist-type__docker_compose(7) — cdist 6.5.5 documentation</title>
|
||||
<title>16.41. cdist-type__docker_compose(7) — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.42. cdist-type__docker_config(7) — cdist 6.5.5 documentation</title>
|
||||
<title>16.42. cdist-type__docker_config(7) — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.43. cdist-type__docker_secret(7) — cdist 6.5.5 documentation</title>
|
||||
<title>16.43. cdist-type__docker_secret(7) — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.44. cdist-type__docker_stack(7) — cdist 6.5.5 documentation</title>
|
||||
<title>16.44. cdist-type__docker_stack(7) — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.45. cdist-type__docker_swarm(7) — cdist 6.5.5 documentation</title>
|
||||
<title>16.45. cdist-type__docker_swarm(7) — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.46. cdist-type__dog_vdi(7) — cdist 6.5.5 documentation</title>
|
||||
<title>16.46. cdist-type__dog_vdi(7) — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.47. cdist-type__dot_file(7) — cdist 6.5.5 documentation</title>
|
||||
<title>16.47. cdist-type__dot_file(7) — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.48. cdist-type__file(7) — cdist 6.5.5 documentation</title>
|
||||
<title>16.48. cdist-type__file(7) — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
@ -419,11 +419,11 @@ create or modify it</dd>
|
|||
</dl>
|
||||
</dd>
|
||||
<dt>group</dt>
|
||||
<dd>Group to chgrp to.</dd>
|
||||
<dd>Group to chgrp to. Defaults to <code class="docutils literal"><span class="pre">root</span></code>.</dd>
|
||||
<dt>mode</dt>
|
||||
<dd>Unix permissions, suitable for chmod.</dd>
|
||||
<dd>Unix permissions, suitable for chmod. Defaults to a very secure <code class="docutils literal"><span class="pre">0600</span></code>.</dd>
|
||||
<dt>owner</dt>
|
||||
<dd>User to chown to.</dd>
|
||||
<dd>User to chown to. Defaults to <code class="docutils literal"><span class="pre">root</span></code>.</dd>
|
||||
<dt>source</dt>
|
||||
<dd>If supplied, copy this file from the host running cdist to the target.
|
||||
If not supplied, an empty file or directory will be created.
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.49. cdist-type__filesystem(7) — cdist 6.5.5 documentation</title>
|
||||
<title>16.49. cdist-type__filesystem(7) — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.50. cdist-type__firewalld_rule(7) — cdist 6.5.5 documentation</title>
|
||||
<title>16.50. cdist-type__firewalld_rule(7) — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.51. cdist-type__firewalld_start(7) — cdist 6.5.5 documentation</title>
|
||||
<title>16.51. cdist-type__firewalld_start(7) — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.52. cdist-type__git(7) — cdist 6.5.5 documentation</title>
|
||||
<title>16.52. cdist-type__git(7) — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.53. cdist-type__go_get(7) — cdist 6.5.5 documentation</title>
|
||||
<title>16.53. cdist-type__go_get(7) — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.54. cdist-type__golang_from_vendor(7) — cdist 6.5.5 documentation</title>
|
||||
<title>16.54. cdist-type__golang_from_vendor(7) — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.55. cdist-type__grafana_dashboard(7) — cdist 6.5.5 documentation</title>
|
||||
<title>16.55. cdist-type__grafana_dashboard(7) — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.56. cdist-type__group(7) — cdist 6.5.5 documentation</title>
|
||||
<title>16.56. cdist-type__group(7) — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.57. cdist-type__hostname(7) — cdist 6.5.5 documentation</title>
|
||||
<title>16.57. cdist-type__hostname(7) — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.58. cdist-type__hosts(7) — cdist 6.5.5 documentation</title>
|
||||
<title>16.58. cdist-type__hosts(7) — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.59. cdist-type__install_bootloader_grub(7) — cdist 6.5.5 documentation</title>
|
||||
<title>16.59. cdist-type__install_bootloader_grub(7) — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.60. cdist-type__install_chroot_mount(7) — cdist 6.5.5 documentation</title>
|
||||
<title>16.60. cdist-type__install_chroot_mount(7) — cdist 6.5.6 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'6.5.5',
|
||||
VERSION:'6.5.6',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.5.5
|
||||
6.5.6
|
||||
</div>
|
||||
|
||||
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue