forked from ungleich-public/cdist-web
Update beta manual
This commit is contained in:
parent
bc7fabb71f
commit
0cd6bdf896
188 changed files with 704 additions and 566 deletions
|
@ -216,6 +216,73 @@ In the __file type, stdin is used as source for the file, if - is used for sourc
|
|||
....
|
||||
|
||||
|
||||
Stdin inside a loop
|
||||
~~~~~~~~~~~~~~~~~~~
|
||||
Since cdist saves type's stdin content in the object as **$__object/stdin**,
|
||||
so it can be accessed in manifest and gencode-* scripts, this can lead to
|
||||
unexpected behavior. For example, suppose you have some type with the following
|
||||
in its manifest:
|
||||
|
||||
.. code-block:: sh
|
||||
|
||||
if [ -f "$__object/parameter/foo" ]
|
||||
then
|
||||
while read -r l
|
||||
do
|
||||
__file "$l"
|
||||
echo "$l" >&2
|
||||
done < "$__object/parameter/foo"
|
||||
fi
|
||||
|
||||
and init manifest:
|
||||
|
||||
.. code-block:: sh
|
||||
|
||||
__foo foo --foo a --foo b --foo c
|
||||
|
||||
You expect that manifest stderr content is:
|
||||
|
||||
.. code-block:: sh
|
||||
|
||||
a
|
||||
b
|
||||
c
|
||||
|
||||
and that files *a*, *b* and *c* are created. But all you get in manifest stderr
|
||||
is:
|
||||
|
||||
.. code-block:: sh
|
||||
|
||||
a
|
||||
|
||||
and only *a* file is created.
|
||||
|
||||
When redirecting parameter *foo* file content to while's stdin that means that all
|
||||
commands in while body have this same stdin. So when *__file* type gets executed,
|
||||
cdist saves its stdin which means it gets the remaining content of parameter *foo*
|
||||
file, i.e.:
|
||||
|
||||
.. code-block:: sh
|
||||
|
||||
b
|
||||
c
|
||||
|
||||
The solution is to make sure that your types inside such loops get their stdin
|
||||
from somewhere else, e.g. for the above problem *__file* type can get empty
|
||||
stdin from */dev/null*:
|
||||
|
||||
.. code-block:: sh
|
||||
|
||||
if [ -f "$__object/parameter/foo" ]
|
||||
then
|
||||
while read -r l
|
||||
do
|
||||
__file "$l" < /dev/null
|
||||
echo "$l" >&2
|
||||
done < "$__object/parameter/foo"
|
||||
fi
|
||||
|
||||
|
||||
Writing the manifest
|
||||
--------------------
|
||||
In the manifest of a type you can use other types, so your type extends
|
||||
|
|
|
@ -10,11 +10,7 @@ DESCRIPTION
|
|||
-----------
|
||||
ACL must be defined as 3-symbol combination, using ``r``, ``w``, ``x`` and ``-``.
|
||||
|
||||
Fully supported on Linux (tested on Debian and CentOS).
|
||||
|
||||
Partial support for FreeBSD, OSX and Solaris.
|
||||
|
||||
OpenBSD and NetBSD support is not possible.
|
||||
Fully supported and tested on Linux (ext4 filesystem), partial support for FreeBSD.
|
||||
|
||||
See ``setfacl`` and ``acl`` manpages for more details.
|
||||
|
||||
|
|
|
@ -28,6 +28,12 @@ keyserver
|
|||
the keyserver from which to fetch the key. If omitted the default set
|
||||
in ./parameter/default/keyserver is used.
|
||||
|
||||
keydir
|
||||
key save location, defaults to ``/etc/apt/trusted.pgp.d``
|
||||
|
||||
uri
|
||||
the URI from which to download the key
|
||||
|
||||
|
||||
EXAMPLES
|
||||
--------
|
||||
|
@ -47,15 +53,20 @@ EXAMPLES
|
|||
# same thing with other keyserver
|
||||
__apt_key UbuntuArchiveKey --keyid 437D05B5 --keyserver keyserver.ubuntu.com
|
||||
|
||||
# download key from the internet
|
||||
__apt_key rabbitmq \
|
||||
--uri http://www.rabbitmq.com/rabbitmq-signing-key-public.asc
|
||||
|
||||
|
||||
AUTHORS
|
||||
-------
|
||||
Steven Armstrong <steven-cdist--@--armstrong.cc>
|
||||
Ander Punnar <ander-at-kvlt-dot-ee>
|
||||
|
||||
|
||||
COPYING
|
||||
-------
|
||||
Copyright \(C) 2011-2014 Steven Armstrong. 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
|
||||
Copyright \(C) 2011-2019 Steven Armstrong and Ander Punnar. 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.
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>25. Best practice — cdist 5.1.0 documentation</title>
|
||||
<title>25. Best practice — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>12. Bootstrap — cdist 5.1.0 documentation</title>
|
||||
<title>12. Bootstrap — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>27. Local cache overview — cdist 5.1.0 documentation</title>
|
||||
<title>27. Local cache overview — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>13. Configuration — cdist 5.1.0 documentation</title>
|
||||
<title>13. Configuration — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>17. Explorer — cdist 5.1.0 documentation</title>
|
||||
<title>17. Explorer — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>2. Features — cdist 5.1.0 documentation</title>
|
||||
<title>2. Features — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>30. Hacking — cdist 5.1.0 documentation</title>
|
||||
<title>30. Hacking — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>4. How to install cdist — cdist 5.1.0 documentation</title>
|
||||
<title>4. How to install cdist — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>23. cdist integration / using cdist as library — cdist 5.1.0 documentation</title>
|
||||
<title>23. cdist integration / using cdist as library — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>20. Inventory — cdist 5.1.0 documentation</title>
|
||||
<title>20. Inventory — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>14. Manifest — cdist 5.1.0 documentation</title>
|
||||
<title>14. Manifest — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>18. Messaging — cdist 5.1.0 documentation</title>
|
||||
<title>18. Messaging — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>3. Supported operating systems — cdist 5.1.0 documentation</title>
|
||||
<title>3. Supported operating systems — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>19. Parallelization — cdist 5.1.0 documentation</title>
|
||||
<title>19. Parallelization — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>22. PreOS — cdist 5.1.0 documentation</title>
|
||||
<title>22. PreOS — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>7. Quickstart — cdist 5.1.0 documentation</title>
|
||||
<title>7. Quickstart — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>8. Dive into real world cdist — cdist 5.1.0 documentation</title>
|
||||
<title>8. Dive into real world cdist — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>24. Reference — cdist 5.1.0 documentation</title>
|
||||
<title>24. Reference — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>29. Remote exec and copy commands — cdist 5.1.0 documentation</title>
|
||||
<title>29. Remote exec and copy commands — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>28. Saving output streams — cdist 5.1.0 documentation</title>
|
||||
<title>28. Saving output streams — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>26. Execution stages — cdist 5.1.0 documentation</title>
|
||||
<title>26. Execution stages — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>6. Support — cdist 5.1.0 documentation</title>
|
||||
<title>6. Support — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>21. Trigger — cdist 5.1.0 documentation</title>
|
||||
<title>21. Trigger — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>31. Troubleshooting — cdist 5.1.0 documentation</title>
|
||||
<title>31. Troubleshooting — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -71,7 +71,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>15. cdist type — cdist 5.1.0 documentation</title>
|
||||
<title>15. cdist type — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
@ -123,7 +123,10 @@
|
|||
<li class="toctree-l2"><a class="reference internal" href="#how-to-write-a-new-type">15.9. How to write a new type</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="#defining-parameters">15.10. Defining parameters</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="#using-parameters">15.11. Using parameters</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="#input-from-stdin">15.12. Input from stdin</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="#input-from-stdin">15.12. Input from stdin</a><ul>
|
||||
<li class="toctree-l3"><a class="reference internal" href="#stdin-inside-a-loop">15.12.1. Stdin inside a loop</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="#writing-the-manifest">15.13. Writing the manifest</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="#singleton-one-instance-only">15.14. Singleton - one instance only</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="#install-type-with-install-command">15.15. Install - type with install command</a></li>
|
||||
|
@ -400,6 +403,60 @@ about "here documents".</p>
|
|||
....
|
||||
</pre></div>
|
||||
</div>
|
||||
<div class="section" id="stdin-inside-a-loop">
|
||||
<h3>15.12.1. Stdin inside a loop<a class="headerlink" href="#stdin-inside-a-loop" title="Permalink to this headline">¶</a></h3>
|
||||
<p>Since cdist saves type's stdin content in the object as <strong>$__object/stdin</strong>,
|
||||
so it can be accessed in manifest and gencode-* scripts, this can lead to
|
||||
unexpected behavior. For example, suppose you have some type with the following
|
||||
in its manifest:</p>
|
||||
<div class="highlight-sh"><div class="highlight"><pre><span></span><span class="k">if</span> <span class="o">[</span> -f <span class="s2">"</span><span class="nv">$__object</span><span class="s2">/parameter/foo"</span> <span class="o">]</span>
|
||||
<span class="k">then</span>
|
||||
<span class="k">while</span> <span class="nb">read</span> -r l
|
||||
<span class="k">do</span>
|
||||
__file <span class="s2">"</span><span class="nv">$l</span><span class="s2">"</span>
|
||||
<span class="nb">echo</span> <span class="s2">"</span><span class="nv">$l</span><span class="s2">"</span> ><span class="p">&</span><span class="m">2</span>
|
||||
<span class="k">done</span> < <span class="s2">"</span><span class="nv">$__object</span><span class="s2">/parameter/foo"</span>
|
||||
<span class="k">fi</span>
|
||||
</pre></div>
|
||||
</div>
|
||||
<p>and init manifest:</p>
|
||||
<div class="highlight-sh"><div class="highlight"><pre><span></span>__foo foo --foo a --foo b --foo c
|
||||
</pre></div>
|
||||
</div>
|
||||
<p>You expect that manifest stderr content is:</p>
|
||||
<div class="highlight-sh"><div class="highlight"><pre><span></span>a
|
||||
b
|
||||
c
|
||||
</pre></div>
|
||||
</div>
|
||||
<p>and that files <em>a</em>, <em>b</em> and <em>c</em> are created. But all you get in manifest stderr
|
||||
is:</p>
|
||||
<div class="highlight-sh"><div class="highlight"><pre><span></span>a
|
||||
</pre></div>
|
||||
</div>
|
||||
<p>and only <em>a</em> file is created.</p>
|
||||
<p>When redirecting parameter <em>foo</em> file content to while's stdin that means that all
|
||||
commands in while body have this same stdin. So when <em>__file</em> type gets executed,
|
||||
cdist saves its stdin which means it gets the remaining content of parameter <em>foo</em>
|
||||
file, i.e.:</p>
|
||||
<div class="highlight-sh"><div class="highlight"><pre><span></span>b
|
||||
c
|
||||
</pre></div>
|
||||
</div>
|
||||
<p>The solution is to make sure that your types inside such loops get their stdin
|
||||
from somewhere else, e.g. for the above problem <em>__file</em> type can get empty
|
||||
stdin from <em>/dev/null</em>:</p>
|
||||
<div class="highlight-sh"><div class="highlight"><pre><span></span><span class="k">if</span> <span class="o">[</span> -f <span class="s2">"</span><span class="nv">$__object</span><span class="s2">/parameter/foo"</span> <span class="o">]</span>
|
||||
<span class="k">then</span>
|
||||
<span class="k">while</span> <span class="nb">read</span> -r l
|
||||
<span class="k">do</span>
|
||||
__file <span class="s2">"</span><span class="nv">$l</span><span class="s2">"</span> < /dev/null
|
||||
<span class="nb">echo</span> <span class="s2">"</span><span class="nv">$l</span><span class="s2">"</span> ><span class="p">&</span><span class="m">2</span>
|
||||
<span class="k">done</span> < <span class="s2">"</span><span class="nv">$__object</span><span class="s2">/parameter/foo"</span>
|
||||
<span class="k">fi</span>
|
||||
</pre></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="section" id="writing-the-manifest">
|
||||
<h2>15.13. Writing the manifest<a class="headerlink" href="#writing-the-manifest" title="Permalink to this headline">¶</a></h2>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16. cdist types — cdist 5.1.0 documentation</title>
|
||||
<title>16. cdist types — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>5. How to upgrade cdist — cdist 5.1.0 documentation</title>
|
||||
<title>5. How to upgrade cdist — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>1. Why should I use cdist? — cdist 5.1.0 documentation</title>
|
||||
<title>1. Why should I use cdist? — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>Index — cdist 5.1.0 documentation</title>
|
||||
<title>Index — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -24,7 +24,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -71,7 +71,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>cdist - usable configuration management — cdist 5.1.0 documentation</title>
|
||||
<title>cdist - usable configuration management — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'./',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -71,7 +71,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>10. cdist-dump(1) — cdist 5.1.0 documentation</title>
|
||||
<title>10. cdist-dump(1) — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>11. cdist-new-type(1) — cdist 5.1.0 documentation</title>
|
||||
<title>11. cdist-new-type(1) — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>9. cdist(1) — cdist 5.1.0 documentation</title>
|
||||
<title>9. cdist(1) — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.1. cdist-type__acl(7) — cdist 5.1.0 documentation</title>
|
||||
<title>16.1. cdist-type__acl(7) — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
@ -364,9 +364,7 @@
|
|||
<div class="section" id="description">
|
||||
<h2>16.1.2. DESCRIPTION<a class="headerlink" href="#description" title="Permalink to this headline">¶</a></h2>
|
||||
<p>ACL must be defined as 3-symbol combination, using <code class="docutils literal"><span class="pre">r</span></code>, <code class="docutils literal"><span class="pre">w</span></code>, <code class="docutils literal"><span class="pre">x</span></code> and <code class="docutils literal"><span class="pre">-</span></code>.</p>
|
||||
<p>Fully supported on Linux (tested on Debian and CentOS).</p>
|
||||
<p>Partial support for FreeBSD, OSX and Solaris.</p>
|
||||
<p>OpenBSD and NetBSD support is not possible.</p>
|
||||
<p>Fully supported and tested on Linux (ext4 filesystem), partial support for FreeBSD.</p>
|
||||
<p>See <code class="docutils literal"><span class="pre">setfacl</span></code> and <code class="docutils literal"><span class="pre">acl</span></code> manpages for more details.</p>
|
||||
</div>
|
||||
<div class="section" id="optional-multiple-parameters">
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.2. cdist-type__apt_default_release(7) — cdist 5.1.0 documentation</title>
|
||||
<title>16.2. cdist-type__apt_default_release(7) — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.3. cdist-type__apt_key(7) — cdist 5.1.0 documentation</title>
|
||||
<title>16.3. cdist-type__apt_key(7) — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
@ -378,6 +378,10 @@
|
|||
<dt>keyserver</dt>
|
||||
<dd>the keyserver from which to fetch the key. If omitted the default set
|
||||
in ./parameter/default/keyserver is used.</dd>
|
||||
<dt>keydir</dt>
|
||||
<dd>key save location, defaults to <code class="docutils literal"><span class="pre">/etc/apt/trusted.pgp.d</span></code></dd>
|
||||
<dt>uri</dt>
|
||||
<dd>the URI from which to download the key</dd>
|
||||
</dl>
|
||||
</div>
|
||||
<div class="section" id="examples">
|
||||
|
@ -394,18 +398,23 @@ __apt_key UbuntuArchiveKey --keyid 437D05B5
|
|||
|
||||
<span class="c1"># same thing with other keyserver</span>
|
||||
__apt_key UbuntuArchiveKey --keyid 437D05B5 --keyserver keyserver.ubuntu.com
|
||||
|
||||
<span class="c1"># download key from the internet</span>
|
||||
__apt_key rabbitmq <span class="se">\</span>
|
||||
--uri http://www.rabbitmq.com/rabbitmq-signing-key-public.asc
|
||||
</pre></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="section" id="authors">
|
||||
<h2>16.3.6. AUTHORS<a class="headerlink" href="#authors" title="Permalink to this headline">¶</a></h2>
|
||||
<p>Steven Armstrong <<a class="reference external" href="mailto:steven-cdist--%40--armstrong.cc">steven-cdist--<span>@</span>--armstrong<span>.</span>cc</a>></p>
|
||||
<p>Steven Armstrong <<a class="reference external" href="mailto:steven-cdist--%40--armstrong.cc">steven-cdist--<span>@</span>--armstrong<span>.</span>cc</a>>
|
||||
Ander Punnar <ander-at-kvlt-dot-ee></p>
|
||||
</div>
|
||||
<div class="section" id="copying">
|
||||
<h2>16.3.7. COPYING<a class="headerlink" href="#copying" title="Permalink to this headline">¶</a></h2>
|
||||
<p>Copyright (C) 2011-2014 Steven Armstrong. 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
|
||||
<p>Copyright (C) 2011-2019 Steven Armstrong and Ander Punnar. 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>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.4. cdist-type__apt_key_uri(7) — cdist 5.1.0 documentation</title>
|
||||
<title>16.4. cdist-type__apt_key_uri(7) — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.5. cdist-type__apt_mark(7) — cdist 5.1.0 documentation</title>
|
||||
<title>16.5. cdist-type__apt_mark(7) — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.6. cdist-type__apt_norecommends(7) — cdist 5.1.0 documentation</title>
|
||||
<title>16.6. cdist-type__apt_norecommends(7) — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.7. cdist-type__apt_ppa(7) — cdist 5.1.0 documentation</title>
|
||||
<title>16.7. cdist-type__apt_ppa(7) — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.8. cdist-type__apt_source(7) — cdist 5.1.0 documentation</title>
|
||||
<title>16.8. cdist-type__apt_source(7) — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.9. cdist-type__apt_update_index(7) — cdist 5.1.0 documentation</title>
|
||||
<title>16.9. cdist-type__apt_update_index(7) — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.10. cdist-type__block(7) — cdist 5.1.0 documentation</title>
|
||||
<title>16.10. cdist-type__block(7) — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.11. cdist-type__ccollect_source(7) — cdist 5.1.0 documentation</title>
|
||||
<title>16.11. cdist-type__ccollect_source(7) — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.12. cdist-type__cdist(7) — cdist 5.1.0 documentation</title>
|
||||
<title>16.12. cdist-type__cdist(7) — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.13. cdist-type__cdist_preos_trigger(7) — cdist 5.1.0 documentation</title>
|
||||
<title>16.13. cdist-type__cdist_preos_trigger(7) — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.14. cdist-type__cdistmarker(7) — cdist 5.1.0 documentation</title>
|
||||
<title>16.14. cdist-type__cdistmarker(7) — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.15. cdist-type__check_messages(7) — cdist 5.1.0 documentation</title>
|
||||
<title>16.15. cdist-type__check_messages(7) — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.16. cdist-type__chroot_mount(7) — cdist 5.1.0 documentation</title>
|
||||
<title>16.16. cdist-type__chroot_mount(7) — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.17. cdist-type__chroot_umount(7) — cdist 5.1.0 documentation</title>
|
||||
<title>16.17. cdist-type__chroot_umount(7) — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.18. cdist-type__clean_path(7) — cdist 5.1.0 documentation</title>
|
||||
<title>16.18. cdist-type__clean_path(7) — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.19. cdist-type__config_file(7) — cdist 5.1.0 documentation</title>
|
||||
<title>16.19. cdist-type__config_file(7) — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.20. cdist-type__consul(7) — cdist 5.1.0 documentation</title>
|
||||
<title>16.20. cdist-type__consul(7) — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.21. cdist-type__consul_agent(7) — cdist 5.1.0 documentation</title>
|
||||
<title>16.21. cdist-type__consul_agent(7) — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.22. cdist-type__consul_check(7) — cdist 5.1.0 documentation</title>
|
||||
<title>16.22. cdist-type__consul_check(7) — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.23. cdist-type__consul_reload(7) — cdist 5.1.0 documentation</title>
|
||||
<title>16.23. cdist-type__consul_reload(7) — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.24. cdist-type__consul_service(7) — cdist 5.1.0 documentation</title>
|
||||
<title>16.24. cdist-type__consul_service(7) — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.25. cdist-type__consul_template(7) — cdist 5.1.0 documentation</title>
|
||||
<title>16.25. cdist-type__consul_template(7) — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.26. cdist-type__consul_template_template(7) — cdist 5.1.0 documentation</title>
|
||||
<title>16.26. cdist-type__consul_template_template(7) — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.27. cdist-type__consul_watch_checks(7) — cdist 5.1.0 documentation</title>
|
||||
<title>16.27. cdist-type__consul_watch_checks(7) — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.28. cdist-type__consul_watch_event(7) — cdist 5.1.0 documentation</title>
|
||||
<title>16.28. cdist-type__consul_watch_event(7) — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.29. cdist-type__consul_watch_key(7) — cdist 5.1.0 documentation</title>
|
||||
<title>16.29. cdist-type__consul_watch_key(7) — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.30. cdist-type__consul_watch_keyprefix(7) — cdist 5.1.0 documentation</title>
|
||||
<title>16.30. cdist-type__consul_watch_keyprefix(7) — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.31. cdist-type__consul_watch_nodes(7) — cdist 5.1.0 documentation</title>
|
||||
<title>16.31. cdist-type__consul_watch_nodes(7) — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.32. cdist-type__consul_watch_service(7) — cdist 5.1.0 documentation</title>
|
||||
<title>16.32. cdist-type__consul_watch_service(7) — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.33. cdist-type__consul_watch_services(7) — cdist 5.1.0 documentation</title>
|
||||
<title>16.33. cdist-type__consul_watch_services(7) — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.34. cdist-type__cron(7) — cdist 5.1.0 documentation</title>
|
||||
<title>16.34. cdist-type__cron(7) — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.35. cdist-type__daemontools(7) — cdist 5.1.0 documentation</title>
|
||||
<title>16.35. cdist-type__daemontools(7) — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.36. cdist-type__daemontools_service(7) — cdist 5.1.0 documentation</title>
|
||||
<title>16.36. cdist-type__daemontools_service(7) — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.37. cdist-type__debconf_set_selections(7) — cdist 5.1.0 documentation</title>
|
||||
<title>16.37. cdist-type__debconf_set_selections(7) — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.38. cdist-type__directory(7) — cdist 5.1.0 documentation</title>
|
||||
<title>16.38. cdist-type__directory(7) — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.39. cdist-type__docker(7) — cdist 5.1.0 documentation</title>
|
||||
<title>16.39. cdist-type__docker(7) — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.40. cdist-type__docker_compose(7) — cdist 5.1.0 documentation</title>
|
||||
<title>16.40. cdist-type__docker_compose(7) — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.41. cdist-type__docker_config(7) — cdist 5.1.0 documentation</title>
|
||||
<title>16.41. cdist-type__docker_config(7) — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.42. cdist-type__docker_secret(7) — cdist 5.1.0 documentation</title>
|
||||
<title>16.42. cdist-type__docker_secret(7) — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.43. cdist-type__docker_stack(7) — cdist 5.1.0 documentation</title>
|
||||
<title>16.43. cdist-type__docker_stack(7) — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.44. cdist-type__docker_swarm(7) — cdist 5.1.0 documentation</title>
|
||||
<title>16.44. cdist-type__docker_swarm(7) — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.45. cdist-type__dog_vdi(7) — cdist 5.1.0 documentation</title>
|
||||
<title>16.45. cdist-type__dog_vdi(7) — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.46. cdist-type__dot_file(7) — cdist 5.1.0 documentation</title>
|
||||
<title>16.46. cdist-type__dot_file(7) — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.47. cdist-type__file(7) — cdist 5.1.0 documentation</title>
|
||||
<title>16.47. cdist-type__file(7) — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.48. cdist-type__filesystem(7) — cdist 5.1.0 documentation</title>
|
||||
<title>16.48. cdist-type__filesystem(7) — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.49. cdist-type__firewalld_rule(7) — cdist 5.1.0 documentation</title>
|
||||
<title>16.49. cdist-type__firewalld_rule(7) — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.50. cdist-type__firewalld_start(7) — cdist 5.1.0 documentation</title>
|
||||
<title>16.50. cdist-type__firewalld_start(7) — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.51. cdist-type__git(7) — cdist 5.1.0 documentation</title>
|
||||
<title>16.51. cdist-type__git(7) — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.52. cdist-type__go_get(7) — cdist 5.1.0 documentation</title>
|
||||
<title>16.52. cdist-type__go_get(7) — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.53. cdist-type__golang_from_vendor(7) — cdist 5.1.0 documentation</title>
|
||||
<title>16.53. cdist-type__golang_from_vendor(7) — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.54. cdist-type__grafana_dashboard(7) — cdist 5.1.0 documentation</title>
|
||||
<title>16.54. cdist-type__grafana_dashboard(7) — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.55. cdist-type__group(7) — cdist 5.1.0 documentation</title>
|
||||
<title>16.55. cdist-type__group(7) — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.56. cdist-type__hostname(7) — cdist 5.1.0 documentation</title>
|
||||
<title>16.56. cdist-type__hostname(7) — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.57. cdist-type__hosts(7) — cdist 5.1.0 documentation</title>
|
||||
<title>16.57. cdist-type__hosts(7) — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.58. cdist-type__install_bootloader_grub(7) — cdist 5.1.0 documentation</title>
|
||||
<title>16.58. cdist-type__install_bootloader_grub(7) — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.59. cdist-type__install_chroot_mount(7) — cdist 5.1.0 documentation</title>
|
||||
<title>16.59. cdist-type__install_chroot_mount(7) — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.60. cdist-type__install_chroot_umount(7) — cdist 5.1.0 documentation</title>
|
||||
<title>16.60. cdist-type__install_chroot_umount(7) — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.61. cdist-type__install_config(7) — cdist 5.1.0 documentation</title>
|
||||
<title>16.61. cdist-type__install_config(7) — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.62. cdist-type__install_coreos(7) — cdist 5.1.0 documentation</title>
|
||||
<title>16.62. cdist-type__install_coreos(7) — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.63. cdist-type__directory(7) — cdist 5.1.0 documentation</title>
|
||||
<title>16.63. cdist-type__directory(7) — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.64. cdist-type__install_file(7) — cdist 5.1.0 documentation</title>
|
||||
<title>16.64. cdist-type__install_file(7) — cdist 5.1.1 documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT:'../',
|
||||
VERSION:'5.1.0',
|
||||
VERSION:'5.1.1',
|
||||
LANGUAGE:'None',
|
||||
COLLAPSE_INDEX:false,
|
||||
FILE_SUFFIX:'.html',
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
5.1.0
|
||||
5.1.1
|
||||
</div>
|
||||
|
||||
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue