Update cdist beta

This commit is contained in:
Darko Poljak 2019-10-01 07:28:27 +02:00
parent b077eefb13
commit e450475763
190 changed files with 1374 additions and 719 deletions

View File

@ -24,13 +24,13 @@ For example, to create ubuntu PreOS:
.. code-block:: sh
$ cdist preos ubuntu /preos/preos-ubuntu -b -C \
$ cdist preos ubuntu /preos/preos-ubuntu -B -C \
-k ~/.ssh/id_rsa.pub -p /preos/pxe-ubuntu \
-t "/usr/bin/curl 192.168.111.5:3000/cdist/install/"
For more info about available options see cdist manual page.
This will bootstrap (``-b``) ubuntu PreOS in ``/preos/preos-ubuntu`` directory, it
This will bootstrap (``-B``) ubuntu PreOS in ``/preos/preos-ubuntu`` directory, it
will be configured (``-C``) using default built-in initial manifest and with
specified ssh authorized key (``-k``) and with specified trigger command (``-t``).
After bootstrapping and configuration PXE

View File

@ -182,7 +182,7 @@ The following types are available:
- __docker_swarm (`cdist-type__docker_swarm(7) <man7/cdist-type__docker_swarm.html>`_)
- __dog_vdi (`cdist-type__dog_vdi(7) <man7/cdist-type__dog_vdi.html>`_)
- __dot_file (`cdist-type__dot_file(7) <man7/cdist-type__dot_file.html>`_)
- __file (`cdist-type__file(7) <man7/cdist-type__file.html>`_)
- __file_old (`cdist-type__file_old(7) <man7/cdist-type__file_old.html>`_)
- __filesystem (`cdist-type__filesystem(7) <man7/cdist-type__filesystem.html>`_)
- __firewalld_rule (`cdist-type__firewalld_rule(7) <man7/cdist-type__firewalld_rule.html>`_)
- __firewalld_start (`cdist-type__firewalld_start(7) <man7/cdist-type__firewalld_start.html>`_)

View File

@ -842,8 +842,7 @@ EXAMPLES
% cdist config -f loadbalancers
# Configure hosts read from file web.hosts using 16 parallel jobs
# (beta functionality)
% cdist config -b -j 16 -f web.hosts
% cdist config -j 16 -f web.hosts
# Display banner
cdist banner
@ -901,25 +900,25 @@ EXAMPLES
# Create default debian PreOS in debug mode with config
# trigger command
$ cdist preos debian /preos/preos-debian -b -vvvv -C \
$ cdist preos debian /preos/preos-debian -vvvv -C \
-k ~/.ssh/id_rsa.pub -p /preos/pxe-debian \
-t "/usr/bin/curl 192.168.111.5:3000/config/"
# Create ubuntu PreOS with install trigger command
$ cdist preos ubuntu /preos/preos-ubuntu -b -C \
$ cdist preos ubuntu /preos/preos-ubuntu -C \
-k ~/.ssh/id_rsa.pub -p /preos/pxe-ubuntu \
-t "/usr/bin/curl 192.168.111.5:3000/install/"
# Create ubuntu PreOS on drive /dev/sdb with install trigger command
# and set root password to 'password'.
$ cdist preos ubuntu /mnt -b -B -C \
$ cdist preos ubuntu /mnt -B -C \
-k ~/.ssh/id_rsa.pub -D /dev/sdb \
-t "/usr/bin/curl 192.168.111.5:3000/install/" \
-P password
# Start trigger in verbose mode that will configure host using specified
# init manifest
% cdist trigger -b -v -i ~/.cdist/manifest/init-for-triggered
% cdist trigger -v -i ~/.cdist/manifest/init-for-triggered
ENVIRONMENT

View File

@ -0,0 +1,124 @@
cdist-type__file(7)
===================
NAME
----
cdist-type__file - Manage files.
DESCRIPTION
-----------
This cdist type allows you to create files, remove files and set file
attributes on the target.
If the file already exists on the target, then if it is a:
regular file, and state is:
present
replace it with the source file if they are not equal
exists
do nothing
symlink
replace it with the source file
directory
replace it with the source file
One exception is that when state is pre-exists, an error is raised if
the file would have been created otherwise (e.g. it is not present or
not a regular file).
In any case, make sure that the file attributes are as specified.
REQUIRED PARAMETERS
-------------------
None.
OPTIONAL PARAMETERS
-------------------
state
'present', 'absent', 'exists' or 'pre-exists', defaults to 'present' where:
present
the file is exactly the one from source
absent
the file does not exist
exists
the file from source but only if it doesn't already exist
pre-exists
check that the file exists and is a regular file, but do not
create or modify it
group
Group to chgrp to.
mode
Unix permissions, suitable for chmod.
owner
User to chown to.
source
If supplied, copy this file from the host running cdist to the target.
If not supplied, an empty file or directory will be created.
If source is '-' (dash), take what was written to stdin as the file content.
onchange
The code to run if file is modified.
MESSAGES
--------
chgrp <group>
Changed group membership
chown <owner>
Changed owner
chmod <mode>
Changed mode
create
Empty file was created (no --source specified)
remove
File exists, but state is absent, file will be removed by generated code.
upload
File was uploaded
EXAMPLES
--------
.. code-block:: sh
# Create /etc/cdist-configured as an empty file
__file /etc/cdist-configured
# The same thing
__file /etc/cdist-configured --state present
# Use __file from another type
__file /etc/issue --source "$__type/files/archlinux" --state present
# Delete existing file
__file /etc/cdist-configured --state absent
# Supply some more settings
__file /etc/shadow --source "$__type/files/shadow" \
--owner root --group shadow --mode 0640 \
--state present
# Provide a default file, but let the user change it
__file /home/frodo/.bashrc --source "/etc/skel/.bashrc" \
--state exists \
--owner frodo --mode 0600
# Check that the file is present, show an error when it is not
__file /etc/somefile --state pre-exists
# Take file content from stdin
__file /tmp/whatever --owner root --group root --mode 644 --source - << DONE
Here goes the content for /tmp/whatever
DONE
AUTHORS
-------
Nico Schottelius <nico-cdist--@--schottelius.org>
COPYING
-------
Copyright \(C) 2011-2013 Nico Schottelius. You can redistribute it
and/or modify it under the terms of the GNU General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.

View File

@ -35,6 +35,8 @@ mode
owner
User to chown to.
recursive
Passes the --recursive flag to git when cloning the repository.
EXAMPLES
--------

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>25. Best practice &mdash; cdist 5.1.3 documentation</title>
<title>25. Best practice &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'./',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>12. Bootstrap &mdash; cdist 5.1.3 documentation</title>
<title>12. Bootstrap &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'./',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>27. Local cache overview &mdash; cdist 5.1.3 documentation</title>
<title>27. Local cache overview &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'./',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>13. Configuration &mdash; cdist 5.1.3 documentation</title>
<title>13. Configuration &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'./',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>17. Explorer &mdash; cdist 5.1.3 documentation</title>
<title>17. Explorer &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'./',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>2. Features &mdash; cdist 5.1.3 documentation</title>
<title>2. Features &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'./',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>30. Hacking &mdash; cdist 5.1.3 documentation</title>
<title>30. Hacking &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'./',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>4. How to install cdist &mdash; cdist 5.1.3 documentation</title>
<title>4. How to install cdist &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'./',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>23. cdist integration / using cdist as library &mdash; cdist 5.1.3 documentation</title>
<title>23. cdist integration / using cdist as library &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'./',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>20. Inventory &mdash; cdist 5.1.3 documentation</title>
<title>20. Inventory &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'./',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>14. Manifest &mdash; cdist 5.1.3 documentation</title>
<title>14. Manifest &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'./',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>18. Messaging &mdash; cdist 5.1.3 documentation</title>
<title>18. Messaging &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'./',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>3. Supported operating systems &mdash; cdist 5.1.3 documentation</title>
<title>3. Supported operating systems &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'./',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>19. Parallelization &mdash; cdist 5.1.3 documentation</title>
<title>19. Parallelization &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'./',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>22. PreOS &mdash; cdist 5.1.3 documentation</title>
<title>22. PreOS &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'./',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>
@ -226,13 +226,13 @@ Currently supported PreOS-es include:</p>
<p>PreOS is created using cdist preos command. preos command has subcommands that
create the desired PreOS.</p>
<p>For example, to create ubuntu PreOS:</p>
<div class="highlight-sh"><div class="highlight"><pre><span></span>$ cdist preos ubuntu /preos/preos-ubuntu -b -C <span class="se">\</span>
<div class="highlight-sh"><div class="highlight"><pre><span></span>$ cdist preos ubuntu /preos/preos-ubuntu -B -C <span class="se">\</span>
-k ~/.ssh/id_rsa.pub -p /preos/pxe-ubuntu <span class="se">\</span>
-t <span class="s2">&quot;/usr/bin/curl 192.168.111.5:3000/cdist/install/&quot;</span>
</pre></div>
</div>
<p>For more info about available options see cdist manual page.</p>
<p>This will bootstrap (<code class="docutils literal"><span class="pre">-b</span></code>) ubuntu PreOS in <code class="docutils literal"><span class="pre">/preos/preos-ubuntu</span></code> directory, it
<p>This will bootstrap (<code class="docutils literal"><span class="pre">-B</span></code>) ubuntu PreOS in <code class="docutils literal"><span class="pre">/preos/preos-ubuntu</span></code> directory, it
will be configured (<code class="docutils literal"><span class="pre">-C</span></code>) using default built-in initial manifest and with
specified ssh authorized key (<code class="docutils literal"><span class="pre">-k</span></code>) and with specified trigger command (<code class="docutils literal"><span class="pre">-t</span></code>).
After bootstrapping and configuration PXE

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>7. Quickstart &mdash; cdist 5.1.3 documentation</title>
<title>7. Quickstart &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'./',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>8. Dive into real world cdist &mdash; cdist 5.1.3 documentation</title>
<title>8. Dive into real world cdist &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'./',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>24. Reference &mdash; cdist 5.1.3 documentation</title>
<title>24. Reference &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'./',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>
@ -361,7 +361,7 @@ This directory is referenced by the variable __object (see below).</dd>
<li>__docker_swarm (<a class="reference external" href="man7/cdist-type__docker_swarm.html">cdist-type__docker_swarm(7)</a>)</li>
<li>__dog_vdi (<a class="reference external" href="man7/cdist-type__dog_vdi.html">cdist-type__dog_vdi(7)</a>)</li>
<li>__dot_file (<a class="reference external" href="man7/cdist-type__dot_file.html">cdist-type__dot_file(7)</a>)</li>
<li>__file (<a class="reference external" href="man7/cdist-type__file.html">cdist-type__file(7)</a>)</li>
<li>__file_old (<a class="reference external" href="man7/cdist-type__file_old.html">cdist-type__file_old(7)</a>)</li>
<li>__filesystem (<a class="reference external" href="man7/cdist-type__filesystem.html">cdist-type__filesystem(7)</a>)</li>
<li>__firewalld_rule (<a class="reference external" href="man7/cdist-type__firewalld_rule.html">cdist-type__firewalld_rule(7)</a>)</li>
<li>__firewalld_start (<a class="reference external" href="man7/cdist-type__firewalld_start.html">cdist-type__firewalld_start(7)</a>)</li>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>29. Remote exec and copy commands &mdash; cdist 5.1.3 documentation</title>
<title>29. Remote exec and copy commands &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'./',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>28. Saving output streams &mdash; cdist 5.1.3 documentation</title>
<title>28. Saving output streams &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'./',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>26. Execution stages &mdash; cdist 5.1.3 documentation</title>
<title>26. Execution stages &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'./',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>6. Support &mdash; cdist 5.1.3 documentation</title>
<title>6. Support &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'./',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>21. Trigger &mdash; cdist 5.1.3 documentation</title>
<title>21. Trigger &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'./',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>31. Troubleshooting &mdash; cdist 5.1.3 documentation</title>
<title>31. Troubleshooting &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'./',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -71,7 +71,7 @@
<div class="version">
5.1.3
6.0.0
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>15. cdist type &mdash; cdist 5.1.3 documentation</title>
<title>15. cdist type &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'./',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>16. cdist types &mdash; cdist 5.1.3 documentation</title>
<title>16. cdist types &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'./',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>
@ -159,7 +159,7 @@
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__docker_swarm.html">16.44. cdist-type__docker_swarm(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__dog_vdi.html">16.45. cdist-type__dog_vdi(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__dot_file.html">16.46. cdist-type__dot_file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__file.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__file_old.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__filesystem.html">16.48. cdist-type__filesystem(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__firewalld_rule.html">16.49. cdist-type__firewalld_rule(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__firewalld_start.html">16.50. cdist-type__firewalld_start(7)</a></li>
@ -393,7 +393,7 @@
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__docker_swarm.html">16.44. cdist-type__docker_swarm(7)</a></li>
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__dog_vdi.html">16.45. cdist-type__dog_vdi(7)</a></li>
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__dot_file.html">16.46. cdist-type__dot_file(7)</a></li>
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__file.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__file_old.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__filesystem.html">16.48. cdist-type__filesystem(7)</a></li>
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__firewalld_rule.html">16.49. cdist-type__firewalld_rule(7)</a></li>
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__firewalld_start.html">16.50. cdist-type__firewalld_start(7)</a></li>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>5. How to upgrade cdist &mdash; cdist 5.1.3 documentation</title>
<title>5. How to upgrade cdist &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'./',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>1. Why should I use cdist? &mdash; cdist 5.1.3 documentation</title>
<title>1. Why should I use cdist? &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'./',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>

View File

@ -9,7 +9,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Index &mdash; cdist 5.1.3 documentation</title>
<title>Index &mdash; cdist 6.0.0 documentation</title>
@ -24,7 +24,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'./',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -71,7 +71,7 @@
<div class="version">
5.1.3
6.0.0
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>cdist - usable configuration management &mdash; cdist 5.1.3 documentation</title>
<title>cdist - usable configuration management &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'./',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -71,7 +71,7 @@
<div class="version">
5.1.3
6.0.0
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>10. cdist-dump(1) &mdash; cdist 5.1.3 documentation</title>
<title>10. cdist-dump(1) &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'../',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>11. cdist-new-type(1) &mdash; cdist 5.1.3 documentation</title>
<title>11. cdist-new-type(1) &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'../',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>9. cdist(1) &mdash; cdist 5.1.3 documentation</title>
<title>9. cdist(1) &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'../',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>
@ -939,8 +939,7 @@ command is executed with host address enclosed in square brackets
% cdist config -f loadbalancers
<span class="c1"># Configure hosts read from file web.hosts using 16 parallel jobs</span>
<span class="c1"># (beta functionality)</span>
% cdist config -b -j <span class="m">16</span> -f web.hosts
% cdist config -j <span class="m">16</span> -f web.hosts
<span class="c1"># Display banner</span>
cdist banner
@ -998,25 +997,25 @@ $ cdist config -b -A
<span class="c1"># Create default debian PreOS in debug mode with config</span>
<span class="c1"># trigger command</span>
$ cdist preos debian /preos/preos-debian -b -vvvv -C <span class="se">\</span>
$ cdist preos debian /preos/preos-debian -vvvv -C <span class="se">\</span>
-k ~/.ssh/id_rsa.pub -p /preos/pxe-debian <span class="se">\</span>
-t <span class="s2">&quot;/usr/bin/curl 192.168.111.5:3000/config/&quot;</span>
<span class="c1"># Create ubuntu PreOS with install trigger command</span>
$ cdist preos ubuntu /preos/preos-ubuntu -b -C <span class="se">\</span>
$ cdist preos ubuntu /preos/preos-ubuntu -C <span class="se">\</span>
-k ~/.ssh/id_rsa.pub -p /preos/pxe-ubuntu <span class="se">\</span>
-t <span class="s2">&quot;/usr/bin/curl 192.168.111.5:3000/install/&quot;</span>
<span class="c1"># Create ubuntu PreOS on drive /dev/sdb with install trigger command</span>
<span class="c1"># and set root password to &#39;password&#39;.</span>
$ cdist preos ubuntu /mnt -b -B -C <span class="se">\</span>
$ cdist preos ubuntu /mnt -B -C <span class="se">\</span>
-k ~/.ssh/id_rsa.pub -D /dev/sdb <span class="se">\</span>
-t <span class="s2">&quot;/usr/bin/curl 192.168.111.5:3000/install/&quot;</span> <span class="se">\</span>
-P password
<span class="c1"># Start trigger in verbose mode that will configure host using specified</span>
<span class="c1"># init manifest</span>
% cdist trigger -b -v -i ~/.cdist/manifest/init-for-triggered
% cdist trigger -v -i ~/.cdist/manifest/init-for-triggered
</pre></div>
</div>
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>16.1. cdist-type__acl(7) &mdash; cdist 5.1.3 documentation</title>
<title>16.1. cdist-type__acl(7) &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'../',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>
@ -169,7 +169,7 @@
<li class="toctree-l2"><a class="reference internal" href="cdist-type__docker_swarm.html">16.44. cdist-type__docker_swarm(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dog_vdi.html">16.45. cdist-type__dog_vdi(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dot_file.html">16.46. cdist-type__dot_file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file_old.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__filesystem.html">16.48. cdist-type__filesystem(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_rule.html">16.49. cdist-type__firewalld_rule(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_start.html">16.50. cdist-type__firewalld_start(7)</a></li>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>16.2. cdist-type__apt_default_release(7) &mdash; cdist 5.1.3 documentation</title>
<title>16.2. cdist-type__apt_default_release(7) &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'../',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>
@ -168,7 +168,7 @@
<li class="toctree-l2"><a class="reference internal" href="cdist-type__docker_swarm.html">16.44. cdist-type__docker_swarm(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dog_vdi.html">16.45. cdist-type__dog_vdi(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dot_file.html">16.46. cdist-type__dot_file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file_old.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__filesystem.html">16.48. cdist-type__filesystem(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_rule.html">16.49. cdist-type__firewalld_rule(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_start.html">16.50. cdist-type__firewalld_start(7)</a></li>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>16.3. cdist-type__apt_key(7) &mdash; cdist 5.1.3 documentation</title>
<title>16.3. cdist-type__apt_key(7) &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'../',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>
@ -168,7 +168,7 @@
<li class="toctree-l2"><a class="reference internal" href="cdist-type__docker_swarm.html">16.44. cdist-type__docker_swarm(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dog_vdi.html">16.45. cdist-type__dog_vdi(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dot_file.html">16.46. cdist-type__dot_file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file_old.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__filesystem.html">16.48. cdist-type__filesystem(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_rule.html">16.49. cdist-type__firewalld_rule(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_start.html">16.50. cdist-type__firewalld_start(7)</a></li>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>16.4. cdist-type__apt_key_uri(7) &mdash; cdist 5.1.3 documentation</title>
<title>16.4. cdist-type__apt_key_uri(7) &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'../',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>
@ -168,7 +168,7 @@
<li class="toctree-l2"><a class="reference internal" href="cdist-type__docker_swarm.html">16.44. cdist-type__docker_swarm(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dog_vdi.html">16.45. cdist-type__dog_vdi(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dot_file.html">16.46. cdist-type__dot_file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file_old.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__filesystem.html">16.48. cdist-type__filesystem(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_rule.html">16.49. cdist-type__firewalld_rule(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_start.html">16.50. cdist-type__firewalld_start(7)</a></li>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>16.5. cdist-type__apt_mark(7) &mdash; cdist 5.1.3 documentation</title>
<title>16.5. cdist-type__apt_mark(7) &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'../',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>
@ -168,7 +168,7 @@
<li class="toctree-l2"><a class="reference internal" href="cdist-type__docker_swarm.html">16.44. cdist-type__docker_swarm(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dog_vdi.html">16.45. cdist-type__dog_vdi(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dot_file.html">16.46. cdist-type__dot_file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file_old.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__filesystem.html">16.48. cdist-type__filesystem(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_rule.html">16.49. cdist-type__firewalld_rule(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_start.html">16.50. cdist-type__firewalld_start(7)</a></li>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>16.6. cdist-type__apt_norecommends(7) &mdash; cdist 5.1.3 documentation</title>
<title>16.6. cdist-type__apt_norecommends(7) &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'../',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>
@ -168,7 +168,7 @@
<li class="toctree-l2"><a class="reference internal" href="cdist-type__docker_swarm.html">16.44. cdist-type__docker_swarm(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dog_vdi.html">16.45. cdist-type__dog_vdi(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dot_file.html">16.46. cdist-type__dot_file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file_old.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__filesystem.html">16.48. cdist-type__filesystem(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_rule.html">16.49. cdist-type__firewalld_rule(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_start.html">16.50. cdist-type__firewalld_start(7)</a></li>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>16.7. cdist-type__apt_ppa(7) &mdash; cdist 5.1.3 documentation</title>
<title>16.7. cdist-type__apt_ppa(7) &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'../',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>
@ -168,7 +168,7 @@
<li class="toctree-l2"><a class="reference internal" href="cdist-type__docker_swarm.html">16.44. cdist-type__docker_swarm(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dog_vdi.html">16.45. cdist-type__dog_vdi(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dot_file.html">16.46. cdist-type__dot_file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file_old.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__filesystem.html">16.48. cdist-type__filesystem(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_rule.html">16.49. cdist-type__firewalld_rule(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_start.html">16.50. cdist-type__firewalld_start(7)</a></li>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>16.8. cdist-type__apt_source(7) &mdash; cdist 5.1.3 documentation</title>
<title>16.8. cdist-type__apt_source(7) &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'../',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>
@ -169,7 +169,7 @@
<li class="toctree-l2"><a class="reference internal" href="cdist-type__docker_swarm.html">16.44. cdist-type__docker_swarm(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dog_vdi.html">16.45. cdist-type__dog_vdi(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dot_file.html">16.46. cdist-type__dot_file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file_old.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__filesystem.html">16.48. cdist-type__filesystem(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_rule.html">16.49. cdist-type__firewalld_rule(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_start.html">16.50. cdist-type__firewalld_start(7)</a></li>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>16.9. cdist-type__apt_update_index(7) &mdash; cdist 5.1.3 documentation</title>
<title>16.9. cdist-type__apt_update_index(7) &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'../',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>
@ -168,7 +168,7 @@
<li class="toctree-l2"><a class="reference internal" href="cdist-type__docker_swarm.html">16.44. cdist-type__docker_swarm(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dog_vdi.html">16.45. cdist-type__dog_vdi(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dot_file.html">16.46. cdist-type__dot_file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file_old.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__filesystem.html">16.48. cdist-type__filesystem(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_rule.html">16.49. cdist-type__firewalld_rule(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_start.html">16.50. cdist-type__firewalld_start(7)</a></li>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>16.10. cdist-type__block(7) &mdash; cdist 5.1.3 documentation</title>
<title>16.10. cdist-type__block(7) &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'../',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>
@ -169,7 +169,7 @@
<li class="toctree-l2"><a class="reference internal" href="cdist-type__docker_swarm.html">16.44. cdist-type__docker_swarm(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dog_vdi.html">16.45. cdist-type__dog_vdi(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dot_file.html">16.46. cdist-type__dot_file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file_old.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__filesystem.html">16.48. cdist-type__filesystem(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_rule.html">16.49. cdist-type__firewalld_rule(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_start.html">16.50. cdist-type__firewalld_start(7)</a></li>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>16.11. cdist-type__ccollect_source(7) &mdash; cdist 5.1.3 documentation</title>
<title>16.11. cdist-type__ccollect_source(7) &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'../',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>
@ -171,7 +171,7 @@
<li class="toctree-l2"><a class="reference internal" href="cdist-type__docker_swarm.html">16.44. cdist-type__docker_swarm(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dog_vdi.html">16.45. cdist-type__dog_vdi(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dot_file.html">16.46. cdist-type__dot_file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file_old.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__filesystem.html">16.48. cdist-type__filesystem(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_rule.html">16.49. cdist-type__firewalld_rule(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_start.html">16.50. cdist-type__firewalld_start(7)</a></li>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>16.12. cdist-type__cdist(7) &mdash; cdist 5.1.3 documentation</title>
<title>16.12. cdist-type__cdist(7) &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'../',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>
@ -168,7 +168,7 @@
<li class="toctree-l2"><a class="reference internal" href="cdist-type__docker_swarm.html">16.44. cdist-type__docker_swarm(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dog_vdi.html">16.45. cdist-type__dog_vdi(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dot_file.html">16.46. cdist-type__dot_file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file_old.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__filesystem.html">16.48. cdist-type__filesystem(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_rule.html">16.49. cdist-type__firewalld_rule(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_start.html">16.50. cdist-type__firewalld_start(7)</a></li>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>16.13. cdist-type__cdist_preos_trigger(7) &mdash; cdist 5.1.3 documentation</title>
<title>16.13. cdist-type__cdist_preos_trigger(7) &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'../',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>
@ -168,7 +168,7 @@
<li class="toctree-l2"><a class="reference internal" href="cdist-type__docker_swarm.html">16.44. cdist-type__docker_swarm(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dog_vdi.html">16.45. cdist-type__dog_vdi(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dot_file.html">16.46. cdist-type__dot_file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file_old.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__filesystem.html">16.48. cdist-type__filesystem(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_rule.html">16.49. cdist-type__firewalld_rule(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_start.html">16.50. cdist-type__firewalld_start(7)</a></li>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>16.14. cdist-type__cdistmarker(7) &mdash; cdist 5.1.3 documentation</title>
<title>16.14. cdist-type__cdistmarker(7) &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'../',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>
@ -168,7 +168,7 @@
<li class="toctree-l2"><a class="reference internal" href="cdist-type__docker_swarm.html">16.44. cdist-type__docker_swarm(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dog_vdi.html">16.45. cdist-type__dog_vdi(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dot_file.html">16.46. cdist-type__dot_file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file_old.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__filesystem.html">16.48. cdist-type__filesystem(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_rule.html">16.49. cdist-type__firewalld_rule(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_start.html">16.50. cdist-type__firewalld_start(7)</a></li>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>16.15. cdist-type__check_messages(7) &mdash; cdist 5.1.3 documentation</title>
<title>16.15. cdist-type__check_messages(7) &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'../',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>
@ -167,7 +167,7 @@
<li class="toctree-l2"><a class="reference internal" href="cdist-type__docker_swarm.html">16.44. cdist-type__docker_swarm(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dog_vdi.html">16.45. cdist-type__dog_vdi(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dot_file.html">16.46. cdist-type__dot_file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file_old.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__filesystem.html">16.48. cdist-type__filesystem(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_rule.html">16.49. cdist-type__firewalld_rule(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_start.html">16.50. cdist-type__firewalld_start(7)</a></li>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>16.16. cdist-type__chroot_mount(7) &mdash; cdist 5.1.3 documentation</title>
<title>16.16. cdist-type__chroot_mount(7) &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'../',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>
@ -169,7 +169,7 @@
<li class="toctree-l2"><a class="reference internal" href="cdist-type__docker_swarm.html">16.44. cdist-type__docker_swarm(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dog_vdi.html">16.45. cdist-type__dog_vdi(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dot_file.html">16.46. cdist-type__dot_file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file_old.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__filesystem.html">16.48. cdist-type__filesystem(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_rule.html">16.49. cdist-type__firewalld_rule(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_start.html">16.50. cdist-type__firewalld_start(7)</a></li>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>16.17. cdist-type__chroot_umount(7) &mdash; cdist 5.1.3 documentation</title>
<title>16.17. cdist-type__chroot_umount(7) &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'../',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>
@ -170,7 +170,7 @@
<li class="toctree-l2"><a class="reference internal" href="cdist-type__docker_swarm.html">16.44. cdist-type__docker_swarm(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dog_vdi.html">16.45. cdist-type__dog_vdi(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dot_file.html">16.46. cdist-type__dot_file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file_old.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__filesystem.html">16.48. cdist-type__filesystem(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_rule.html">16.49. cdist-type__firewalld_rule(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_start.html">16.50. cdist-type__firewalld_start(7)</a></li>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>16.18. cdist-type__clean_path(7) &mdash; cdist 5.1.3 documentation</title>
<title>16.18. cdist-type__clean_path(7) &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'../',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>
@ -168,7 +168,7 @@
<li class="toctree-l2"><a class="reference internal" href="cdist-type__docker_swarm.html">16.44. cdist-type__docker_swarm(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dog_vdi.html">16.45. cdist-type__dog_vdi(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dot_file.html">16.46. cdist-type__dot_file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file_old.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__filesystem.html">16.48. cdist-type__filesystem(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_rule.html">16.49. cdist-type__firewalld_rule(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_start.html">16.50. cdist-type__firewalld_start(7)</a></li>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>16.19. cdist-type__config_file(7) &mdash; cdist 5.1.3 documentation</title>
<title>16.19. cdist-type__config_file(7) &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'../',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>
@ -169,7 +169,7 @@
<li class="toctree-l2"><a class="reference internal" href="cdist-type__docker_swarm.html">16.44. cdist-type__docker_swarm(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dog_vdi.html">16.45. cdist-type__dog_vdi(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dot_file.html">16.46. cdist-type__dot_file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file_old.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__filesystem.html">16.48. cdist-type__filesystem(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_rule.html">16.49. cdist-type__firewalld_rule(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_start.html">16.50. cdist-type__firewalld_start(7)</a></li>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>16.20. cdist-type__consul(7) &mdash; cdist 5.1.3 documentation</title>
<title>16.20. cdist-type__consul(7) &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'../',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>
@ -170,7 +170,7 @@
<li class="toctree-l2"><a class="reference internal" href="cdist-type__docker_swarm.html">16.44. cdist-type__docker_swarm(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dog_vdi.html">16.45. cdist-type__dog_vdi(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dot_file.html">16.46. cdist-type__dot_file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file_old.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__filesystem.html">16.48. cdist-type__filesystem(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_rule.html">16.49. cdist-type__firewalld_rule(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_start.html">16.50. cdist-type__firewalld_start(7)</a></li>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>16.21. cdist-type__consul_agent(7) &mdash; cdist 5.1.3 documentation</title>
<title>16.21. cdist-type__consul_agent(7) &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'../',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>
@ -170,7 +170,7 @@
<li class="toctree-l2"><a class="reference internal" href="cdist-type__docker_swarm.html">16.44. cdist-type__docker_swarm(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dog_vdi.html">16.45. cdist-type__dog_vdi(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dot_file.html">16.46. cdist-type__dot_file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file_old.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__filesystem.html">16.48. cdist-type__filesystem(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_rule.html">16.49. cdist-type__firewalld_rule(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_start.html">16.50. cdist-type__firewalld_start(7)</a></li>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>16.22. cdist-type__consul_check(7) &mdash; cdist 5.1.3 documentation</title>
<title>16.22. cdist-type__consul_check(7) &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'../',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>
@ -169,7 +169,7 @@
<li class="toctree-l2"><a class="reference internal" href="cdist-type__docker_swarm.html">16.44. cdist-type__docker_swarm(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dog_vdi.html">16.45. cdist-type__dog_vdi(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dot_file.html">16.46. cdist-type__dot_file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file_old.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__filesystem.html">16.48. cdist-type__filesystem(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_rule.html">16.49. cdist-type__firewalld_rule(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_start.html">16.50. cdist-type__firewalld_start(7)</a></li>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>16.23. cdist-type__consul_reload(7) &mdash; cdist 5.1.3 documentation</title>
<title>16.23. cdist-type__consul_reload(7) &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'../',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>
@ -168,7 +168,7 @@
<li class="toctree-l2"><a class="reference internal" href="cdist-type__docker_swarm.html">16.44. cdist-type__docker_swarm(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dog_vdi.html">16.45. cdist-type__dog_vdi(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dot_file.html">16.46. cdist-type__dot_file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file_old.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__filesystem.html">16.48. cdist-type__filesystem(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_rule.html">16.49. cdist-type__firewalld_rule(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_start.html">16.50. cdist-type__firewalld_start(7)</a></li>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>16.24. cdist-type__consul_service(7) &mdash; cdist 5.1.3 documentation</title>
<title>16.24. cdist-type__consul_service(7) &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'../',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>
@ -169,7 +169,7 @@
<li class="toctree-l2"><a class="reference internal" href="cdist-type__docker_swarm.html">16.44. cdist-type__docker_swarm(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dog_vdi.html">16.45. cdist-type__dog_vdi(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dot_file.html">16.46. cdist-type__dot_file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file_old.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__filesystem.html">16.48. cdist-type__filesystem(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_rule.html">16.49. cdist-type__firewalld_rule(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_start.html">16.50. cdist-type__firewalld_start(7)</a></li>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>16.25. cdist-type__consul_template(7) &mdash; cdist 5.1.3 documentation</title>
<title>16.25. cdist-type__consul_template(7) &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'../',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>
@ -170,7 +170,7 @@
<li class="toctree-l2"><a class="reference internal" href="cdist-type__docker_swarm.html">16.44. cdist-type__docker_swarm(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dog_vdi.html">16.45. cdist-type__dog_vdi(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dot_file.html">16.46. cdist-type__dot_file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file_old.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__filesystem.html">16.48. cdist-type__filesystem(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_rule.html">16.49. cdist-type__firewalld_rule(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_start.html">16.50. cdist-type__firewalld_start(7)</a></li>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>16.26. cdist-type__consul_template_template(7) &mdash; cdist 5.1.3 documentation</title>
<title>16.26. cdist-type__consul_template_template(7) &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'../',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>
@ -169,7 +169,7 @@
<li class="toctree-l2"><a class="reference internal" href="cdist-type__docker_swarm.html">16.44. cdist-type__docker_swarm(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dog_vdi.html">16.45. cdist-type__dog_vdi(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dot_file.html">16.46. cdist-type__dot_file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file_old.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__filesystem.html">16.48. cdist-type__filesystem(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_rule.html">16.49. cdist-type__firewalld_rule(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_start.html">16.50. cdist-type__firewalld_start(7)</a></li>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>16.27. cdist-type__consul_watch_checks(7) &mdash; cdist 5.1.3 documentation</title>
<title>16.27. cdist-type__consul_watch_checks(7) &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'../',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>
@ -169,7 +169,7 @@
<li class="toctree-l2"><a class="reference internal" href="cdist-type__docker_swarm.html">16.44. cdist-type__docker_swarm(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dog_vdi.html">16.45. cdist-type__dog_vdi(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dot_file.html">16.46. cdist-type__dot_file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file_old.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__filesystem.html">16.48. cdist-type__filesystem(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_rule.html">16.49. cdist-type__firewalld_rule(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_start.html">16.50. cdist-type__firewalld_start(7)</a></li>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>16.28. cdist-type__consul_watch_event(7) &mdash; cdist 5.1.3 documentation</title>
<title>16.28. cdist-type__consul_watch_event(7) &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'../',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>
@ -169,7 +169,7 @@
<li class="toctree-l2"><a class="reference internal" href="cdist-type__docker_swarm.html">16.44. cdist-type__docker_swarm(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dog_vdi.html">16.45. cdist-type__dog_vdi(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dot_file.html">16.46. cdist-type__dot_file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file_old.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__filesystem.html">16.48. cdist-type__filesystem(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_rule.html">16.49. cdist-type__firewalld_rule(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_start.html">16.50. cdist-type__firewalld_start(7)</a></li>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>16.29. cdist-type__consul_watch_key(7) &mdash; cdist 5.1.3 documentation</title>
<title>16.29. cdist-type__consul_watch_key(7) &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'../',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>
@ -169,7 +169,7 @@
<li class="toctree-l2"><a class="reference internal" href="cdist-type__docker_swarm.html">16.44. cdist-type__docker_swarm(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dog_vdi.html">16.45. cdist-type__dog_vdi(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dot_file.html">16.46. cdist-type__dot_file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file_old.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__filesystem.html">16.48. cdist-type__filesystem(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_rule.html">16.49. cdist-type__firewalld_rule(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_start.html">16.50. cdist-type__firewalld_start(7)</a></li>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>16.30. cdist-type__consul_watch_keyprefix(7) &mdash; cdist 5.1.3 documentation</title>
<title>16.30. cdist-type__consul_watch_keyprefix(7) &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'../',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>
@ -169,7 +169,7 @@
<li class="toctree-l2"><a class="reference internal" href="cdist-type__docker_swarm.html">16.44. cdist-type__docker_swarm(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dog_vdi.html">16.45. cdist-type__dog_vdi(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dot_file.html">16.46. cdist-type__dot_file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file_old.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__filesystem.html">16.48. cdist-type__filesystem(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_rule.html">16.49. cdist-type__firewalld_rule(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_start.html">16.50. cdist-type__firewalld_start(7)</a></li>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>16.31. cdist-type__consul_watch_nodes(7) &mdash; cdist 5.1.3 documentation</title>
<title>16.31. cdist-type__consul_watch_nodes(7) &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'../',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>
@ -169,7 +169,7 @@
<li class="toctree-l2"><a class="reference internal" href="cdist-type__docker_swarm.html">16.44. cdist-type__docker_swarm(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dog_vdi.html">16.45. cdist-type__dog_vdi(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dot_file.html">16.46. cdist-type__dot_file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file_old.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__filesystem.html">16.48. cdist-type__filesystem(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_rule.html">16.49. cdist-type__firewalld_rule(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_start.html">16.50. cdist-type__firewalld_start(7)</a></li>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>16.32. cdist-type__consul_watch_service(7) &mdash; cdist 5.1.3 documentation</title>
<title>16.32. cdist-type__consul_watch_service(7) &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'../',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>
@ -170,7 +170,7 @@
<li class="toctree-l2"><a class="reference internal" href="cdist-type__docker_swarm.html">16.44. cdist-type__docker_swarm(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dog_vdi.html">16.45. cdist-type__dog_vdi(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dot_file.html">16.46. cdist-type__dot_file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file_old.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__filesystem.html">16.48. cdist-type__filesystem(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_rule.html">16.49. cdist-type__firewalld_rule(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_start.html">16.50. cdist-type__firewalld_start(7)</a></li>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>16.33. cdist-type__consul_watch_services(7) &mdash; cdist 5.1.3 documentation</title>
<title>16.33. cdist-type__consul_watch_services(7) &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'../',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>
@ -169,7 +169,7 @@
<li class="toctree-l2"><a class="reference internal" href="cdist-type__docker_swarm.html">16.44. cdist-type__docker_swarm(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dog_vdi.html">16.45. cdist-type__dog_vdi(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dot_file.html">16.46. cdist-type__dot_file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file_old.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__filesystem.html">16.48. cdist-type__filesystem(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_rule.html">16.49. cdist-type__firewalld_rule(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_start.html">16.50. cdist-type__firewalld_start(7)</a></li>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>16.34. cdist-type__cron(7) &mdash; cdist 5.1.3 documentation</title>
<title>16.34. cdist-type__cron(7) &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'../',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>
@ -169,7 +169,7 @@
<li class="toctree-l2"><a class="reference internal" href="cdist-type__docker_swarm.html">16.44. cdist-type__docker_swarm(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dog_vdi.html">16.45. cdist-type__dog_vdi(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dot_file.html">16.46. cdist-type__dot_file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file_old.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__filesystem.html">16.48. cdist-type__filesystem(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_rule.html">16.49. cdist-type__firewalld_rule(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_start.html">16.50. cdist-type__firewalld_start(7)</a></li>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>16.35. cdist-type__daemontools(7) &mdash; cdist 5.1.3 documentation</title>
<title>16.35. cdist-type__daemontools(7) &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'../',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>
@ -170,7 +170,7 @@
<li class="toctree-l2"><a class="reference internal" href="cdist-type__docker_swarm.html">16.44. cdist-type__docker_swarm(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dog_vdi.html">16.45. cdist-type__dog_vdi(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dot_file.html">16.46. cdist-type__dot_file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file_old.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__filesystem.html">16.48. cdist-type__filesystem(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_rule.html">16.49. cdist-type__firewalld_rule(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_start.html">16.50. cdist-type__firewalld_start(7)</a></li>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>16.36. cdist-type__daemontools_service(7) &mdash; cdist 5.1.3 documentation</title>
<title>16.36. cdist-type__daemontools_service(7) &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'../',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>
@ -170,7 +170,7 @@
<li class="toctree-l2"><a class="reference internal" href="cdist-type__docker_swarm.html">16.44. cdist-type__docker_swarm(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dog_vdi.html">16.45. cdist-type__dog_vdi(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dot_file.html">16.46. cdist-type__dot_file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file_old.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__filesystem.html">16.48. cdist-type__filesystem(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_rule.html">16.49. cdist-type__firewalld_rule(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_start.html">16.50. cdist-type__firewalld_start(7)</a></li>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>16.37. cdist-type__debconf_set_selections(7) &mdash; cdist 5.1.3 documentation</title>
<title>16.37. cdist-type__debconf_set_selections(7) &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'../',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>
@ -168,7 +168,7 @@
<li class="toctree-l2"><a class="reference internal" href="cdist-type__docker_swarm.html">16.44. cdist-type__docker_swarm(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dog_vdi.html">16.45. cdist-type__dog_vdi(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dot_file.html">16.46. cdist-type__dot_file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file_old.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__filesystem.html">16.48. cdist-type__filesystem(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_rule.html">16.49. cdist-type__firewalld_rule(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_start.html">16.50. cdist-type__firewalld_start(7)</a></li>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>16.38. cdist-type__directory(7) &mdash; cdist 5.1.3 documentation</title>
<title>16.38. cdist-type__directory(7) &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'../',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>
@ -170,7 +170,7 @@
<li class="toctree-l2"><a class="reference internal" href="cdist-type__docker_swarm.html">16.44. cdist-type__docker_swarm(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dog_vdi.html">16.45. cdist-type__dog_vdi(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dot_file.html">16.46. cdist-type__dot_file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file_old.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__filesystem.html">16.48. cdist-type__filesystem(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_rule.html">16.49. cdist-type__firewalld_rule(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_start.html">16.50. cdist-type__firewalld_start(7)</a></li>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>16.39. cdist-type__docker(7) &mdash; cdist 5.1.3 documentation</title>
<title>16.39. cdist-type__docker(7) &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'../',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>
@ -169,7 +169,7 @@
<li class="toctree-l2"><a class="reference internal" href="cdist-type__docker_swarm.html">16.44. cdist-type__docker_swarm(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dog_vdi.html">16.45. cdist-type__dog_vdi(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dot_file.html">16.46. cdist-type__dot_file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file_old.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__filesystem.html">16.48. cdist-type__filesystem(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_rule.html">16.49. cdist-type__firewalld_rule(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_start.html">16.50. cdist-type__firewalld_start(7)</a></li>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>16.40. cdist-type__docker_compose(7) &mdash; cdist 5.1.3 documentation</title>
<title>16.40. cdist-type__docker_compose(7) &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'../',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>
@ -169,7 +169,7 @@
<li class="toctree-l2"><a class="reference internal" href="cdist-type__docker_swarm.html">16.44. cdist-type__docker_swarm(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dog_vdi.html">16.45. cdist-type__dog_vdi(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dot_file.html">16.46. cdist-type__dot_file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file_old.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__filesystem.html">16.48. cdist-type__filesystem(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_rule.html">16.49. cdist-type__firewalld_rule(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_start.html">16.50. cdist-type__firewalld_start(7)</a></li>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>16.41. cdist-type__docker_config(7) &mdash; cdist 5.1.3 documentation</title>
<title>16.41. cdist-type__docker_config(7) &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'../',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>
@ -168,7 +168,7 @@
<li class="toctree-l2"><a class="reference internal" href="cdist-type__docker_swarm.html">16.44. cdist-type__docker_swarm(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dog_vdi.html">16.45. cdist-type__dog_vdi(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dot_file.html">16.46. cdist-type__dot_file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file_old.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__filesystem.html">16.48. cdist-type__filesystem(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_rule.html">16.49. cdist-type__firewalld_rule(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_start.html">16.50. cdist-type__firewalld_start(7)</a></li>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>16.42. cdist-type__docker_secret(7) &mdash; cdist 5.1.3 documentation</title>
<title>16.42. cdist-type__docker_secret(7) &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'../',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>
@ -168,7 +168,7 @@
<li class="toctree-l2"><a class="reference internal" href="cdist-type__docker_swarm.html">16.44. cdist-type__docker_swarm(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dog_vdi.html">16.45. cdist-type__dog_vdi(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dot_file.html">16.46. cdist-type__dot_file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file_old.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__filesystem.html">16.48. cdist-type__filesystem(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_rule.html">16.49. cdist-type__firewalld_rule(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_start.html">16.50. cdist-type__firewalld_start(7)</a></li>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>16.43. cdist-type__docker_stack(7) &mdash; cdist 5.1.3 documentation</title>
<title>16.43. cdist-type__docker_stack(7) &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'../',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>
@ -167,7 +167,7 @@
<li class="toctree-l2"><a class="reference internal" href="cdist-type__docker_swarm.html">16.44. cdist-type__docker_swarm(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dog_vdi.html">16.45. cdist-type__dog_vdi(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dot_file.html">16.46. cdist-type__dot_file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file_old.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__filesystem.html">16.48. cdist-type__filesystem(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_rule.html">16.49. cdist-type__firewalld_rule(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_start.html">16.50. cdist-type__firewalld_start(7)</a></li>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>16.44. cdist-type__docker_swarm(7) &mdash; cdist 5.1.3 documentation</title>
<title>16.44. cdist-type__docker_swarm(7) &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'../',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>
@ -167,7 +167,7 @@
</li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dog_vdi.html">16.45. cdist-type__dog_vdi(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dot_file.html">16.46. cdist-type__dot_file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file_old.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__filesystem.html">16.48. cdist-type__filesystem(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_rule.html">16.49. cdist-type__firewalld_rule(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_start.html">16.50. cdist-type__firewalld_start(7)</a></li>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>16.45. cdist-type__dog_vdi(7) &mdash; cdist 5.1.3 documentation</title>
<title>16.45. cdist-type__dog_vdi(7) &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'../',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>
@ -168,7 +168,7 @@
</ul>
</li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dot_file.html">16.46. cdist-type__dot_file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file_old.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__filesystem.html">16.48. cdist-type__filesystem(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_rule.html">16.49. cdist-type__firewalld_rule(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_start.html">16.50. cdist-type__firewalld_start(7)</a></li>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>16.46. cdist-type__dot_file(7) &mdash; cdist 5.1.3 documentation</title>
<title>16.46. cdist-type__dot_file(7) &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'../',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -44,7 +44,7 @@
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
<link rel="index" title="Index" href="../genindex.html" />
<link rel="search" title="Search" href="../search.html" />
<link rel="next" title="16.47. cdist-type__file(7)" href="cdist-type__file.html" />
<link rel="next" title="16.47. cdist-type__file(7)" href="cdist-type__file_old.html" />
<link rel="prev" title="16.45. cdist-type__dog_vdi(7)" href="cdist-type__dog_vdi.html" />
</head>
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>
@ -169,7 +169,7 @@
<li class="toctree-l3"><a class="reference internal" href="#copying">16.46.8. COPYING</a></li>
</ul>
</li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file_old.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__filesystem.html">16.48. cdist-type__filesystem(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_rule.html">16.49. cdist-type__firewalld_rule(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_start.html">16.50. cdist-type__firewalld_start(7)</a></li>
@ -429,7 +429,7 @@ under the terms of the GNU General Public License version 3 or later
<div class="rst-footer-buttons" role="navigation" aria-label="footer navigation">
<a href="cdist-type__file.html" class="btn btn-neutral float-right" title="16.47. cdist-type__file(7)" accesskey="n" rel="next">Next <span class="fa fa-arrow-circle-right"></span></a>
<a href="cdist-type__file_old.html" class="btn btn-neutral float-right" title="16.47. cdist-type__file(7)" accesskey="n" rel="next">Next <span class="fa fa-arrow-circle-right"></span></a>
<a href="cdist-type__dog_vdi.html" class="btn btn-neutral float-left" title="16.45. cdist-type__dog_vdi(7)" accesskey="p" rel="prev"><span class="fa fa-arrow-circle-left"></span> Previous</a>

View File

@ -0,0 +1,529 @@
<!DOCTYPE html>
<!--[if IE 8]><html class="no-js lt-ie9" lang="en" > <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en" > <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>16.47. cdist-type__file(7) &mdash; cdist 6.0.0 documentation</title>
<script type="text/javascript" src="../_static/js/modernizr.min.js"></script>
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'../',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
HAS_SOURCE: true,
SOURCELINK_SUFFIX: '.txt'
};
</script>
<script type="text/javascript" src="../_static/jquery.js"></script>
<script type="text/javascript" src="../_static/underscore.js"></script>
<script type="text/javascript" src="../_static/doctools.js"></script>
<script type="text/javascript" src="../_static/js/theme.js"></script>
<link rel="stylesheet" href="../_static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
<link rel="index" title="Index" href="../genindex.html" />
<link rel="search" title="Search" href="../search.html" />
<link rel="next" title="16.48. cdist-type__filesystem(7)" href="cdist-type__filesystem.html" />
<link rel="prev" title="16.46. cdist-type__dot_file(7)" href="cdist-type__dot_file.html" />
</head>
<body class="wy-body-for-nav">
<div class="wy-grid-for-nav">
<nav data-toggle="wy-nav-shift" class="wy-nav-side">
<div class="wy-side-scroll">
<div class="wy-side-nav-search" >
<a href="../index.html" class="icon icon-home"> cdist
<img src="../_static/cdist-logo.jpeg" class="logo" alt="Logo"/>
</a>
<div class="version">
6.0.0
</div>
<div role="search">
<form id="rtd-search-form" class="wy-form" action="../search.html" method="get">
<input type="text" name="q" placeholder="Search docs" />
<input type="hidden" name="check_keywords" value="yes" />
<input type="hidden" name="area" value="default" />
</form>
</div>
</div>
<div class="wy-menu wy-menu-vertical" data-spy="affix" role="navigation" aria-label="main navigation">
<ul class="current">
<li class="toctree-l1"><a class="reference internal" href="../cdist-why.html">1. Why should I use cdist?</a></li>
<li class="toctree-l1"><a class="reference internal" href="../cdist-features.html">2. Features</a></li>
<li class="toctree-l1"><a class="reference internal" href="../cdist-os.html">3. Supported operating systems</a></li>
<li class="toctree-l1"><a class="reference internal" href="../cdist-install.html">4. How to install cdist</a></li>
<li class="toctree-l1"><a class="reference internal" href="../cdist-upgrade.html">5. How to upgrade cdist</a></li>
<li class="toctree-l1"><a class="reference internal" href="../cdist-support.html">6. Support</a></li>
<li class="toctree-l1"><a class="reference internal" href="../cdist-quickstart.html">7. Quickstart</a></li>
<li class="toctree-l1"><a class="reference internal" href="../cdist-real-world.html">8. Dive into real world cdist</a></li>
<li class="toctree-l1"><a class="reference internal" href="../man1/cdist.html">9. cdist(1)</a></li>
<li class="toctree-l1"><a class="reference internal" href="../man1/cdist-dump.html">10. cdist-dump(1)</a></li>
<li class="toctree-l1"><a class="reference internal" href="../man1/cdist-new-type.html">11. cdist-new-type(1)</a></li>
<li class="toctree-l1"><a class="reference internal" href="../cdist-bootstrap.html">12. Bootstrap</a></li>
<li class="toctree-l1"><a class="reference internal" href="../cdist-configuration.html">13. Configuration</a></li>
<li class="toctree-l1"><a class="reference internal" href="../cdist-manifest.html">14. Manifest</a></li>
<li class="toctree-l1"><a class="reference internal" href="../cdist-type.html">15. cdist type</a></li>
<li class="toctree-l1 current"><a class="reference internal" href="../cdist-types.html">16. cdist types</a><ul class="current">
<li class="toctree-l2"><a class="reference internal" href="cdist-type__acl.html">16.1. cdist-type__acl(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__apt_default_release.html">16.2. cdist-type__apt_default_release(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__apt_key.html">16.3. cdist-type__apt_key(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__apt_key_uri.html">16.4. cdist-type__apt_key_uri(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__apt_mark.html">16.5. cdist-type__apt_mark(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__apt_norecommends.html">16.6. cdist-type__apt_norecommends(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__apt_ppa.html">16.7. cdist-type__apt_ppa(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__apt_source.html">16.8. cdist-type__apt_source(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__apt_update_index.html">16.9. cdist-type__apt_update_index(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__block.html">16.10. cdist-type__block(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ccollect_source.html">16.11. cdist-type__ccollect_source(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__cdist.html">16.12. cdist-type__cdist(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__cdist_preos_trigger.html">16.13. cdist-type__cdist_preos_trigger(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__cdistmarker.html">16.14. cdist-type__cdistmarker(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__check_messages.html">16.15. cdist-type__check_messages(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__chroot_mount.html">16.16. cdist-type__chroot_mount(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__chroot_umount.html">16.17. cdist-type__chroot_umount(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__clean_path.html">16.18. cdist-type__clean_path(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__config_file.html">16.19. cdist-type__config_file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__consul.html">16.20. cdist-type__consul(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__consul_agent.html">16.21. cdist-type__consul_agent(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__consul_check.html">16.22. cdist-type__consul_check(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__consul_reload.html">16.23. cdist-type__consul_reload(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__consul_service.html">16.24. cdist-type__consul_service(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__consul_template.html">16.25. cdist-type__consul_template(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__consul_template_template.html">16.26. cdist-type__consul_template_template(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__consul_watch_checks.html">16.27. cdist-type__consul_watch_checks(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__consul_watch_event.html">16.28. cdist-type__consul_watch_event(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__consul_watch_key.html">16.29. cdist-type__consul_watch_key(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__consul_watch_keyprefix.html">16.30. cdist-type__consul_watch_keyprefix(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__consul_watch_nodes.html">16.31. cdist-type__consul_watch_nodes(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__consul_watch_service.html">16.32. cdist-type__consul_watch_service(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__consul_watch_services.html">16.33. cdist-type__consul_watch_services(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__cron.html">16.34. cdist-type__cron(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__daemontools.html">16.35. cdist-type__daemontools(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__daemontools_service.html">16.36. cdist-type__daemontools_service(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__debconf_set_selections.html">16.37. cdist-type__debconf_set_selections(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__directory.html">16.38. cdist-type__directory(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__docker.html">16.39. cdist-type__docker(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__docker_compose.html">16.40. cdist-type__docker_compose(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__docker_config.html">16.41. cdist-type__docker_config(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__docker_secret.html">16.42. cdist-type__docker_secret(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__docker_stack.html">16.43. cdist-type__docker_stack(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__docker_swarm.html">16.44. cdist-type__docker_swarm(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dog_vdi.html">16.45. cdist-type__dog_vdi(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dot_file.html">16.46. cdist-type__dot_file(7)</a></li>
<li class="toctree-l2 current"><a class="current reference internal" href="#">16.47. cdist-type__file(7)</a><ul>
<li class="toctree-l3"><a class="reference internal" href="#name">16.47.1. NAME</a></li>
<li class="toctree-l3"><a class="reference internal" href="#description">16.47.2. DESCRIPTION</a></li>
<li class="toctree-l3"><a class="reference internal" href="#required-parameters">16.47.3. REQUIRED PARAMETERS</a></li>
<li class="toctree-l3"><a class="reference internal" href="#optional-parameters">16.47.4. OPTIONAL PARAMETERS</a></li>
<li class="toctree-l3"><a class="reference internal" href="#messages">16.47.5. MESSAGES</a></li>
<li class="toctree-l3"><a class="reference internal" href="#examples">16.47.6. EXAMPLES</a></li>
<li class="toctree-l3"><a class="reference internal" href="#authors">16.47.7. AUTHORS</a></li>
<li class="toctree-l3"><a class="reference internal" href="#copying">16.47.8. COPYING</a></li>
</ul>
</li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__filesystem.html">16.48. cdist-type__filesystem(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_rule.html">16.49. cdist-type__firewalld_rule(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_start.html">16.50. cdist-type__firewalld_start(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__git.html">16.51. cdist-type__git(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__go_get.html">16.52. cdist-type__go_get(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__golang_from_vendor.html">16.53. cdist-type__golang_from_vendor(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__grafana_dashboard.html">16.54. cdist-type__grafana_dashboard(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__group.html">16.55. cdist-type__group(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__hostname.html">16.56. cdist-type__hostname(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__hosts.html">16.57. cdist-type__hosts(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__install_bootloader_grub.html">16.58. cdist-type__install_bootloader_grub(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__install_chroot_mount.html">16.59. cdist-type__install_chroot_mount(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__install_chroot_umount.html">16.60. cdist-type__install_chroot_umount(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__install_config.html">16.61. cdist-type__install_config(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__install_coreos.html">16.62. cdist-type__install_coreos(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__install_directory.html">16.63. cdist-type__directory(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__install_file.html">16.64. cdist-type__install_file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__install_fstab.html">16.65. cdist-type__install_fstab(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__install_generate_fstab.html">16.66. cdist-type__install_generate_fstab(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__install_mkfs.html">16.67. cdist-type__install_mkfs(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__install_mount.html">16.68. cdist-type__install_mount(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__install_partition_msdos.html">16.69. cdist-type__install_partition_msdos(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__install_partition_msdos_apply.html">16.70. cdist-type__install_partition_msdos_apply(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__install_reboot.html">16.71. cdist-type__install_reboot(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__install_reset_disk.html">16.72. cdist-type__install_reset_disk(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__install_stage.html">16.73. cdist-type__install_stage(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__install_umount.html">16.74. cdist-type__install_umount(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__iptables_apply.html">16.75. cdist-type__iptables_apply(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__iptables_rule.html">16.76. cdist-type__iptables_rule(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__issue.html">16.77. cdist-type__issue(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__jail.html">16.78. cdist-type__jail(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__jail_freebsd10.html">16.79. cdist-type__jail_freebsd10(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__jail_freebsd9.html">16.80. cdist-type__jail_freebsd9(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__key_value.html">16.81. cdist-type__key_value(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__keyboard.html">16.82. cdist-type__keyboard(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__letsencrypt_cert.html">16.83. cdist-type__letsencrypt_cert(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__line.html">16.84. cdist-type__line(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__link.html">16.85. cdist-type__link(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__locale.html">16.86. cdist-type__locale(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__locale_system.html">16.87. cdist-type__locale_system(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__motd.html">16.88. cdist-type__motd(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__mount.html">16.89. cdist-type__mount(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__mysql_database.html">16.90. cdist-type__mysql_database(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__package.html">16.91. cdist-type__package(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__package_apk.html">16.92. cdist-type__package_akp(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__package_apt.html">16.93. cdist-type__package_apt(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__package_dpkg.html">16.94. cdist-type__package_dpkg(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__package_emerge.html">16.95. cdist-type__package_emerge(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__package_emerge_dependencies.html">16.96. cdist-type__package_emerge_dependencies(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__package_luarocks.html">16.97. cdist-type__package_luarocks(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__package_opkg.html">16.98. cdist-type__package_opkg(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__package_pacman.html">16.99. cdist-type__package_pacman(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__package_pip.html">16.100. cdist-type__package_pip(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__package_pkg_freebsd.html">16.101. cdist-type__package_pkg_freebsd(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__package_pkg_openbsd.html">16.102. cdist-type__package_pkg(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__package_pkgng_freebsd.html">16.103. cdist-type__package_pkgng_freebsd(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__package_rubygem.html">16.104. cdist-type__package_rubygem(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__package_update_index.html">16.105. cdist-type__package_update_index(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__package_upgrade_all.html">16.106. cdist-type__package_upgrade_all(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__package_yum.html">16.107. cdist-type__package_yum(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__package_zypper.html">16.108. cdist-type__package_zypper(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__pacman_conf.html">16.109. cdist-type__pacman_conf(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__pacman_conf_integrate.html">16.110. cdist-type__pacman_conf_integrate(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__pf_apply.html">16.111. cdist-type__pf_apply(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__pf_ruleset.html">16.112. cdist-type__pf_ruleset(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ping.html">16.113. cdist-type__ping(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__postfix.html">16.114. cdist-type__postfix(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__postfix_master.html">16.115. cdist-type__postfix_master(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__postfix_postconf.html">16.116. cdist-type__postfix_postconf(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__postfix_postmap.html">16.117. cdist-type__postfix_postmap(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__postfix_reload.html">16.118. cdist-type__postfix_reload(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__postgres_database.html">16.119. cdist-type__postgres_database(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__postgres_extension.html">16.120. cdist-type__postgres_extension(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__postgres_role.html">16.121. cdist-type__postgres_role(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__process.html">16.122. cdist-type__process(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__prometheus_alertmanager.html">16.123. cdist-type__prometheus_alertmanager(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__prometheus_exporter.html">16.124. cdist-type__prometheus_exporter(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__prometheus_server.html">16.125. cdist-type__prometheus_server(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__pyvenv.html">16.126. cdist-type__pyvenv(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__qemu_img.html">16.127. cdist-type__qemu_img(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__rbenv.html">16.128. cdist-type__rbenv(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__rsync.html">16.129. cdist-type__rsync(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__rvm.html">16.130. cdist-type__rvm(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__rvm_gem.html">16.131. cdist-type__rvm_gemset(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__rvm_gemset.html">16.132. cdist-type__rvm_gemset(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__rvm_ruby.html">16.133. cdist-type__rvm_ruby(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ssh_authorized_key.html">16.134. cdist-type__ssh_authorized_key(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ssh_authorized_keys.html">16.135. cdist-type__ssh_authorized_keys(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ssh_dot_ssh.html">16.136. cdist-type__ssh_dot_ssh(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__staged_file.html">16.137. cdist-type__staged_file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__start_on_boot.html">16.138. cdist-type__start_on_boot(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__sysctl.html">16.139. cdist-type__sysctl(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_unit.html">16.140. cdist-type__systemd_unit(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__timezone.html">16.141. cdist-type__timezone(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.142. cdist-type__ufw(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.143. cdist-type__ufw_rule(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.144. cdist-type__update_alternatives(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.145. cdist-type__user(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.146. cdist-type__user_groups(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.147. cdist-type__yum_repo(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.148. cdist-type__zypper_repo(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.149. cdist-type__zypper_service(7)</a></li>
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="../cdist-explorer.html">17. Explorer</a></li>
<li class="toctree-l1"><a class="reference internal" href="../cdist-messaging.html">18. Messaging</a></li>
<li class="toctree-l1"><a class="reference internal" href="../cdist-parallelization.html">19. Parallelization</a></li>
<li class="toctree-l1"><a class="reference internal" href="../cdist-inventory.html">20. Inventory</a></li>
<li class="toctree-l1"><a class="reference internal" href="../cdist-trigger.html">21. Trigger</a></li>
<li class="toctree-l1"><a class="reference internal" href="../cdist-preos.html">22. PreOS</a></li>
<li class="toctree-l1"><a class="reference internal" href="../cdist-integration.html">23. cdist integration / using cdist as library</a></li>
<li class="toctree-l1"><a class="reference internal" href="../cdist-reference.html">24. Reference</a></li>
<li class="toctree-l1"><a class="reference internal" href="../cdist-best-practice.html">25. Best practice</a></li>
<li class="toctree-l1"><a class="reference internal" href="../cdist-stages.html">26. Execution stages</a></li>
<li class="toctree-l1"><a class="reference internal" href="../cdist-cache.html">27. Local cache overview</a></li>
<li class="toctree-l1"><a class="reference internal" href="../cdist-saving-output-streams.html">28. Saving output streams</a></li>
<li class="toctree-l1"><a class="reference internal" href="../cdist-remote-exec-copy.html">29. Remote exec and copy commands</a></li>
<li class="toctree-l1"><a class="reference internal" href="../cdist-hacker.html">30. Hacking</a></li>
<li class="toctree-l1"><a class="reference internal" href="../cdist-troubleshooting.html">31. Troubleshooting</a></li>
</ul>
</div>
</div>
</nav>
<section data-toggle="wy-nav-shift" class="wy-nav-content-wrap">
<nav class="wy-nav-top" aria-label="top navigation">
<i data-toggle="wy-nav-top" class="fa fa-bars"></i>
<a href="../index.html">cdist</a>
</nav>
<div class="wy-nav-content">
<div class="rst-content">
<div role="navigation" aria-label="breadcrumbs navigation">
<ul class="wy-breadcrumbs">
<li><a href="../index.html">Docs</a> &raquo;</li>
<li><a href="../cdist-types.html">16. cdist types</a> &raquo;</li>
<li>16.47. cdist-type__file(7)</li>
<li class="wy-breadcrumbs-aside">
<a href="../_sources/man7/cdist-type__file_old.rst.txt" rel="nofollow"> View page source</a>
</li>
</ul>
<hr/>
</div>
<div role="main" class="document" itemscope="itemscope" itemtype="http://schema.org/Article">
<div itemprop="articleBody">
<div class="section" id="cdist-type-file-7">
<h1>16.47. cdist-type__file(7)<a class="headerlink" href="#cdist-type-file-7" title="Permalink to this headline"></a></h1>
<div class="section" id="name">
<h2>16.47.1. NAME<a class="headerlink" href="#name" title="Permalink to this headline"></a></h2>
<p>cdist-type__file - Manage files.</p>
</div>
<div class="section" id="description">
<h2>16.47.2. DESCRIPTION<a class="headerlink" href="#description" title="Permalink to this headline"></a></h2>
<p>This cdist type allows you to create files, remove files and set file
attributes on the target.</p>
<p>If the file already exists on the target, then if it is a:</p>
<dl class="docutils">
<dt>regular file, and state is:</dt>
<dd><dl class="first last docutils">
<dt>present</dt>
<dd>replace it with the source file if they are not equal</dd>
<dt>exists</dt>
<dd>do nothing</dd>
</dl>
</dd>
<dt>symlink</dt>
<dd>replace it with the source file</dd>
<dt>directory</dt>
<dd>replace it with the source file</dd>
</dl>
<p>One exception is that when state is pre-exists, an error is raised if
the file would have been created otherwise (e.g. it is not present or
not a regular file).</p>
<p>In any case, make sure that the file attributes are as specified.</p>
</div>
<div class="section" id="required-parameters">
<h2>16.47.3. REQUIRED PARAMETERS<a class="headerlink" href="#required-parameters" title="Permalink to this headline"></a></h2>
<p>None.</p>
</div>
<div class="section" id="optional-parameters">
<h2>16.47.4. OPTIONAL PARAMETERS<a class="headerlink" href="#optional-parameters" title="Permalink to this headline"></a></h2>
<dl class="docutils">
<dt>state</dt>
<dd><p class="first">'present', 'absent', 'exists' or 'pre-exists', defaults to 'present' where:</p>
<dl class="last docutils">
<dt>present</dt>
<dd>the file is exactly the one from source</dd>
<dt>absent</dt>
<dd>the file does not exist</dd>
<dt>exists</dt>
<dd>the file from source but only if it doesn't already exist</dd>
<dt>pre-exists</dt>
<dd>check that the file exists and is a regular file, but do not
create or modify it</dd>
</dl>
</dd>
<dt>group</dt>
<dd>Group to chgrp to.</dd>
<dt>mode</dt>
<dd>Unix permissions, suitable for chmod.</dd>
<dt>owner</dt>
<dd>User to chown to.</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.
If source is '-' (dash), take what was written to stdin as the file content.</dd>
<dt>onchange</dt>
<dd>The code to run if file is modified.</dd>
</dl>
</div>
<div class="section" id="messages">
<h2>16.47.5. MESSAGES<a class="headerlink" href="#messages" title="Permalink to this headline"></a></h2>
<dl class="docutils">
<dt>chgrp &lt;group&gt;</dt>
<dd>Changed group membership</dd>
<dt>chown &lt;owner&gt;</dt>
<dd>Changed owner</dd>
<dt>chmod &lt;mode&gt;</dt>
<dd>Changed mode</dd>
<dt>create</dt>
<dd>Empty file was created (no --source specified)</dd>
<dt>remove</dt>
<dd>File exists, but state is absent, file will be removed by generated code.</dd>
<dt>upload</dt>
<dd>File was uploaded</dd>
</dl>
</div>
<div class="section" id="examples">
<h2>16.47.6. EXAMPLES<a class="headerlink" href="#examples" title="Permalink to this headline"></a></h2>
<div class="highlight-sh"><div class="highlight"><pre><span></span><span class="c1"># Create /etc/cdist-configured as an empty file</span>
__file /etc/cdist-configured
<span class="c1"># The same thing</span>
__file /etc/cdist-configured --state present
<span class="c1"># Use __file from another type</span>
__file /etc/issue --source <span class="s2">&quot;</span><span class="nv">$__type</span><span class="s2">/files/archlinux&quot;</span> --state present
<span class="c1"># Delete existing file</span>
__file /etc/cdist-configured --state absent
<span class="c1"># Supply some more settings</span>
__file /etc/shadow --source <span class="s2">&quot;</span><span class="nv">$__type</span><span class="s2">/files/shadow&quot;</span> <span class="se">\</span>
--owner root --group shadow --mode <span class="m">0640</span> <span class="se">\</span>
--state present
<span class="c1"># Provide a default file, but let the user change it</span>
__file /home/frodo/.bashrc --source <span class="s2">&quot;/etc/skel/.bashrc&quot;</span> <span class="se">\</span>
--state exists <span class="se">\</span>
--owner frodo --mode <span class="m">0600</span>
<span class="c1"># Check that the file is present, show an error when it is not</span>
__file /etc/somefile --state pre-exists
<span class="c1"># Take file content from stdin</span>
__file /tmp/whatever --owner root --group root --mode <span class="m">644</span> --source - <span class="s">&lt;&lt; DONE</span>
<span class="s"> Here goes the content for /tmp/whatever</span>
<span class="s">DONE</span>
</pre></div>
</div>
</div>
<div class="section" id="authors">
<h2>16.47.7. AUTHORS<a class="headerlink" href="#authors" title="Permalink to this headline"></a></h2>
<p>Nico Schottelius &lt;<a class="reference external" href="mailto:nico-cdist--&#37;&#52;&#48;--schottelius&#46;org">nico-cdist--<span>&#64;</span>--schottelius<span>&#46;</span>org</a>&gt;</p>
</div>
<div class="section" id="copying">
<h2>16.47.8. COPYING<a class="headerlink" href="#copying" title="Permalink to this headline"></a></h2>
<p>Copyright (C) 2011-2013 Nico Schottelius. You can redistribute it
and/or modify it under the terms of the GNU General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.</p>
</div>
</div>
</div>
</div>
<footer>
<div class="rst-footer-buttons" role="navigation" aria-label="footer navigation">
<a href="cdist-type__filesystem.html" class="btn btn-neutral float-right" title="16.48. cdist-type__filesystem(7)" accesskey="n" rel="next">Next <span class="fa fa-arrow-circle-right"></span></a>
<a href="cdist-type__dot_file.html" class="btn btn-neutral float-left" title="16.46. cdist-type__dot_file(7)" accesskey="p" rel="prev"><span class="fa fa-arrow-circle-left"></span> Previous</a>
</div>
<hr/>
<div role="contentinfo">
<p>
&copy; Copyright ungleich GmbH 2019
</p>
</div>
Built with <a href="http://sphinx-doc.org/">Sphinx</a> using a <a href="https://github.com/rtfd/sphinx_rtd_theme">theme</a> provided by <a href="https://readthedocs.org">Read the Docs</a>.
</footer>
</div>
</div>
</section>
</div>
<script type="text/javascript">
jQuery(function () {
SphinxRtdTheme.Navigation.enable(true);
});
</script>
</body>
</html>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>16.48. cdist-type__filesystem(7) &mdash; cdist 5.1.3 documentation</title>
<title>16.48. cdist-type__filesystem(7) &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'../',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -45,7 +45,7 @@
<link rel="index" title="Index" href="../genindex.html" />
<link rel="search" title="Search" href="../search.html" />
<link rel="next" title="16.49. cdist-type__firewalld_rule(7)" href="cdist-type__firewalld_rule.html" />
<link rel="prev" title="16.47. cdist-type__file(7)" href="cdist-type__file.html" />
<link rel="prev" title="16.47. cdist-type__file(7)" href="cdist-type__file_old.html" />
</head>
<body class="wy-body-for-nav">
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>
@ -159,7 +159,7 @@
<li class="toctree-l2"><a class="reference internal" href="cdist-type__docker_swarm.html">16.44. cdist-type__docker_swarm(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dog_vdi.html">16.45. cdist-type__dog_vdi(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dot_file.html">16.46. cdist-type__dot_file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file_old.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2 current"><a class="current reference internal" href="#">16.48. cdist-type__filesystem(7)</a><ul>
<li class="toctree-l3"><a class="reference internal" href="#name">16.48.1. NAME</a></li>
<li class="toctree-l3"><a class="reference internal" href="#description">16.48.2. DESCRIPTION</a></li>
@ -449,7 +449,7 @@ granted under the terms of the GNU General Public License version 3 or any later
<a href="cdist-type__firewalld_rule.html" class="btn btn-neutral float-right" title="16.49. cdist-type__firewalld_rule(7)" accesskey="n" rel="next">Next <span class="fa fa-arrow-circle-right"></span></a>
<a href="cdist-type__file.html" class="btn btn-neutral float-left" title="16.47. cdist-type__file(7)" accesskey="p" rel="prev"><span class="fa fa-arrow-circle-left"></span> Previous</a>
<a href="cdist-type__file_old.html" class="btn btn-neutral float-left" title="16.47. cdist-type__file(7)" accesskey="p" rel="prev"><span class="fa fa-arrow-circle-left"></span> Previous</a>
</div>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>16.49. cdist-type__firewalld_rule(7) &mdash; cdist 5.1.3 documentation</title>
<title>16.49. cdist-type__firewalld_rule(7) &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'../',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>
@ -159,7 +159,7 @@
<li class="toctree-l2"><a class="reference internal" href="cdist-type__docker_swarm.html">16.44. cdist-type__docker_swarm(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dog_vdi.html">16.45. cdist-type__dog_vdi(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dot_file.html">16.46. cdist-type__dot_file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file_old.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__filesystem.html">16.48. cdist-type__filesystem(7)</a></li>
<li class="toctree-l2 current"><a class="current reference internal" href="#">16.49. cdist-type__firewalld_rule(7)</a><ul>
<li class="toctree-l3"><a class="reference internal" href="#name">16.49.1. NAME</a></li>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>16.50. cdist-type__firewalld_start(7) &mdash; cdist 5.1.3 documentation</title>
<title>16.50. cdist-type__firewalld_start(7) &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'../',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>
@ -159,7 +159,7 @@
<li class="toctree-l2"><a class="reference internal" href="cdist-type__docker_swarm.html">16.44. cdist-type__docker_swarm(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dog_vdi.html">16.45. cdist-type__dog_vdi(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dot_file.html">16.46. cdist-type__dot_file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file_old.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__filesystem.html">16.48. cdist-type__filesystem(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_rule.html">16.49. cdist-type__firewalld_rule(7)</a></li>
<li class="toctree-l2 current"><a class="current reference internal" href="#">16.50. cdist-type__firewalld_start(7)</a><ul>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>16.51. cdist-type__git(7) &mdash; cdist 5.1.3 documentation</title>
<title>16.51. cdist-type__git(7) &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'../',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>
@ -159,7 +159,7 @@
<li class="toctree-l2"><a class="reference internal" href="cdist-type__docker_swarm.html">16.44. cdist-type__docker_swarm(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dog_vdi.html">16.45. cdist-type__dog_vdi(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dot_file.html">16.46. cdist-type__dot_file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file_old.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__filesystem.html">16.48. cdist-type__filesystem(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_rule.html">16.49. cdist-type__firewalld_rule(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_start.html">16.50. cdist-type__firewalld_start(7)</a></li>
@ -385,6 +385,8 @@ Default branch is &quot;master&quot;</dd>
<dd>Unix permissions, suitable for chmod.</dd>
<dt>owner</dt>
<dd>User to chown to.</dd>
<dt>recursive</dt>
<dd>Passes the --recursive flag to git when cloning the repository.</dd>
</dl>
</div>
<div class="section" id="examples">

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>16.52. cdist-type__go_get(7) &mdash; cdist 5.1.3 documentation</title>
<title>16.52. cdist-type__go_get(7) &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'../',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>
@ -159,7 +159,7 @@
<li class="toctree-l2"><a class="reference internal" href="cdist-type__docker_swarm.html">16.44. cdist-type__docker_swarm(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dog_vdi.html">16.45. cdist-type__dog_vdi(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dot_file.html">16.46. cdist-type__dot_file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file_old.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__filesystem.html">16.48. cdist-type__filesystem(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_rule.html">16.49. cdist-type__firewalld_rule(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_start.html">16.50. cdist-type__firewalld_start(7)</a></li>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>16.53. cdist-type__golang_from_vendor(7) &mdash; cdist 5.1.3 documentation</title>
<title>16.53. cdist-type__golang_from_vendor(7) &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'../',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>
@ -159,7 +159,7 @@
<li class="toctree-l2"><a class="reference internal" href="cdist-type__docker_swarm.html">16.44. cdist-type__docker_swarm(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dog_vdi.html">16.45. cdist-type__dog_vdi(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dot_file.html">16.46. cdist-type__dot_file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file_old.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__filesystem.html">16.48. cdist-type__filesystem(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_rule.html">16.49. cdist-type__firewalld_rule(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_start.html">16.50. cdist-type__firewalld_start(7)</a></li>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>16.54. cdist-type__grafana_dashboard(7) &mdash; cdist 5.1.3 documentation</title>
<title>16.54. cdist-type__grafana_dashboard(7) &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'../',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>
@ -159,7 +159,7 @@
<li class="toctree-l2"><a class="reference internal" href="cdist-type__docker_swarm.html">16.44. cdist-type__docker_swarm(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dog_vdi.html">16.45. cdist-type__dog_vdi(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dot_file.html">16.46. cdist-type__dot_file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file_old.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__filesystem.html">16.48. cdist-type__filesystem(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_rule.html">16.49. cdist-type__firewalld_rule(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_start.html">16.50. cdist-type__firewalld_start(7)</a></li>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>16.55. cdist-type__group(7) &mdash; cdist 5.1.3 documentation</title>
<title>16.55. cdist-type__group(7) &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'../',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>
@ -159,7 +159,7 @@
<li class="toctree-l2"><a class="reference internal" href="cdist-type__docker_swarm.html">16.44. cdist-type__docker_swarm(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dog_vdi.html">16.45. cdist-type__dog_vdi(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dot_file.html">16.46. cdist-type__dot_file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file_old.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__filesystem.html">16.48. cdist-type__filesystem(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_rule.html">16.49. cdist-type__firewalld_rule(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_start.html">16.50. cdist-type__firewalld_start(7)</a></li>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>16.56. cdist-type__hostname(7) &mdash; cdist 5.1.3 documentation</title>
<title>16.56. cdist-type__hostname(7) &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'../',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>
@ -159,7 +159,7 @@
<li class="toctree-l2"><a class="reference internal" href="cdist-type__docker_swarm.html">16.44. cdist-type__docker_swarm(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dog_vdi.html">16.45. cdist-type__dog_vdi(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dot_file.html">16.46. cdist-type__dot_file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file_old.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__filesystem.html">16.48. cdist-type__filesystem(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_rule.html">16.49. cdist-type__firewalld_rule(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_start.html">16.50. cdist-type__firewalld_start(7)</a></li>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>16.57. cdist-type__hosts(7) &mdash; cdist 5.1.3 documentation</title>
<title>16.57. cdist-type__hosts(7) &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'../',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>
@ -159,7 +159,7 @@
<li class="toctree-l2"><a class="reference internal" href="cdist-type__docker_swarm.html">16.44. cdist-type__docker_swarm(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dog_vdi.html">16.45. cdist-type__dog_vdi(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dot_file.html">16.46. cdist-type__dot_file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file_old.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__filesystem.html">16.48. cdist-type__filesystem(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_rule.html">16.49. cdist-type__firewalld_rule(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_start.html">16.50. cdist-type__firewalld_start(7)</a></li>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>16.58. cdist-type__install_bootloader_grub(7) &mdash; cdist 5.1.3 documentation</title>
<title>16.58. cdist-type__install_bootloader_grub(7) &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'../',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>
@ -159,7 +159,7 @@
<li class="toctree-l2"><a class="reference internal" href="cdist-type__docker_swarm.html">16.44. cdist-type__docker_swarm(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dog_vdi.html">16.45. cdist-type__dog_vdi(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dot_file.html">16.46. cdist-type__dot_file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file_old.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__filesystem.html">16.48. cdist-type__filesystem(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_rule.html">16.49. cdist-type__firewalld_rule(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_start.html">16.50. cdist-type__firewalld_start(7)</a></li>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>16.59. cdist-type__install_chroot_mount(7) &mdash; cdist 5.1.3 documentation</title>
<title>16.59. cdist-type__install_chroot_mount(7) &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'../',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>
@ -159,7 +159,7 @@
<li class="toctree-l2"><a class="reference internal" href="cdist-type__docker_swarm.html">16.44. cdist-type__docker_swarm(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dog_vdi.html">16.45. cdist-type__dog_vdi(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dot_file.html">16.46. cdist-type__dot_file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file_old.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__filesystem.html">16.48. cdist-type__filesystem(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_rule.html">16.49. cdist-type__firewalld_rule(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_start.html">16.50. cdist-type__firewalld_start(7)</a></li>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>16.60. cdist-type__install_chroot_umount(7) &mdash; cdist 5.1.3 documentation</title>
<title>16.60. cdist-type__install_chroot_umount(7) &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'../',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>
@ -159,7 +159,7 @@
<li class="toctree-l2"><a class="reference internal" href="cdist-type__docker_swarm.html">16.44. cdist-type__docker_swarm(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dog_vdi.html">16.45. cdist-type__dog_vdi(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dot_file.html">16.46. cdist-type__dot_file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file_old.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__filesystem.html">16.48. cdist-type__filesystem(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_rule.html">16.49. cdist-type__firewalld_rule(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_start.html">16.50. cdist-type__firewalld_start(7)</a></li>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>16.61. cdist-type__install_config(7) &mdash; cdist 5.1.3 documentation</title>
<title>16.61. cdist-type__install_config(7) &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'../',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>
@ -159,7 +159,7 @@
<li class="toctree-l2"><a class="reference internal" href="cdist-type__docker_swarm.html">16.44. cdist-type__docker_swarm(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dog_vdi.html">16.45. cdist-type__dog_vdi(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dot_file.html">16.46. cdist-type__dot_file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file_old.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__filesystem.html">16.48. cdist-type__filesystem(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_rule.html">16.49. cdist-type__firewalld_rule(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_start.html">16.50. cdist-type__firewalld_start(7)</a></li>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>16.62. cdist-type__install_coreos(7) &mdash; cdist 5.1.3 documentation</title>
<title>16.62. cdist-type__install_coreos(7) &mdash; cdist 6.0.0 documentation</title>
@ -23,7 +23,7 @@
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'../',
VERSION:'5.1.3',
VERSION:'6.0.0',
LANGUAGE:'None',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
@ -72,7 +72,7 @@
<div class="version">
5.1.3
6.0.0
</div>
@ -159,7 +159,7 @@
<li class="toctree-l2"><a class="reference internal" href="cdist-type__docker_swarm.html">16.44. cdist-type__docker_swarm(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dog_vdi.html">16.45. cdist-type__dog_vdi(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__dot_file.html">16.46. cdist-type__dot_file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__file_old.html">16.47. cdist-type__file(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__filesystem.html">16.48. cdist-type__filesystem(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_rule.html">16.49. cdist-type__firewalld_rule(7)</a></li>
<li class="toctree-l2"><a class="reference internal" href="cdist-type__firewalld_start.html">16.50. cdist-type__firewalld_start(7)</a></li>

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