Update cdist beta docs
This commit is contained in:
parent
3b23b39c39
commit
76143e271a
215 changed files with 5335 additions and 2960 deletions
|
@ -285,6 +285,8 @@ The following types are available:
|
|||
- __systemd_service (`cdist-type__systemd_service(7) <man7/cdist-type__systemd_service.html>`_)
|
||||
- __systemd_unit (`cdist-type__systemd_unit(7) <man7/cdist-type__systemd_unit.html>`_)
|
||||
- __timezone (`cdist-type__timezone(7) <man7/cdist-type__timezone.html>`_)
|
||||
- __uci (`cdist-type__uci(7) <man7/cdist-type__uci.html>`_)
|
||||
- __uci_section (`cdist-type__uci_section(7) <man7/cdist-type__uci_section.html>`_)
|
||||
- __ufw (`cdist-type__ufw(7) <man7/cdist-type__ufw.html>`_)
|
||||
- __ufw_rule (`cdist-type__ufw_rule(7) <man7/cdist-type__ufw_rule.html>`_)
|
||||
- __unpack (`cdist-type__unpack(7) <man7/cdist-type__unpack.html>`_)
|
||||
|
|
|
@ -10,7 +10,7 @@ By default this is accomplished with ssh and scp respectively.
|
|||
The default implementations used by cdist are::
|
||||
|
||||
__remote_exec: ssh -o User=root
|
||||
__remote_copy: scp -o User=root
|
||||
__remote_copy: scp -o User=root -q
|
||||
|
||||
The user can override these defaults by providing custom implementations and
|
||||
passing them to cdist with the --remote-exec and/or --remote-copy arguments.
|
||||
|
@ -26,3 +26,390 @@ specified by enclosed in square brackets (see :strong:`ssh`\ (1) and
|
|||
With this simple interface the user can take total control of how cdist
|
||||
interacts with the target when required, while the default implementation
|
||||
remains as simple as possible.
|
||||
|
||||
|
||||
Examples
|
||||
--------
|
||||
|
||||
Here are examples of using alternative __remote_copy and __remote_exec scripts.
|
||||
|
||||
All scripts from below are present in cdist sources in `other/examples/remote`
|
||||
directory.
|
||||
|
||||
ssh
|
||||
~~~
|
||||
|
||||
Same as cdist default.
|
||||
|
||||
**copy**
|
||||
|
||||
Usage: cdist config --remote-copy "/path/to/this/script" target_host
|
||||
|
||||
.. code-block:: sh
|
||||
|
||||
#echo "$@" | logger -t "cdist-ssh-copy"
|
||||
scp -o User=root -q $@
|
||||
|
||||
**exec**
|
||||
|
||||
Usage: cdist config --remote-exec "/path/to/this/script" target_host
|
||||
|
||||
.. code-block:: sh
|
||||
|
||||
#echo "$@" | logger -t "cdist-ssh-exec"
|
||||
ssh -o User=root $@
|
||||
|
||||
local
|
||||
~~~~~
|
||||
|
||||
This effectively turns remote calling into local calling. Probably most useful
|
||||
for the unit testing.
|
||||
|
||||
**copy**
|
||||
|
||||
.. code-block:: sh
|
||||
|
||||
code="$(echo "$@" | sed "s|\([[:space:]]\)$__target_host:|\1|g")"
|
||||
cp -L $code
|
||||
|
||||
**exec**
|
||||
|
||||
.. code-block:: sh
|
||||
|
||||
target_host=$1; shift
|
||||
echo "$@" | /bin/sh
|
||||
|
||||
chroot
|
||||
~~~~~~
|
||||
|
||||
**copy**
|
||||
|
||||
Usage: cdist config --remote-copy "/path/to/this/script /path/to/your/chroot" target-id
|
||||
|
||||
.. code-block:: sh
|
||||
|
||||
log() {
|
||||
#echo "$@" | logger -t "cdist-chroot-copy"
|
||||
:
|
||||
}
|
||||
|
||||
chroot="$1"; shift
|
||||
target_host="$__target_host"
|
||||
|
||||
# replace target_host with chroot location
|
||||
code="$(echo "$@" | sed "s|$target_host:|$chroot|g")"
|
||||
|
||||
log "target_host: $target_host"
|
||||
log "chroot: $chroot"
|
||||
log "$@"
|
||||
log "$code"
|
||||
|
||||
# copy files into chroot
|
||||
cp $code
|
||||
|
||||
log "-----"
|
||||
|
||||
**exec**
|
||||
|
||||
Usage: cdist config --remote-exec "/path/to/this/script /path/to/your/chroot" target-id
|
||||
|
||||
.. code-block:: sh
|
||||
|
||||
log() {
|
||||
#echo "$@" | logger -t "cdist-chroot-exec"
|
||||
:
|
||||
}
|
||||
|
||||
chroot="$1"; shift
|
||||
target_host="$1"; shift
|
||||
|
||||
script=$(mktemp "${chroot}/tmp/chroot-${0##*/}.XXXXXXXXXX")
|
||||
trap cleanup INT TERM EXIT
|
||||
cleanup() {
|
||||
[ $__cdist_debug ] || rm "$script"
|
||||
}
|
||||
|
||||
log "target_host: $target_host"
|
||||
log "script: $script"
|
||||
log "@: $@"
|
||||
echo "#!/bin/sh -l" > "$script"
|
||||
echo "$@" >> "$script"
|
||||
chmod +x "$script"
|
||||
|
||||
relative_script="${script#$chroot}"
|
||||
log "relative_script: $relative_script"
|
||||
|
||||
# run in chroot
|
||||
chroot "$chroot" "$relative_script"
|
||||
|
||||
log "-----"
|
||||
|
||||
rsync
|
||||
~~~~~
|
||||
|
||||
**copy**
|
||||
|
||||
Usage: cdist config --remote-copy /path/to/this/script target_host
|
||||
|
||||
.. code-block:: sh
|
||||
|
||||
# For rsync to do the right thing, the source has to end with "/" if it is
|
||||
# a directory. The below preprocessor loop takes care of that.
|
||||
|
||||
# second last argument is the source
|
||||
source_index=$(($#-1))
|
||||
index=0
|
||||
for arg in $@; do
|
||||
if [ $index -eq 0 ]; then
|
||||
# reset $@
|
||||
set --
|
||||
fi
|
||||
index=$((index+=1))
|
||||
if [ $index -eq $source_index -a -d "$arg" ]; then
|
||||
arg="${arg%/}/"
|
||||
fi
|
||||
set -- "$@" "$arg"
|
||||
done
|
||||
|
||||
rsync --backup --suffix=~cdist -e 'ssh -o User=root' $@
|
||||
|
||||
schroot
|
||||
~~~~~~~
|
||||
|
||||
__remote_copy and __remote_exec scripts to run cdist against a chroot on the
|
||||
target host over ssh.
|
||||
|
||||
**copy**
|
||||
|
||||
Usage: cdist config --remote-copy "/path/to/this/script schroot-chroot-name" target_host
|
||||
|
||||
|
||||
.. code-block:: sh
|
||||
|
||||
log() {
|
||||
#echo "$@" | logger -t "cdist-schroot-copy"
|
||||
:
|
||||
}
|
||||
|
||||
chroot_name="$1"; shift
|
||||
target_host="$__target_host"
|
||||
|
||||
# get directory for given chroot_name
|
||||
chroot="$(ssh -o User=root -q $target_host schroot -c $chroot_name --config | awk -F = '/directory=/ {print $2}')"
|
||||
|
||||
# prefix destination with chroot
|
||||
code="$(echo "$@" | sed "s|$target_host:|$target_host:$chroot|g")"
|
||||
|
||||
log "target_host: $target_host"
|
||||
log "chroot_name: $chroot_name"
|
||||
log "chroot: $chroot"
|
||||
log "@: $@"
|
||||
log "code: $code"
|
||||
|
||||
# copy files into remote chroot
|
||||
scp -o User=root -q $code
|
||||
|
||||
log "-----"
|
||||
|
||||
**exec**
|
||||
|
||||
Usage: cdist config --remote-exec "/path/to/this/script schroot-chroot-name" target_host
|
||||
|
||||
.. code-block:: sh
|
||||
|
||||
log() {
|
||||
#echo "$@" | logger -t "cdist-schroot-exec"
|
||||
:
|
||||
}
|
||||
|
||||
chroot_name="$1"; shift
|
||||
target_host="$1"; shift
|
||||
|
||||
code="ssh -o User=root -q $target_host schroot -c $chroot_name -- $@"
|
||||
|
||||
log "target_host: $target_host"
|
||||
log "chroot_name: $chroot_name"
|
||||
log "@: $@"
|
||||
log "code: $code"
|
||||
|
||||
# run in remote chroot
|
||||
$code
|
||||
|
||||
log "-----"
|
||||
|
||||
schroot-uri
|
||||
~~~~~~~~~~~
|
||||
|
||||
__remote_exec/__remote_copy script to run cdist against a schroot target URI.
|
||||
|
||||
Usage::
|
||||
|
||||
cdist config \
|
||||
--remote-exec "/path/to/this/script exec" \
|
||||
--remote-copy "/path/to/this/script copy" \
|
||||
target_uri
|
||||
|
||||
# target_uri examples:
|
||||
schroot:///chroot-name
|
||||
schroot://foo.ethz.ch/chroot-name
|
||||
schroot://user-name@foo.ethz.ch/chroot-name
|
||||
|
||||
# and how to match them in .../manifest/init
|
||||
case "$target_host" in
|
||||
schroot://*)
|
||||
# any schroot
|
||||
;;
|
||||
schroot://foo.ethz.ch/*)
|
||||
# any schroot on specific host
|
||||
;;
|
||||
schroot://foo.ethz.ch/chroot-name)
|
||||
# specific schroot on specific host
|
||||
;;
|
||||
schroot:///chroot-name)
|
||||
# specific schroot on localhost
|
||||
;;
|
||||
esac
|
||||
|
||||
**copy/exec**
|
||||
|
||||
.. code-block:: sh
|
||||
|
||||
my_name="${0##*/}"
|
||||
mode="$1"; shift
|
||||
|
||||
log() {
|
||||
# uncomment me for debugging
|
||||
#echo "$@" | logger -t "cdist-$my_name-$mode"
|
||||
:
|
||||
}
|
||||
|
||||
die() {
|
||||
echo "$@" >&2
|
||||
exit 1
|
||||
}
|
||||
|
||||
|
||||
uri="$__target_host"
|
||||
|
||||
scheme="${uri%%:*}"; rest="${uri#$scheme:}"; rest="${rest#//}"
|
||||
authority="${rest%%/*}"; rest="${rest#$authority}"
|
||||
path="${rest%\?*}"; rest="${rest#$path}"
|
||||
schroot_name="${path#/}"
|
||||
|
||||
[ "$scheme" = "schroot" ] || die "Failed to parse scheme from __target_host ($__target_host). Expected 'schroot', got '$scheme'"
|
||||
[ -n "$schroot_name" ] || die "Failed to parse schroot name from __target_host: $__target_host"
|
||||
|
||||
case "$authority" in
|
||||
'')
|
||||
# authority is empty, neither user nor host given
|
||||
user=""
|
||||
host=""
|
||||
;;
|
||||
*@*)
|
||||
# authority contains @, take user from authority
|
||||
user="${authority%@*}"
|
||||
host="${authority#*@}"
|
||||
;;
|
||||
*)
|
||||
# no user in authority, default to root
|
||||
user="root"
|
||||
host="$authority"
|
||||
;;
|
||||
esac
|
||||
|
||||
log "mode: $mode"
|
||||
log "@: $@"
|
||||
log "uri: $uri"
|
||||
log "scheme: $scheme"
|
||||
log "authority: $authority"
|
||||
log "user: $user"
|
||||
log "host: $host"
|
||||
log "path: $path"
|
||||
log "schroot_name: $schroot_name"
|
||||
|
||||
exec_prefix=""
|
||||
copy_prefix=""
|
||||
if [ -n "$host" ]; then
|
||||
# we are working on a remote host
|
||||
exec_prefix="ssh -o User=$user -q $host"
|
||||
copy_prefix="scp -o User=$user -q"
|
||||
copy_destination_prefix="$host:"
|
||||
else
|
||||
# working on local machine
|
||||
copy_prefix="cp"
|
||||
copy_destination_prefix=""
|
||||
fi
|
||||
log "exec_prefix: $exec_prefix"
|
||||
log "copy_prefix: $copy_prefix"
|
||||
log "copy_destination_prefix: $copy_destination_prefix"
|
||||
|
||||
case "$mode" in
|
||||
exec)
|
||||
# In exec mode the first argument is the __target_host which we already got from env. Get rid of it.
|
||||
shift
|
||||
code="$exec_prefix schroot -c $schroot_name -- sh -c '$@'"
|
||||
;;
|
||||
copy)
|
||||
# get directory for given chroot_name
|
||||
schroot_directory="$($exec_prefix schroot -c $schroot_name --config | awk -F = '/directory=/ {print $2}')"
|
||||
[ -n "$schroot_directory" ] || die "Failed to retreive schroot directory for schroot: $schroot_name"
|
||||
log "schroot_directory: $schroot_directory"
|
||||
# prefix destination with chroot
|
||||
code="$copy_prefix $(echo "$@" | sed "s|$uri:|${copy_destination_prefix}${schroot_directory}|g")"
|
||||
;;
|
||||
*) die "Unknown mode: $mode";;
|
||||
esac
|
||||
|
||||
log "code: $code"
|
||||
|
||||
# Run the code
|
||||
$code
|
||||
|
||||
log "-----"
|
||||
|
||||
sudo
|
||||
~~~~
|
||||
|
||||
**copy**
|
||||
|
||||
Use rsync over ssh to copy files. Uses the "--rsync-path" option
|
||||
to run the remote rsync instance with sudo.
|
||||
|
||||
This command assumes your ssh configuration is already set up in ~/.ssh/config.
|
||||
|
||||
Usage: cdist config --remote-copy /path/to/this/script target_host
|
||||
|
||||
.. code-block:: sh
|
||||
|
||||
# For rsync to do the right thing, the source has to end with "/" if it is
|
||||
# a directory. The below preprocessor loop takes care of that.
|
||||
|
||||
# second last argument is the source
|
||||
source_index=$(($#-1))
|
||||
index=0
|
||||
for arg in $@; do
|
||||
if [ $index -eq 0 ]; then
|
||||
# reset $@
|
||||
set --
|
||||
fi
|
||||
index=$((index+=1))
|
||||
if [ $index -eq $source_index -a -d "$arg" ]; then
|
||||
arg="${arg%/}/"
|
||||
fi
|
||||
set -- "$@" "$arg"
|
||||
done
|
||||
|
||||
rsync --copy-links --rsync-path="sudo rsync" -e 'ssh' "$@"
|
||||
|
||||
**exec**
|
||||
|
||||
Prefixes all remote commands with sudo.
|
||||
|
||||
This command assumes your ssh configuration is already set up in ~/.ssh/config.
|
||||
|
||||
Usage: cdist config --remote-exec "/path/to/this/script" target_host
|
||||
|
||||
.. code-block:: sh
|
||||
|
||||
host="$1"; shift
|
||||
ssh -q "$host" sudo sh -c \""$@"\"
|
||||
|
|
|
@ -153,6 +153,8 @@ cdist types
|
|||
__systemd_service <man7/cdist-type__systemd_service>
|
||||
__systemd_unit <man7/cdist-type__systemd_unit>
|
||||
__timezone <man7/cdist-type__timezone>
|
||||
__uci <man7/cdist-type__uci>
|
||||
__uci_section <man7/cdist-type__uci_section>
|
||||
__ufw <man7/cdist-type__ufw>
|
||||
__ufw_rule <man7/cdist-type__ufw_rule>
|
||||
__unpack <man7/cdist-type__unpack>
|
||||
|
|
|
@ -187,10 +187,8 @@ Install command is currently in beta.
|
|||
|
||||
**-f HOSTFILE, --file HOSTFILE**
|
||||
Read specified file for a list of additional hosts to operate on
|
||||
or if '-' is given, read stdin (one host per line).
|
||||
If no host or host file is specified then, by default,
|
||||
read hosts from stdin. For the file format see
|
||||
:strong:`HOSTFILE FORMAT` below.
|
||||
or if '-' is given, read stdin (one host per line). For the file
|
||||
format see :strong:`HOSTFILE FORMAT` below.
|
||||
|
||||
**-g CONFIG_FILE, --config-file CONFIG_FILE**
|
||||
Use specified custom configuration file.
|
||||
|
@ -309,9 +307,8 @@ Add host(s) to inventory database.
|
|||
|
||||
**-f HOSTFILE, --file HOSTFILE**
|
||||
Read additional hosts to add from specified file or
|
||||
from stdin if '-' (each host on separate line). If no
|
||||
host or host file is specified then, by default, read
|
||||
from stdin. Hostfile format is the same as config hostfile format.
|
||||
from stdin if '-' (each host on separate line).
|
||||
Hostfile format is the same as config hostfile format.
|
||||
|
||||
**-g CONFIG_FILE, --config-file CONFIG_FILE**
|
||||
Use specified custom configuration file.
|
||||
|
@ -337,11 +334,8 @@ Add tag(s) to inventory database.
|
|||
|
||||
**-f HOSTFILE, --file HOSTFILE**
|
||||
Read additional hosts to add tags from specified file
|
||||
or from stdin if '-' (each host on separate line). If
|
||||
no host or host file is specified then, by default,
|
||||
read from stdin. If no tags/tagfile nor hosts/hostfile
|
||||
are specified then tags are read from stdin and are
|
||||
added to all hosts. Hostfile format is the same as config hostfile format.
|
||||
or from stdin if '-' (each host on separate line).
|
||||
Hostfile format is the same as config hostfile format.
|
||||
|
||||
**-g CONFIG_FILE, --config-file CONFIG_FILE**
|
||||
Use specified custom configuration file.
|
||||
|
@ -356,11 +350,8 @@ Add tag(s) to inventory database.
|
|||
|
||||
**-T TAGFILE, --tag-file TAGFILE**
|
||||
Read additional tags to add from specified file or
|
||||
from stdin if '-' (each tag on separate line). If no
|
||||
tag or tag file is specified then, by default, read
|
||||
from stdin. If no tags/tagfile nor hosts/hostfile are
|
||||
specified then tags are read from stdin and are added
|
||||
to all hosts. Tagfile format is the same as config hostfile format.
|
||||
from stdin if '-' (each tag on separate line).
|
||||
Tagfile format is the same as config hostfile format.
|
||||
|
||||
**-t TAGLIST, --taglist TAGLIST**
|
||||
Tag list to be added for specified host(s), comma
|
||||
|
@ -382,9 +373,8 @@ Delete host(s) from inventory database.
|
|||
|
||||
**-f HOSTFILE, --file HOSTFILE**
|
||||
Read additional hosts to delete from specified file or
|
||||
from stdin if '-' (each host on separate line). If no
|
||||
host or host file is specified then, by default, read
|
||||
from stdin. Hostfile format is the same as config hostfile format.
|
||||
from stdin if '-' (each host on separate line).
|
||||
Hostfile format is the same as config hostfile format.
|
||||
|
||||
**-g CONFIG_FILE, --config-file CONFIG_FILE**
|
||||
Use specified custom configuration file.
|
||||
|
@ -414,11 +404,8 @@ Delete tag(s) from inventory database.
|
|||
**-f HOSTFILE, --file HOSTFILE**
|
||||
Read additional hosts to delete tags for from
|
||||
specified file or from stdin if '-' (each host on
|
||||
separate line). If no host or host file is specified
|
||||
then, by default, read from stdin. If no tags/tagfile
|
||||
nor hosts/hostfile are specified then tags are read
|
||||
from stdin and are deleted from all hosts. Hostfile
|
||||
format is the same as config hostfile format.
|
||||
separate line). Hostfile format is the same as
|
||||
config hostfile format.
|
||||
|
||||
**-g CONFIG_FILE, --config-file CONFIG_FILE**
|
||||
Use specified custom configuration file.
|
||||
|
@ -433,11 +420,8 @@ Delete tag(s) from inventory database.
|
|||
|
||||
**-T TAGFILE, --tag-file TAGFILE**
|
||||
Read additional tags from specified file or from stdin
|
||||
if '-' (each tag on separate line). If no tag or tag
|
||||
file is specified then, by default, read from stdin.
|
||||
If no tags/tagfile nor hosts/hostfile are specified
|
||||
then tags are read from stdin and are added to all
|
||||
hosts. Tagfile format is the same as config hostfile format.
|
||||
if '-' (each tag on separate line).
|
||||
Tagfile format is the same as config hostfile format.
|
||||
|
||||
**-t TAGLIST, --taglist TAGLIST**
|
||||
Tag list to be deleted for specified host(s), comma
|
||||
|
|
|
@ -12,11 +12,14 @@ Fully supported and tested on Linux (ext4 filesystem), partial support for FreeB
|
|||
|
||||
See ``setfacl`` and ``acl`` manpages for more details.
|
||||
|
||||
One of ``--entry`` or ``--source`` must be used.
|
||||
|
||||
REQUIRED MULTIPLE PARAMETERS
|
||||
|
||||
OPTIONAL MULTIPLE PARAMETERS
|
||||
----------------------------
|
||||
entry
|
||||
Set ACL entry following ``getfacl`` output syntax.
|
||||
Must be used if ``--source`` is not used.
|
||||
|
||||
|
||||
OPTIONAL PARAMETERS
|
||||
|
@ -25,6 +28,7 @@ source
|
|||
Read ACL entries from stdin or file.
|
||||
Ordering of entries is not important.
|
||||
When reading from file, comments and empty lines are ignored.
|
||||
Must be used if ``--entry`` is not used.
|
||||
|
||||
file
|
||||
Create/change file with ``__file`` using ``user:group:mode`` pattern.
|
||||
|
@ -48,12 +52,6 @@ remove
|
|||
``mask`` and ``other`` entries can't be removed, but only changed.
|
||||
|
||||
|
||||
DEPRECATED PARAMETERS
|
||||
---------------------
|
||||
Parameters ``acl``, ``user``, ``group``, ``mask`` and ``other`` are deprecated and they
|
||||
will be removed in future versions. Please use ``entry`` parameter instead.
|
||||
|
||||
|
||||
EXAMPLES
|
||||
--------
|
||||
|
||||
|
|
|
@ -32,11 +32,12 @@ EXAMPLES
|
|||
AUTHORS
|
||||
-------
|
||||
Steven Armstrong <steven-cdist--@--armstrong.cc>
|
||||
Dennis Camera <dennis.camera--@--ssrq-sds-fds.ch>
|
||||
|
||||
|
||||
COPYING
|
||||
-------
|
||||
Copyright \(C) 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
|
||||
License, or (at your option) any later version.
|
||||
Copyright \(C) 2014 Steven Armstrong, 2020 Dennis Camera.
|
||||
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.
|
||||
|
|
|
@ -69,7 +69,8 @@ EXAMPLES
|
|||
|
||||
require='__download/opt/cpma/cnq3.zip' \
|
||||
__unpack /opt/cpma/cnq3.zip \
|
||||
--move-existing-destination \
|
||||
--backup-destination \
|
||||
--preserve-archive \
|
||||
--destination /opt/cpma/server
|
||||
|
||||
|
||||
|
|
|
@ -31,7 +31,7 @@ file
|
|||
line
|
||||
Specifies the line which should be absent or present.
|
||||
|
||||
Must be present, if state is 'present'.
|
||||
Must be present, if state is 'present' or 'replace'.
|
||||
Ignored if regex is given and state is 'absent'.
|
||||
|
||||
regex
|
||||
|
@ -41,10 +41,13 @@ regex
|
|||
If state is 'absent', ensure all lines matching the regular expression
|
||||
are absent.
|
||||
|
||||
If state is 'replace', ensure all lines matching the regular expression
|
||||
are exactly 'line'.
|
||||
|
||||
The regular expression is interpreted by awk's match function.
|
||||
|
||||
state
|
||||
'present' or 'absent', defaults to 'present'
|
||||
'present', 'absent' or 'replace', defaults to 'present'.
|
||||
|
||||
onchange
|
||||
The code to run if line is added, removed or updated.
|
||||
|
@ -99,6 +102,12 @@ EXAMPLES
|
|||
--line '-session required pam_exec.so debug log=/tmp/classify.log /usr/local/libexec/classify' \
|
||||
--after '^session[[:space:]]+include[[:space:]]+password-auth-ac$'
|
||||
|
||||
# Uncomment as needed and set a value in a configuration file.
|
||||
__line /etc/example.conf \
|
||||
--line 'SomeSetting SomeValue' \
|
||||
--regex '^(#[[:space:]]*)?SomeSetting[[:space:]]' \
|
||||
--state replace
|
||||
|
||||
|
||||
SEE ALSO
|
||||
--------
|
||||
|
|
78
src/extra/manual/beta/_sources/man7/cdist-type__uci.rst.txt
Normal file
78
src/extra/manual/beta/_sources/man7/cdist-type__uci.rst.txt
Normal file
|
@ -0,0 +1,78 @@
|
|||
cdist-type__uci(7)
|
||||
==================
|
||||
|
||||
NAME
|
||||
----
|
||||
cdist-type__uci - Manage configuration values in UCI
|
||||
|
||||
|
||||
DESCRIPTION
|
||||
-----------
|
||||
This cdist type can be used to alter configuration options in OpenWrt's
|
||||
Unified Configuration Interface (UCI) system.
|
||||
|
||||
|
||||
REQUIRED PARAMETERS
|
||||
-------------------
|
||||
value
|
||||
The value to be set. Can be used multiple times.
|
||||
This parameter is ignored if ``--state`` is ``absent``.
|
||||
|
||||
Due to the way cdist handles arguments, values **must not** contain newline
|
||||
characters.
|
||||
|
||||
Values do not need special quoting for UCI. The only requirement is that the
|
||||
value is passed to the type as a single shell argument.
|
||||
|
||||
OPTIONAL PARAMETERS
|
||||
-------------------
|
||||
state
|
||||
``present`` or ``absent``, defaults to ``present``.
|
||||
type
|
||||
If the type should generate an option or a list.
|
||||
One of: ``option`` or ``list``.
|
||||
Defaults to auto-detect based on the number of ``--value`` parameters.
|
||||
|
||||
|
||||
BOOLEAN PARAMETERS
|
||||
------------------
|
||||
None.
|
||||
|
||||
|
||||
EXAMPLES
|
||||
--------
|
||||
|
||||
.. code-block:: sh
|
||||
|
||||
# Set the system hostname
|
||||
__uci system.@system[0].hostname --value 'OpenWrt'
|
||||
|
||||
# Set DHCP option 252: tell DHCP clients to not ask for proxy information.
|
||||
__uci dhcp.lan.dhcp_option --type list --value '252,"\n"'
|
||||
|
||||
# Enable NTP and NTPd (each is applied individually)
|
||||
__uci system.ntp.enabled --value 1
|
||||
__uci system.ntp.enable_server --value 1
|
||||
__uci system.ntp.server --type list \
|
||||
--value '0.openwrt.pool.ntp.org' \
|
||||
--value '1.openwrt.pool.ntp.org' \
|
||||
--value '2.openwrt.pool.ntp.org' \
|
||||
--value '3.openwrt.pool.ntp.org'
|
||||
|
||||
|
||||
SEE ALSO
|
||||
--------
|
||||
- https://openwrt.org/docs/guide-user/base-system/uci
|
||||
|
||||
|
||||
AUTHORS
|
||||
-------
|
||||
Dennis Camera <dennis.camera@ssrq-sds-fds.ch>
|
||||
|
||||
|
||||
COPYING
|
||||
-------
|
||||
Copyright \(C) 2020 Dennis Camera. 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.
|
|
@ -0,0 +1,119 @@
|
|||
cdist-type__uci_section(7)
|
||||
==========================
|
||||
|
||||
NAME
|
||||
----
|
||||
cdist-type__uci_section - Manage configuration sections in UCI
|
||||
|
||||
|
||||
DESCRIPTION
|
||||
-----------
|
||||
This cdist type can be used to replace whole configuration sections in OpenWrt's
|
||||
Unified Configuration Interface (UCI) system.
|
||||
It can be thought of as syntactic sugar for :strong:`cdist-type__uci`\ (7),
|
||||
as this type will generate the required `__uci` objects to make the section
|
||||
contain exactly the options specified using ``--option``.
|
||||
|
||||
Since many default UCI sections are unnamed, this type allows to find the
|
||||
matching section by one of its options using the ``--match`` parameter.
|
||||
|
||||
**NOTE:** Options already present on the target and not listed in ``--option``
|
||||
or ``--list`` will be deleted.
|
||||
|
||||
|
||||
REQUIRED PARAMETERS
|
||||
-------------------
|
||||
None.
|
||||
|
||||
|
||||
OPTIONAL PARAMETERS
|
||||
-------------------
|
||||
list
|
||||
An option that is part of a list and should be present in the section (as
|
||||
part of a list). Lists with multiple options can be expressed by using the
|
||||
same ``<option>`` repeatedly.
|
||||
|
||||
The value to this parameter is a ``<option>=<value>`` string.
|
||||
|
||||
``<value>`` does not need special quoting for UCI.
|
||||
The only requirement is that the value is passed to the type as a single
|
||||
shell argument.
|
||||
match
|
||||
Allows to find a section to "replace" through one of its parameters.
|
||||
|
||||
The value to this parameter is a ``<option>=<value>`` string.
|
||||
option
|
||||
An option that should be present in the section.
|
||||
This parameter can be used multiple times to specify multiple options.
|
||||
|
||||
The value to this parameter is a ``<option>=<value>`` string.
|
||||
|
||||
``<value>`` does not need special quoting for UCI.
|
||||
The only requirement is that the value is passed to the type as a single
|
||||
shell argument.
|
||||
state
|
||||
``present`` or ``absent``, defaults to ``present``.
|
||||
type
|
||||
The type of the section in the format: ``<config>.<section-type>``
|
||||
|
||||
|
||||
BOOLEAN PARAMETERS
|
||||
------------------
|
||||
None.
|
||||
|
||||
|
||||
EXAMPLES
|
||||
--------
|
||||
|
||||
.. code-block:: sh
|
||||
|
||||
# Configure the dropbear daemon
|
||||
__uci_section dropbear --type dropbear.dropbear \
|
||||
--match Port=22 --option Port=22 \
|
||||
--option PasswordAuth=off \
|
||||
--option RootPasswordAuth=off
|
||||
|
||||
# Define a firewall zone comprised of lan and wlan networks
|
||||
__uci_section firewall.internal --type firewall.zone \
|
||||
--option name='internal' \
|
||||
--list network='lan' \
|
||||
--list network='wlan' \
|
||||
--option input='ACCEPT' \
|
||||
--option output='ACCEPT' \
|
||||
--option forward='ACCEPT'
|
||||
|
||||
# Block SSH access from the guest network
|
||||
__uci_section firewall.block_ssh_from_guest --type firewall.rule \
|
||||
--option name='Block-SSH-Access-from-Guest' \
|
||||
--option src='guest' \
|
||||
--option proto='tcp' \
|
||||
--option dest_port='22' \
|
||||
--option target='REJECT'
|
||||
|
||||
# Configure a Wi-Fi access point
|
||||
__uci_section wireless.default_radio0 --type wireless.wifi-iface \
|
||||
--option device='radio0' \
|
||||
--option mode='ap' \
|
||||
--option network='wlan' \
|
||||
--option ssid='mywifi' \
|
||||
--option encryption="psk2' \
|
||||
--option key='hunter2'
|
||||
|
||||
|
||||
SEE ALSO
|
||||
--------
|
||||
- https://openwrt.org/docs/guide-user/base-system/uci
|
||||
- :strong:`cdist-type__uci`\ (7)
|
||||
|
||||
|
||||
AUTHORS
|
||||
-------
|
||||
Dennis Camera <dennis.camera@ssrq-sds-fds.ch>
|
||||
|
||||
|
||||
COPYING
|
||||
-------
|
||||
Copyright \(C) 2020 Dennis Camera. 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.
|
|
@ -19,6 +19,12 @@ path
|
|||
Use this path for the given alternative
|
||||
|
||||
|
||||
BOOLEAN PARAMETERS
|
||||
------------------
|
||||
install
|
||||
Add (``update-alternatives --install``) missing path to alternatives.
|
||||
|
||||
|
||||
EXAMPLES
|
||||
--------
|
||||
|
||||
|
@ -36,11 +42,12 @@ SEE ALSO
|
|||
AUTHORS
|
||||
-------
|
||||
Nico Schottelius <nico-cdist--@--schottelius.org>
|
||||
Ander Punnar <ander@kvlt.ee>
|
||||
|
||||
|
||||
COPYING
|
||||
-------
|
||||
Copyright \(C) 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
|
||||
Copyright \(C) 2013 Nico Schottelius and 2020 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.
|
||||
|
|
|
@ -15,6 +15,12 @@ div.clearer {
|
|||
clear: both;
|
||||
}
|
||||
|
||||
div.section::after {
|
||||
display: block;
|
||||
content: '';
|
||||
clear: left;
|
||||
}
|
||||
|
||||
/* -- relbar ---------------------------------------------------------------- */
|
||||
|
||||
div.related {
|
||||
|
@ -316,21 +322,27 @@ img.align-default, .figure.align-default {
|
|||
div.sidebar {
|
||||
margin: 0 0 0.5em 1em;
|
||||
border: 1px solid #ddb;
|
||||
padding: 7px 7px 0 7px;
|
||||
padding: 7px;
|
||||
background-color: #ffe;
|
||||
width: 40%;
|
||||
float: right;
|
||||
clear: right;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
p.sidebar-title {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
div.admonition, div.topic, blockquote {
|
||||
clear: left;
|
||||
}
|
||||
|
||||
/* -- topics ---------------------------------------------------------------- */
|
||||
|
||||
div.topic {
|
||||
border: 1px solid #ccc;
|
||||
padding: 7px 7px 0 7px;
|
||||
padding: 7px;
|
||||
margin: 10px 0 10px 0;
|
||||
}
|
||||
|
||||
|
@ -352,10 +364,6 @@ div.admonition dt {
|
|||
font-weight: bold;
|
||||
}
|
||||
|
||||
div.admonition dl {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
p.admonition-title {
|
||||
margin: 0px 10px 5px 0px;
|
||||
font-weight: bold;
|
||||
|
@ -366,9 +374,28 @@ div.body p.centered {
|
|||
margin-top: 25px;
|
||||
}
|
||||
|
||||
/* -- content of sidebars/topics/admonitions -------------------------------- */
|
||||
|
||||
div.sidebar > :last-child,
|
||||
div.topic > :last-child,
|
||||
div.admonition > :last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
div.sidebar::after,
|
||||
div.topic::after,
|
||||
div.admonition::after,
|
||||
blockquote::after {
|
||||
display: block;
|
||||
content: '';
|
||||
clear: both;
|
||||
}
|
||||
|
||||
/* -- tables ---------------------------------------------------------------- */
|
||||
|
||||
table.docutils {
|
||||
margin-top: 10px;
|
||||
margin-bottom: 10px;
|
||||
border: 0;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
|
@ -416,13 +443,13 @@ table.citation td {
|
|||
border-bottom: none;
|
||||
}
|
||||
|
||||
th > p:first-child,
|
||||
td > p:first-child {
|
||||
th > :first-child,
|
||||
td > :first-child {
|
||||
margin-top: 0px;
|
||||
}
|
||||
|
||||
th > p:last-child,
|
||||
td > p:last-child {
|
||||
th > :last-child,
|
||||
td > :last-child {
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
|
||||
|
@ -468,6 +495,10 @@ table.field-list td, table.field-list th {
|
|||
|
||||
/* -- hlist styles ---------------------------------------------------------- */
|
||||
|
||||
table.hlist {
|
||||
margin: 1em 0;
|
||||
}
|
||||
|
||||
table.hlist td {
|
||||
vertical-align: top;
|
||||
}
|
||||
|
@ -495,17 +526,37 @@ ol.upperroman {
|
|||
list-style: upper-roman;
|
||||
}
|
||||
|
||||
li > p:first-child {
|
||||
:not(li) > ol > li:first-child > :first-child,
|
||||
:not(li) > ul > li:first-child > :first-child {
|
||||
margin-top: 0px;
|
||||
}
|
||||
|
||||
li > p:last-child {
|
||||
:not(li) > ol > li:last-child > :last-child,
|
||||
:not(li) > ul > li:last-child > :last-child {
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
|
||||
ol.simple ol p,
|
||||
ol.simple ul p,
|
||||
ul.simple ol p,
|
||||
ul.simple ul p {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
ol.simple > li:not(:first-child) > p,
|
||||
ul.simple > li:not(:first-child) > p {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
ol.simple p,
|
||||
ul.simple p {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
dl.footnote > dt,
|
||||
dl.citation > dt {
|
||||
float: left;
|
||||
margin-right: 0.5em;
|
||||
}
|
||||
|
||||
dl.footnote > dd,
|
||||
|
@ -546,7 +597,7 @@ dl {
|
|||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
dd > p:first-child {
|
||||
dd > :first-child {
|
||||
margin-top: 0px;
|
||||
}
|
||||
|
||||
|
@ -560,6 +611,11 @@ dd {
|
|||
margin-left: 30px;
|
||||
}
|
||||
|
||||
dl > dd:last-child,
|
||||
dl > dd:last-child > :last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
dt:target, span.highlighted {
|
||||
background-color: #fbe54e;
|
||||
}
|
||||
|
@ -637,6 +693,10 @@ pre {
|
|||
overflow-y: hidden; /* fixes display issues on Chrome browsers */
|
||||
}
|
||||
|
||||
pre, div[class*="highlight-"] {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
span.pre {
|
||||
-moz-hyphens: none;
|
||||
-ms-hyphens: none;
|
||||
|
@ -644,22 +704,57 @@ span.pre {
|
|||
hyphens: none;
|
||||
}
|
||||
|
||||
div[class*="highlight-"] {
|
||||
margin: 1em 0;
|
||||
}
|
||||
|
||||
td.linenos pre {
|
||||
padding: 5px 0px;
|
||||
border: 0;
|
||||
background-color: transparent;
|
||||
color: #aaa;
|
||||
}
|
||||
|
||||
table.highlighttable {
|
||||
margin-left: 0.5em;
|
||||
display: block;
|
||||
}
|
||||
|
||||
table.highlighttable tbody {
|
||||
display: block;
|
||||
}
|
||||
|
||||
table.highlighttable tr {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
table.highlighttable td {
|
||||
padding: 0 0.5em 0 0.5em;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
table.highlighttable td.linenos {
|
||||
padding-right: 0.5em;
|
||||
}
|
||||
|
||||
table.highlighttable td.code {
|
||||
flex: 1;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.highlight .hll {
|
||||
display: block;
|
||||
}
|
||||
|
||||
div.highlight pre,
|
||||
table.highlighttable pre {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
div.code-block-caption + div {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
div.code-block-caption {
|
||||
margin-top: 1em;
|
||||
padding: 2px 5px;
|
||||
font-size: small;
|
||||
}
|
||||
|
@ -668,10 +763,7 @@ div.code-block-caption code {
|
|||
background-color: transparent;
|
||||
}
|
||||
|
||||
div.code-block-caption + div > div.highlight > pre {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
table.highlighttable td.linenos,
|
||||
div.doctest > div.highlight span.gp { /* gp: Generic.Prompt */
|
||||
user-select: none;
|
||||
}
|
||||
|
@ -685,11 +777,7 @@ div.code-block-caption span.caption-text {
|
|||
}
|
||||
|
||||
div.literal-block-wrapper {
|
||||
padding: 1em 1em 0;
|
||||
}
|
||||
|
||||
div.literal-block-wrapper div.highlight {
|
||||
margin: 0;
|
||||
margin: 1em 0;
|
||||
}
|
||||
|
||||
code.descname {
|
||||
|
@ -740,8 +828,7 @@ span.eqno {
|
|||
}
|
||||
|
||||
span.eqno a.headerlink {
|
||||
position: relative;
|
||||
left: 0px;
|
||||
position: absolute;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'),
|
||||
VERSION: '6.8.0',
|
||||
VERSION: '6.8.0-21-g9e89088e',
|
||||
LANGUAGE: 'None',
|
||||
COLLAPSE_INDEX: false,
|
||||
BUILDER: 'html',
|
||||
|
|
|
@ -1,5 +1,10 @@
|
|||
pre { line-height: 125%; margin: 0; }
|
||||
td.linenos pre { color: #000000; background-color: #f0f0f0; padding: 0 5px 0 5px; }
|
||||
span.linenos { color: #000000; background-color: #f0f0f0; padding: 0 5px 0 5px; }
|
||||
td.linenos pre.special { color: #000000; background-color: #ffffc0; padding: 0 5px 0 5px; }
|
||||
span.linenos.special { color: #000000; background-color: #ffffc0; padding: 0 5px 0 5px; }
|
||||
.highlight .hll { background-color: #ffffcc }
|
||||
.highlight { background: #eeffcc; }
|
||||
.highlight { background: #eeffcc; }
|
||||
.highlight .c { color: #408090; font-style: italic } /* Comment */
|
||||
.highlight .err { border: 1px solid #FF0000 } /* Error */
|
||||
.highlight .k { color: #007020; font-weight: bold } /* Keyword */
|
||||
|
|
|
@ -166,8 +166,7 @@ var Search = {
|
|||
objectterms.push(tmp[i].toLowerCase());
|
||||
}
|
||||
|
||||
if ($u.indexOf(stopwords, tmp[i].toLowerCase()) != -1 || tmp[i].match(/^\d+$/) ||
|
||||
tmp[i] === "") {
|
||||
if ($u.indexOf(stopwords, tmp[i].toLowerCase()) != -1 || tmp[i] === "") {
|
||||
// skip this "word"
|
||||
continue;
|
||||
}
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>25. Best practice — cdist 6.8.0 documentation</title>
|
||||
<title>25. Best practice — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>12. Bootstrap — cdist 6.8.0 documentation</title>
|
||||
<title>12. Bootstrap — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>27. Local cache overview — cdist 6.8.0 documentation</title>
|
||||
<title>27. Local cache overview — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>13. Configuration — cdist 6.8.0 documentation</title>
|
||||
<title>13. Configuration — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>17. Explorer — cdist 6.8.0 documentation</title>
|
||||
<title>17. Explorer — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -36,7 +36,7 @@
|
|||
<link rel="index" title="Index" href="genindex.html" />
|
||||
<link rel="search" title="Search" href="search.html" />
|
||||
<link rel="next" title="18. Messaging" href="cdist-messaging.html" />
|
||||
<link rel="prev" title="16.162. cdist-type__zypper_service(7)" href="man7/cdist-type__zypper_service.html" />
|
||||
<link rel="prev" title="16.164. cdist-type__zypper_service(7)" href="man7/cdist-type__zypper_service.html" />
|
||||
</head>
|
||||
|
||||
<body class="wy-body-for-nav">
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
@ -245,7 +245,7 @@ dpkg -s <span class="s2">"</span><span class="nv">$name</span><span class="
|
|||
<a href="cdist-messaging.html" class="btn btn-neutral float-right" title="18. Messaging" accesskey="n" rel="next">Next <span class="fa fa-arrow-circle-right"></span></a>
|
||||
|
||||
|
||||
<a href="man7/cdist-type__zypper_service.html" class="btn btn-neutral float-left" title="16.162. cdist-type__zypper_service(7)" accesskey="p" rel="prev"><span class="fa fa-arrow-circle-left"></span> Previous</a>
|
||||
<a href="man7/cdist-type__zypper_service.html" class="btn btn-neutral float-left" title="16.164. cdist-type__zypper_service(7)" accesskey="p" rel="prev"><span class="fa fa-arrow-circle-left"></span> Previous</a>
|
||||
|
||||
</div>
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>2. Features — cdist 6.8.0 documentation</title>
|
||||
<title>2. Features — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>30. Hacking — cdist 6.8.0 documentation</title>
|
||||
<title>30. Hacking — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>4. How to install cdist — cdist 6.8.0 documentation</title>
|
||||
<title>4. How to install cdist — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>23. cdist integration / using cdist as library — cdist 6.8.0 documentation</title>
|
||||
<title>23. cdist integration / using cdist as library — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>20. Inventory — cdist 6.8.0 documentation</title>
|
||||
<title>20. Inventory — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>14. Manifest — cdist 6.8.0 documentation</title>
|
||||
<title>14. Manifest — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>18. Messaging — cdist 6.8.0 documentation</title>
|
||||
<title>18. Messaging — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>3. Supported operating systems — cdist 6.8.0 documentation</title>
|
||||
<title>3. Supported operating systems — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>19. Parallelization — cdist 6.8.0 documentation</title>
|
||||
<title>19. Parallelization — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>22. PreOS — cdist 6.8.0 documentation</title>
|
||||
<title>22. PreOS — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>7. Quickstart — cdist 6.8.0 documentation</title>
|
||||
<title>7. Quickstart — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>8. Dive into real world cdist — cdist 6.8.0 documentation</title>
|
||||
<title>8. Dive into real world cdist — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>24. Reference — cdist 6.8.0 documentation</title>
|
||||
<title>24. Reference — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
@ -455,6 +455,8 @@ This directory is referenced by the variable __object (see below).</p>
|
|||
<li><p>__systemd_service (<a class="reference external" href="man7/cdist-type__systemd_service.html">cdist-type__systemd_service(7)</a>)</p></li>
|
||||
<li><p>__systemd_unit (<a class="reference external" href="man7/cdist-type__systemd_unit.html">cdist-type__systemd_unit(7)</a>)</p></li>
|
||||
<li><p>__timezone (<a class="reference external" href="man7/cdist-type__timezone.html">cdist-type__timezone(7)</a>)</p></li>
|
||||
<li><p>__uci (<a class="reference external" href="man7/cdist-type__uci.html">cdist-type__uci(7)</a>)</p></li>
|
||||
<li><p>__uci_section (<a class="reference external" href="man7/cdist-type__uci_section.html">cdist-type__uci_section(7)</a>)</p></li>
|
||||
<li><p>__ufw (<a class="reference external" href="man7/cdist-type__ufw.html">cdist-type__ufw(7)</a>)</p></li>
|
||||
<li><p>__ufw_rule (<a class="reference external" href="man7/cdist-type__ufw_rule.html">cdist-type__ufw_rule(7)</a>)</p></li>
|
||||
<li><p>__unpack (<a class="reference external" href="man7/cdist-type__unpack.html">cdist-type__unpack(7)</a>)</p></li>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>29. Remote exec and copy commands — cdist 6.8.0 documentation</title>
|
||||
<title>29. Remote exec and copy commands — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
@ -116,7 +116,19 @@
|
|||
<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 current"><a class="current reference internal" href="#">29. Remote exec and copy commands</a></li>
|
||||
<li class="toctree-l1 current"><a class="current reference internal" href="#">29. Remote exec and copy commands</a><ul>
|
||||
<li class="toctree-l2"><a class="reference internal" href="#examples">29.1. Examples</a><ul>
|
||||
<li class="toctree-l3"><a class="reference internal" href="#ssh">29.1.1. ssh</a></li>
|
||||
<li class="toctree-l3"><a class="reference internal" href="#local">29.1.2. local</a></li>
|
||||
<li class="toctree-l3"><a class="reference internal" href="#chroot">29.1.3. chroot</a></li>
|
||||
<li class="toctree-l3"><a class="reference internal" href="#rsync">29.1.4. rsync</a></li>
|
||||
<li class="toctree-l3"><a class="reference internal" href="#schroot">29.1.5. schroot</a></li>
|
||||
<li class="toctree-l3"><a class="reference internal" href="#schroot-uri">29.1.6. schroot-uri</a></li>
|
||||
<li class="toctree-l3"><a class="reference internal" href="#sudo">29.1.7. sudo</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</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>
|
||||
|
@ -193,7 +205,7 @@
|
|||
<p>By default this is accomplished with ssh and scp respectively.
|
||||
The default implementations used by cdist are:</p>
|
||||
<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">__remote_exec</span><span class="p">:</span> <span class="n">ssh</span> <span class="o">-</span><span class="n">o</span> <span class="n">User</span><span class="o">=</span><span class="n">root</span>
|
||||
<span class="n">__remote_copy</span><span class="p">:</span> <span class="n">scp</span> <span class="o">-</span><span class="n">o</span> <span class="n">User</span><span class="o">=</span><span class="n">root</span>
|
||||
<span class="n">__remote_copy</span><span class="p">:</span> <span class="n">scp</span> <span class="o">-</span><span class="n">o</span> <span class="n">User</span><span class="o">=</span><span class="n">root</span> <span class="o">-</span><span class="n">q</span>
|
||||
</pre></div>
|
||||
</div>
|
||||
<p>The user can override these defaults by providing custom implementations and
|
||||
|
@ -208,6 +220,348 @@ specified by enclosed in square brackets (see <strong>ssh</strong>(1) and
|
|||
<p>With this simple interface the user can take total control of how cdist
|
||||
interacts with the target when required, while the default implementation
|
||||
remains as simple as possible.</p>
|
||||
<div class="section" id="examples">
|
||||
<h2><span class="section-number">29.1. </span>Examples<a class="headerlink" href="#examples" title="Permalink to this headline">¶</a></h2>
|
||||
<p>Here are examples of using alternative __remote_copy and __remote_exec scripts.</p>
|
||||
<p>All scripts from below are present in cdist sources in <cite>other/examples/remote</cite>
|
||||
directory.</p>
|
||||
<div class="section" id="ssh">
|
||||
<h3><span class="section-number">29.1.1. </span>ssh<a class="headerlink" href="#ssh" title="Permalink to this headline">¶</a></h3>
|
||||
<p>Same as cdist default.</p>
|
||||
<p><strong>copy</strong></p>
|
||||
<p>Usage: cdist config --remote-copy "/path/to/this/script" target_host</p>
|
||||
<div class="highlight-sh notranslate"><div class="highlight"><pre><span></span><span class="c1">#echo "$@" | logger -t "cdist-ssh-copy"</span>
|
||||
scp -o <span class="nv">User</span><span class="o">=</span>root -q <span class="nv">$@</span>
|
||||
</pre></div>
|
||||
</div>
|
||||
<p><strong>exec</strong></p>
|
||||
<p>Usage: cdist config --remote-exec "/path/to/this/script" target_host</p>
|
||||
<div class="highlight-sh notranslate"><div class="highlight"><pre><span></span><span class="c1">#echo "$@" | logger -t "cdist-ssh-exec"</span>
|
||||
ssh -o <span class="nv">User</span><span class="o">=</span>root <span class="nv">$@</span>
|
||||
</pre></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="section" id="local">
|
||||
<h3><span class="section-number">29.1.2. </span>local<a class="headerlink" href="#local" title="Permalink to this headline">¶</a></h3>
|
||||
<p>This effectively turns remote calling into local calling. Probably most useful
|
||||
for the unit testing.</p>
|
||||
<p><strong>copy</strong></p>
|
||||
<div class="highlight-sh notranslate"><div class="highlight"><pre><span></span><span class="nv">code</span><span class="o">=</span><span class="s2">"</span><span class="k">$(</span><span class="nb">echo</span> <span class="s2">"</span><span class="nv">$@</span><span class="s2">"</span> <span class="p">|</span> sed <span class="s2">"s|\([[:space:]]\)</span><span class="nv">$__target_host</span><span class="s2">:|\1|g"</span><span class="k">)</span><span class="s2">"</span>
|
||||
cp -L <span class="nv">$code</span>
|
||||
</pre></div>
|
||||
</div>
|
||||
<p><strong>exec</strong></p>
|
||||
<div class="highlight-sh notranslate"><div class="highlight"><pre><span></span><span class="nv">target_host</span><span class="o">=</span><span class="nv">$1</span><span class="p">;</span> <span class="nb">shift</span>
|
||||
<span class="nb">echo</span> <span class="s2">"</span><span class="nv">$@</span><span class="s2">"</span> <span class="p">|</span> /bin/sh
|
||||
</pre></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="section" id="chroot">
|
||||
<h3><span class="section-number">29.1.3. </span>chroot<a class="headerlink" href="#chroot" title="Permalink to this headline">¶</a></h3>
|
||||
<p><strong>copy</strong></p>
|
||||
<p>Usage: cdist config --remote-copy "/path/to/this/script /path/to/your/chroot" target-id</p>
|
||||
<div class="highlight-sh notranslate"><div class="highlight"><pre><span></span>log<span class="o">()</span> <span class="o">{</span>
|
||||
<span class="c1">#echo "$@" | logger -t "cdist-chroot-copy"</span>
|
||||
:
|
||||
<span class="o">}</span>
|
||||
|
||||
<span class="nv">chroot</span><span class="o">=</span><span class="s2">"</span><span class="nv">$1</span><span class="s2">"</span><span class="p">;</span> <span class="nb">shift</span>
|
||||
<span class="nv">target_host</span><span class="o">=</span><span class="s2">"</span><span class="nv">$__target_host</span><span class="s2">"</span>
|
||||
|
||||
<span class="c1"># replace target_host with chroot location</span>
|
||||
<span class="nv">code</span><span class="o">=</span><span class="s2">"</span><span class="k">$(</span><span class="nb">echo</span> <span class="s2">"</span><span class="nv">$@</span><span class="s2">"</span> <span class="p">|</span> sed <span class="s2">"s|</span><span class="nv">$target_host</span><span class="s2">:|</span><span class="nv">$chroot</span><span class="s2">|g"</span><span class="k">)</span><span class="s2">"</span>
|
||||
|
||||
log <span class="s2">"target_host: </span><span class="nv">$target_host</span><span class="s2">"</span>
|
||||
log <span class="s2">"chroot: </span><span class="nv">$chroot</span><span class="s2">"</span>
|
||||
log <span class="s2">"</span><span class="nv">$@</span><span class="s2">"</span>
|
||||
log <span class="s2">"</span><span class="nv">$code</span><span class="s2">"</span>
|
||||
|
||||
<span class="c1"># copy files into chroot</span>
|
||||
cp <span class="nv">$code</span>
|
||||
|
||||
log <span class="s2">"-----"</span>
|
||||
</pre></div>
|
||||
</div>
|
||||
<p><strong>exec</strong></p>
|
||||
<p>Usage: cdist config --remote-exec "/path/to/this/script /path/to/your/chroot" target-id</p>
|
||||
<div class="highlight-sh notranslate"><div class="highlight"><pre><span></span>log<span class="o">()</span> <span class="o">{</span>
|
||||
<span class="c1">#echo "$@" | logger -t "cdist-chroot-exec"</span>
|
||||
:
|
||||
<span class="o">}</span>
|
||||
|
||||
<span class="nv">chroot</span><span class="o">=</span><span class="s2">"</span><span class="nv">$1</span><span class="s2">"</span><span class="p">;</span> <span class="nb">shift</span>
|
||||
<span class="nv">target_host</span><span class="o">=</span><span class="s2">"</span><span class="nv">$1</span><span class="s2">"</span><span class="p">;</span> <span class="nb">shift</span>
|
||||
|
||||
<span class="nv">script</span><span class="o">=</span><span class="k">$(</span>mktemp <span class="s2">"</span><span class="si">${</span><span class="nv">chroot</span><span class="si">}</span><span class="s2">/tmp/chroot-</span><span class="si">${</span><span class="nv">0</span><span class="p">##*/</span><span class="si">}</span><span class="s2">.XXXXXXXXXX"</span><span class="k">)</span>
|
||||
<span class="nb">trap</span> cleanup INT TERM EXIT
|
||||
cleanup<span class="o">()</span> <span class="o">{</span>
|
||||
<span class="o">[</span> <span class="nv">$__cdist_debug</span> <span class="o">]</span> <span class="o">||</span> rm <span class="s2">"</span><span class="nv">$script</span><span class="s2">"</span>
|
||||
<span class="o">}</span>
|
||||
|
||||
log <span class="s2">"target_host: </span><span class="nv">$target_host</span><span class="s2">"</span>
|
||||
log <span class="s2">"script: </span><span class="nv">$script</span><span class="s2">"</span>
|
||||
log <span class="s2">"@: </span><span class="nv">$@</span><span class="s2">"</span>
|
||||
<span class="nb">echo</span> <span class="s2">"#!/bin/sh -l"</span> > <span class="s2">"</span><span class="nv">$script</span><span class="s2">"</span>
|
||||
<span class="nb">echo</span> <span class="s2">"</span><span class="nv">$@</span><span class="s2">"</span> >> <span class="s2">"</span><span class="nv">$script</span><span class="s2">"</span>
|
||||
chmod +x <span class="s2">"</span><span class="nv">$script</span><span class="s2">"</span>
|
||||
|
||||
<span class="nv">relative_script</span><span class="o">=</span><span class="s2">"</span><span class="si">${</span><span class="nv">script</span><span class="p">#</span><span class="nv">$chroot</span><span class="si">}</span><span class="s2">"</span>
|
||||
log <span class="s2">"relative_script: </span><span class="nv">$relative_script</span><span class="s2">"</span>
|
||||
|
||||
<span class="c1"># run in chroot</span>
|
||||
chroot <span class="s2">"</span><span class="nv">$chroot</span><span class="s2">"</span> <span class="s2">"</span><span class="nv">$relative_script</span><span class="s2">"</span>
|
||||
|
||||
log <span class="s2">"-----"</span>
|
||||
</pre></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="section" id="rsync">
|
||||
<h3><span class="section-number">29.1.4. </span>rsync<a class="headerlink" href="#rsync" title="Permalink to this headline">¶</a></h3>
|
||||
<p><strong>copy</strong></p>
|
||||
<p>Usage: cdist config --remote-copy /path/to/this/script target_host</p>
|
||||
<div class="highlight-sh notranslate"><div class="highlight"><pre><span></span><span class="c1"># For rsync to do the right thing, the source has to end with "/" if it is</span>
|
||||
<span class="c1"># a directory. The below preprocessor loop takes care of that.</span>
|
||||
|
||||
<span class="c1"># second last argument is the source</span>
|
||||
<span class="nv">source_index</span><span class="o">=</span><span class="k">$((</span><span class="nv">$#</span><span class="o">-</span><span class="m">1</span><span class="k">))</span>
|
||||
<span class="nv">index</span><span class="o">=</span><span class="m">0</span>
|
||||
<span class="k">for</span> arg in <span class="nv">$@</span><span class="p">;</span> <span class="k">do</span>
|
||||
<span class="k">if</span> <span class="o">[</span> <span class="nv">$index</span> -eq <span class="m">0</span> <span class="o">]</span><span class="p">;</span> <span class="k">then</span>
|
||||
<span class="c1"># reset $@</span>
|
||||
<span class="nb">set</span> --
|
||||
<span class="k">fi</span>
|
||||
<span class="nv">index</span><span class="o">=</span><span class="k">$((</span><span class="nv">index</span><span class="o">+=</span><span class="m">1</span><span class="k">))</span>
|
||||
<span class="k">if</span> <span class="o">[</span> <span class="nv">$index</span> -eq <span class="nv">$source_index</span> -a -d <span class="s2">"</span><span class="nv">$arg</span><span class="s2">"</span> <span class="o">]</span><span class="p">;</span> <span class="k">then</span>
|
||||
<span class="nv">arg</span><span class="o">=</span><span class="s2">"</span><span class="si">${</span><span class="nv">arg</span><span class="p">%/</span><span class="si">}</span><span class="s2">/"</span>
|
||||
<span class="k">fi</span>
|
||||
<span class="nb">set</span> -- <span class="s2">"</span><span class="nv">$@</span><span class="s2">"</span> <span class="s2">"</span><span class="nv">$arg</span><span class="s2">"</span>
|
||||
<span class="k">done</span>
|
||||
|
||||
rsync --backup --suffix<span class="o">=</span>~cdist -e <span class="s1">'ssh -o User=root'</span> <span class="nv">$@</span>
|
||||
</pre></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="section" id="schroot">
|
||||
<h3><span class="section-number">29.1.5. </span>schroot<a class="headerlink" href="#schroot" title="Permalink to this headline">¶</a></h3>
|
||||
<p>__remote_copy and __remote_exec scripts to run cdist against a chroot on the
|
||||
target host over ssh.</p>
|
||||
<p><strong>copy</strong></p>
|
||||
<p>Usage: cdist config --remote-copy "/path/to/this/script schroot-chroot-name" target_host</p>
|
||||
<div class="highlight-sh notranslate"><div class="highlight"><pre><span></span>log<span class="o">()</span> <span class="o">{</span>
|
||||
<span class="c1">#echo "$@" | logger -t "cdist-schroot-copy"</span>
|
||||
:
|
||||
<span class="o">}</span>
|
||||
|
||||
<span class="nv">chroot_name</span><span class="o">=</span><span class="s2">"</span><span class="nv">$1</span><span class="s2">"</span><span class="p">;</span> <span class="nb">shift</span>
|
||||
<span class="nv">target_host</span><span class="o">=</span><span class="s2">"</span><span class="nv">$__target_host</span><span class="s2">"</span>
|
||||
|
||||
<span class="c1"># get directory for given chroot_name</span>
|
||||
<span class="nv">chroot</span><span class="o">=</span><span class="s2">"</span><span class="k">$(</span>ssh -o <span class="nv">User</span><span class="o">=</span>root -q <span class="nv">$target_host</span> schroot -c <span class="nv">$chroot_name</span> --config <span class="p">|</span> awk -F <span class="o">=</span> <span class="s1">'/directory=/ {print $2}'</span><span class="k">)</span><span class="s2">"</span>
|
||||
|
||||
<span class="c1"># prefix destination with chroot</span>
|
||||
<span class="nv">code</span><span class="o">=</span><span class="s2">"</span><span class="k">$(</span><span class="nb">echo</span> <span class="s2">"</span><span class="nv">$@</span><span class="s2">"</span> <span class="p">|</span> sed <span class="s2">"s|</span><span class="nv">$target_host</span><span class="s2">:|</span><span class="nv">$target_host</span><span class="s2">:</span><span class="nv">$chroot</span><span class="s2">|g"</span><span class="k">)</span><span class="s2">"</span>
|
||||
|
||||
log <span class="s2">"target_host: </span><span class="nv">$target_host</span><span class="s2">"</span>
|
||||
log <span class="s2">"chroot_name: </span><span class="nv">$chroot_name</span><span class="s2">"</span>
|
||||
log <span class="s2">"chroot: </span><span class="nv">$chroot</span><span class="s2">"</span>
|
||||
log <span class="s2">"@: </span><span class="nv">$@</span><span class="s2">"</span>
|
||||
log <span class="s2">"code: </span><span class="nv">$code</span><span class="s2">"</span>
|
||||
|
||||
<span class="c1"># copy files into remote chroot</span>
|
||||
scp -o <span class="nv">User</span><span class="o">=</span>root -q <span class="nv">$code</span>
|
||||
|
||||
log <span class="s2">"-----"</span>
|
||||
</pre></div>
|
||||
</div>
|
||||
<p><strong>exec</strong></p>
|
||||
<p>Usage: cdist config --remote-exec "/path/to/this/script schroot-chroot-name" target_host</p>
|
||||
<div class="highlight-sh notranslate"><div class="highlight"><pre><span></span>log<span class="o">()</span> <span class="o">{</span>
|
||||
<span class="c1">#echo "$@" | logger -t "cdist-schroot-exec"</span>
|
||||
:
|
||||
<span class="o">}</span>
|
||||
|
||||
<span class="nv">chroot_name</span><span class="o">=</span><span class="s2">"</span><span class="nv">$1</span><span class="s2">"</span><span class="p">;</span> <span class="nb">shift</span>
|
||||
<span class="nv">target_host</span><span class="o">=</span><span class="s2">"</span><span class="nv">$1</span><span class="s2">"</span><span class="p">;</span> <span class="nb">shift</span>
|
||||
|
||||
<span class="nv">code</span><span class="o">=</span><span class="s2">"ssh -o User=root -q </span><span class="nv">$target_host</span><span class="s2"> schroot -c </span><span class="nv">$chroot_name</span><span class="s2"> -- </span><span class="nv">$@</span><span class="s2">"</span>
|
||||
|
||||
log <span class="s2">"target_host: </span><span class="nv">$target_host</span><span class="s2">"</span>
|
||||
log <span class="s2">"chroot_name: </span><span class="nv">$chroot_name</span><span class="s2">"</span>
|
||||
log <span class="s2">"@: </span><span class="nv">$@</span><span class="s2">"</span>
|
||||
log <span class="s2">"code: </span><span class="nv">$code</span><span class="s2">"</span>
|
||||
|
||||
<span class="c1"># run in remote chroot</span>
|
||||
<span class="nv">$code</span>
|
||||
|
||||
log <span class="s2">"-----"</span>
|
||||
</pre></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="section" id="schroot-uri">
|
||||
<h3><span class="section-number">29.1.6. </span>schroot-uri<a class="headerlink" href="#schroot-uri" title="Permalink to this headline">¶</a></h3>
|
||||
<p>__remote_exec/__remote_copy script to run cdist against a schroot target URI.</p>
|
||||
<p>Usage:</p>
|
||||
<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">cdist</span> <span class="n">config</span> \
|
||||
<span class="o">--</span><span class="n">remote</span><span class="o">-</span><span class="n">exec</span> <span class="s2">"/path/to/this/script exec"</span> \
|
||||
<span class="o">--</span><span class="n">remote</span><span class="o">-</span><span class="n">copy</span> <span class="s2">"/path/to/this/script copy"</span> \
|
||||
<span class="n">target_uri</span>
|
||||
|
||||
<span class="c1"># target_uri examples:</span>
|
||||
<span class="n">schroot</span><span class="p">:</span><span class="o">///</span><span class="n">chroot</span><span class="o">-</span><span class="n">name</span>
|
||||
<span class="n">schroot</span><span class="p">:</span><span class="o">//</span><span class="n">foo</span><span class="o">.</span><span class="n">ethz</span><span class="o">.</span><span class="n">ch</span><span class="o">/</span><span class="n">chroot</span><span class="o">-</span><span class="n">name</span>
|
||||
<span class="n">schroot</span><span class="p">:</span><span class="o">//</span><span class="n">user</span><span class="o">-</span><span class="n">name</span><span class="nd">@foo</span><span class="o">.</span><span class="n">ethz</span><span class="o">.</span><span class="n">ch</span><span class="o">/</span><span class="n">chroot</span><span class="o">-</span><span class="n">name</span>
|
||||
|
||||
<span class="c1"># and how to match them in .../manifest/init</span>
|
||||
<span class="n">case</span> <span class="s2">"$target_host"</span> <span class="ow">in</span>
|
||||
<span class="n">schroot</span><span class="p">:</span><span class="o">//*</span><span class="p">)</span>
|
||||
<span class="c1"># any schroot</span>
|
||||
<span class="p">;;</span>
|
||||
<span class="n">schroot</span><span class="p">:</span><span class="o">//</span><span class="n">foo</span><span class="o">.</span><span class="n">ethz</span><span class="o">.</span><span class="n">ch</span><span class="o">/*</span><span class="p">)</span>
|
||||
<span class="c1"># any schroot on specific host</span>
|
||||
<span class="p">;;</span>
|
||||
<span class="n">schroot</span><span class="p">:</span><span class="o">//</span><span class="n">foo</span><span class="o">.</span><span class="n">ethz</span><span class="o">.</span><span class="n">ch</span><span class="o">/</span><span class="n">chroot</span><span class="o">-</span><span class="n">name</span><span class="p">)</span>
|
||||
<span class="c1"># specific schroot on specific host</span>
|
||||
<span class="p">;;</span>
|
||||
<span class="n">schroot</span><span class="p">:</span><span class="o">///</span><span class="n">chroot</span><span class="o">-</span><span class="n">name</span><span class="p">)</span>
|
||||
<span class="c1"># specific schroot on localhost</span>
|
||||
<span class="p">;;</span>
|
||||
<span class="n">esac</span>
|
||||
</pre></div>
|
||||
</div>
|
||||
<p><strong>copy/exec</strong></p>
|
||||
<div class="highlight-sh notranslate"><div class="highlight"><pre><span></span><span class="nv">my_name</span><span class="o">=</span><span class="s2">"</span><span class="si">${</span><span class="nv">0</span><span class="p">##*/</span><span class="si">}</span><span class="s2">"</span>
|
||||
<span class="nv">mode</span><span class="o">=</span><span class="s2">"</span><span class="nv">$1</span><span class="s2">"</span><span class="p">;</span> <span class="nb">shift</span>
|
||||
|
||||
log<span class="o">()</span> <span class="o">{</span>
|
||||
<span class="c1"># uncomment me for debugging</span>
|
||||
<span class="c1">#echo "$@" | logger -t "cdist-$my_name-$mode"</span>
|
||||
:
|
||||
<span class="o">}</span>
|
||||
|
||||
die<span class="o">()</span> <span class="o">{</span>
|
||||
<span class="nb">echo</span> <span class="s2">"</span><span class="nv">$@</span><span class="s2">"</span> ><span class="p">&</span><span class="m">2</span>
|
||||
<span class="nb">exit</span> <span class="m">1</span>
|
||||
<span class="o">}</span>
|
||||
|
||||
|
||||
<span class="nv">uri</span><span class="o">=</span><span class="s2">"</span><span class="nv">$__target_host</span><span class="s2">"</span>
|
||||
|
||||
<span class="nv">scheme</span><span class="o">=</span><span class="s2">"</span><span class="si">${</span><span class="nv">uri</span><span class="p">%%:*</span><span class="si">}</span><span class="s2">"</span><span class="p">;</span> <span class="nv">rest</span><span class="o">=</span><span class="s2">"</span><span class="si">${</span><span class="nv">uri</span><span class="p">#</span><span class="nv">$scheme</span><span class="p">:</span><span class="si">}</span><span class="s2">"</span><span class="p">;</span> <span class="nv">rest</span><span class="o">=</span><span class="s2">"</span><span class="si">${</span><span class="nv">rest</span><span class="p">#//</span><span class="si">}</span><span class="s2">"</span>
|
||||
<span class="nv">authority</span><span class="o">=</span><span class="s2">"</span><span class="si">${</span><span class="nv">rest</span><span class="p">%%/*</span><span class="si">}</span><span class="s2">"</span><span class="p">;</span> <span class="nv">rest</span><span class="o">=</span><span class="s2">"</span><span class="si">${</span><span class="nv">rest</span><span class="p">#</span><span class="nv">$authority</span><span class="si">}</span><span class="s2">"</span>
|
||||
<span class="nv">path</span><span class="o">=</span><span class="s2">"</span><span class="si">${</span><span class="nv">rest</span><span class="p">%</span><span class="se">\?</span><span class="p">*</span><span class="si">}</span><span class="s2">"</span><span class="p">;</span> <span class="nv">rest</span><span class="o">=</span><span class="s2">"</span><span class="si">${</span><span class="nv">rest</span><span class="p">#</span><span class="nv">$path</span><span class="si">}</span><span class="s2">"</span>
|
||||
<span class="nv">schroot_name</span><span class="o">=</span><span class="s2">"</span><span class="si">${</span><span class="nv">path</span><span class="p">#/</span><span class="si">}</span><span class="s2">"</span>
|
||||
|
||||
<span class="o">[</span> <span class="s2">"</span><span class="nv">$scheme</span><span class="s2">"</span> <span class="o">=</span> <span class="s2">"schroot"</span> <span class="o">]</span> <span class="o">||</span> die <span class="s2">"Failed to parse scheme from __target_host (</span><span class="nv">$__target_host</span><span class="s2">). Expected 'schroot', got '</span><span class="nv">$scheme</span><span class="s2">'"</span>
|
||||
<span class="o">[</span> -n <span class="s2">"</span><span class="nv">$schroot_name</span><span class="s2">"</span> <span class="o">]</span> <span class="o">||</span> die <span class="s2">"Failed to parse schroot name from __target_host: </span><span class="nv">$__target_host</span><span class="s2">"</span>
|
||||
|
||||
<span class="k">case</span> <span class="s2">"</span><span class="nv">$authority</span><span class="s2">"</span> in
|
||||
<span class="s1">''</span><span class="o">)</span>
|
||||
<span class="c1"># authority is empty, neither user nor host given</span>
|
||||
<span class="nv">user</span><span class="o">=</span><span class="s2">""</span>
|
||||
<span class="nv">host</span><span class="o">=</span><span class="s2">""</span>
|
||||
<span class="p">;;</span>
|
||||
*@*<span class="o">)</span>
|
||||
<span class="c1"># authority contains @, take user from authority</span>
|
||||
<span class="nv">user</span><span class="o">=</span><span class="s2">"</span><span class="si">${</span><span class="nv">authority</span><span class="p">%@*</span><span class="si">}</span><span class="s2">"</span>
|
||||
<span class="nv">host</span><span class="o">=</span><span class="s2">"</span><span class="si">${</span><span class="nv">authority</span><span class="p">#*@</span><span class="si">}</span><span class="s2">"</span>
|
||||
<span class="p">;;</span>
|
||||
*<span class="o">)</span>
|
||||
<span class="c1"># no user in authority, default to root</span>
|
||||
<span class="nv">user</span><span class="o">=</span><span class="s2">"root"</span>
|
||||
<span class="nv">host</span><span class="o">=</span><span class="s2">"</span><span class="nv">$authority</span><span class="s2">"</span>
|
||||
<span class="p">;;</span>
|
||||
<span class="k">esac</span>
|
||||
|
||||
log <span class="s2">"mode: </span><span class="nv">$mode</span><span class="s2">"</span>
|
||||
log <span class="s2">"@: </span><span class="nv">$@</span><span class="s2">"</span>
|
||||
log <span class="s2">"uri: </span><span class="nv">$uri</span><span class="s2">"</span>
|
||||
log <span class="s2">"scheme: </span><span class="nv">$scheme</span><span class="s2">"</span>
|
||||
log <span class="s2">"authority: </span><span class="nv">$authority</span><span class="s2">"</span>
|
||||
log <span class="s2">"user: </span><span class="nv">$user</span><span class="s2">"</span>
|
||||
log <span class="s2">"host: </span><span class="nv">$host</span><span class="s2">"</span>
|
||||
log <span class="s2">"path: </span><span class="nv">$path</span><span class="s2">"</span>
|
||||
log <span class="s2">"schroot_name: </span><span class="nv">$schroot_name</span><span class="s2">"</span>
|
||||
|
||||
<span class="nv">exec_prefix</span><span class="o">=</span><span class="s2">""</span>
|
||||
<span class="nv">copy_prefix</span><span class="o">=</span><span class="s2">""</span>
|
||||
<span class="k">if</span> <span class="o">[</span> -n <span class="s2">"</span><span class="nv">$host</span><span class="s2">"</span> <span class="o">]</span><span class="p">;</span> <span class="k">then</span>
|
||||
<span class="c1"># we are working on a remote host</span>
|
||||
<span class="nv">exec_prefix</span><span class="o">=</span><span class="s2">"ssh -o User=</span><span class="nv">$user</span><span class="s2"> -q </span><span class="nv">$host</span><span class="s2">"</span>
|
||||
<span class="nv">copy_prefix</span><span class="o">=</span><span class="s2">"scp -o User=</span><span class="nv">$user</span><span class="s2"> -q"</span>
|
||||
<span class="nv">copy_destination_prefix</span><span class="o">=</span><span class="s2">"</span><span class="nv">$host</span><span class="s2">:"</span>
|
||||
<span class="k">else</span>
|
||||
<span class="c1"># working on local machine</span>
|
||||
<span class="nv">copy_prefix</span><span class="o">=</span><span class="s2">"cp"</span>
|
||||
<span class="nv">copy_destination_prefix</span><span class="o">=</span><span class="s2">""</span>
|
||||
<span class="k">fi</span>
|
||||
log <span class="s2">"exec_prefix: </span><span class="nv">$exec_prefix</span><span class="s2">"</span>
|
||||
log <span class="s2">"copy_prefix: </span><span class="nv">$copy_prefix</span><span class="s2">"</span>
|
||||
log <span class="s2">"copy_destination_prefix: </span><span class="nv">$copy_destination_prefix</span><span class="s2">"</span>
|
||||
|
||||
<span class="k">case</span> <span class="s2">"</span><span class="nv">$mode</span><span class="s2">"</span> in
|
||||
<span class="nb">exec</span><span class="o">)</span>
|
||||
<span class="c1"># In exec mode the first argument is the __target_host which we already got from env. Get rid of it.</span>
|
||||
<span class="nb">shift</span>
|
||||
<span class="nv">code</span><span class="o">=</span><span class="s2">"</span><span class="nv">$exec_prefix</span><span class="s2"> schroot -c </span><span class="nv">$schroot_name</span><span class="s2"> -- sh -c '</span><span class="nv">$@</span><span class="s2">'"</span>
|
||||
<span class="p">;;</span>
|
||||
copy<span class="o">)</span>
|
||||
<span class="c1"># get directory for given chroot_name</span>
|
||||
<span class="nv">schroot_directory</span><span class="o">=</span><span class="s2">"</span><span class="k">$(</span><span class="nv">$exec_prefix</span> schroot -c <span class="nv">$schroot_name</span> --config <span class="p">|</span> awk -F <span class="o">=</span> <span class="s1">'/directory=/ {print $2}'</span><span class="k">)</span><span class="s2">"</span>
|
||||
<span class="o">[</span> -n <span class="s2">"</span><span class="nv">$schroot_directory</span><span class="s2">"</span> <span class="o">]</span> <span class="o">||</span> die <span class="s2">"Failed to retreive schroot directory for schroot: </span><span class="nv">$schroot_name</span><span class="s2">"</span>
|
||||
log <span class="s2">"schroot_directory: </span><span class="nv">$schroot_directory</span><span class="s2">"</span>
|
||||
<span class="c1"># prefix destination with chroot</span>
|
||||
<span class="nv">code</span><span class="o">=</span><span class="s2">"</span><span class="nv">$copy_prefix</span><span class="s2"> </span><span class="k">$(</span><span class="nb">echo</span> <span class="s2">"</span><span class="nv">$@</span><span class="s2">"</span> <span class="p">|</span> sed <span class="s2">"s|</span><span class="nv">$uri</span><span class="s2">:|</span><span class="si">${</span><span class="nv">copy_destination_prefix</span><span class="si">}${</span><span class="nv">schroot_directory</span><span class="si">}</span><span class="s2">|g"</span><span class="k">)</span><span class="s2">"</span>
|
||||
<span class="p">;;</span>
|
||||
*<span class="o">)</span> die <span class="s2">"Unknown mode: </span><span class="nv">$mode</span><span class="s2">"</span><span class="p">;;</span>
|
||||
<span class="k">esac</span>
|
||||
|
||||
log <span class="s2">"code: </span><span class="nv">$code</span><span class="s2">"</span>
|
||||
|
||||
<span class="c1"># Run the code</span>
|
||||
<span class="nv">$code</span>
|
||||
|
||||
log <span class="s2">"-----"</span>
|
||||
</pre></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="section" id="sudo">
|
||||
<h3><span class="section-number">29.1.7. </span>sudo<a class="headerlink" href="#sudo" title="Permalink to this headline">¶</a></h3>
|
||||
<p><strong>copy</strong></p>
|
||||
<p>Use rsync over ssh to copy files. Uses the "--rsync-path" option
|
||||
to run the remote rsync instance with sudo.</p>
|
||||
<p>This command assumes your ssh configuration is already set up in ~/.ssh/config.</p>
|
||||
<p>Usage: cdist config --remote-copy /path/to/this/script target_host</p>
|
||||
<div class="highlight-sh notranslate"><div class="highlight"><pre><span></span><span class="c1"># For rsync to do the right thing, the source has to end with "/" if it is</span>
|
||||
<span class="c1"># a directory. The below preprocessor loop takes care of that.</span>
|
||||
|
||||
<span class="c1"># second last argument is the source</span>
|
||||
<span class="nv">source_index</span><span class="o">=</span><span class="k">$((</span><span class="nv">$#</span><span class="o">-</span><span class="m">1</span><span class="k">))</span>
|
||||
<span class="nv">index</span><span class="o">=</span><span class="m">0</span>
|
||||
<span class="k">for</span> arg in <span class="nv">$@</span><span class="p">;</span> <span class="k">do</span>
|
||||
<span class="k">if</span> <span class="o">[</span> <span class="nv">$index</span> -eq <span class="m">0</span> <span class="o">]</span><span class="p">;</span> <span class="k">then</span>
|
||||
<span class="c1"># reset $@</span>
|
||||
<span class="nb">set</span> --
|
||||
<span class="k">fi</span>
|
||||
<span class="nv">index</span><span class="o">=</span><span class="k">$((</span><span class="nv">index</span><span class="o">+=</span><span class="m">1</span><span class="k">))</span>
|
||||
<span class="k">if</span> <span class="o">[</span> <span class="nv">$index</span> -eq <span class="nv">$source_index</span> -a -d <span class="s2">"</span><span class="nv">$arg</span><span class="s2">"</span> <span class="o">]</span><span class="p">;</span> <span class="k">then</span>
|
||||
<span class="nv">arg</span><span class="o">=</span><span class="s2">"</span><span class="si">${</span><span class="nv">arg</span><span class="p">%/</span><span class="si">}</span><span class="s2">/"</span>
|
||||
<span class="k">fi</span>
|
||||
<span class="nb">set</span> -- <span class="s2">"</span><span class="nv">$@</span><span class="s2">"</span> <span class="s2">"</span><span class="nv">$arg</span><span class="s2">"</span>
|
||||
<span class="k">done</span>
|
||||
|
||||
rsync --copy-links --rsync-path<span class="o">=</span><span class="s2">"sudo rsync"</span> -e <span class="s1">'ssh'</span> <span class="s2">"</span><span class="nv">$@</span><span class="s2">"</span>
|
||||
</pre></div>
|
||||
</div>
|
||||
<p><strong>exec</strong></p>
|
||||
<p>Prefixes all remote commands with sudo.</p>
|
||||
<p>This command assumes your ssh configuration is already set up in ~/.ssh/config.</p>
|
||||
<p>Usage: cdist config --remote-exec "/path/to/this/script" target_host</p>
|
||||
<div class="highlight-sh notranslate"><div class="highlight"><pre><span></span><span class="nv">host</span><span class="o">=</span><span class="s2">"</span><span class="nv">$1</span><span class="s2">"</span><span class="p">;</span> <span class="nb">shift</span>
|
||||
ssh -q <span class="s2">"</span><span class="nv">$host</span><span class="s2">"</span> sudo sh -c <span class="se">\"</span><span class="s2">"</span><span class="nv">$@</span><span class="s2">"</span><span class="se">\"</span>
|
||||
</pre></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>28. Saving output streams — cdist 6.8.0 documentation</title>
|
||||
<title>28. Saving output streams — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>26. Execution stages — cdist 6.8.0 documentation</title>
|
||||
<title>26. Execution stages — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>6. Support — cdist 6.8.0 documentation</title>
|
||||
<title>6. Support — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>21. Trigger — cdist 6.8.0 documentation</title>
|
||||
<title>21. Trigger — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>31. Troubleshooting — cdist 6.8.0 documentation</title>
|
||||
<title>31. Troubleshooting — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -62,7 +62,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>15. cdist type — cdist 6.8.0 documentation</title>
|
||||
<title>15. cdist type — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16. cdist types — cdist 6.8.0 documentation</title>
|
||||
<title>16. cdist types — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
@ -253,19 +253,21 @@
|
|||
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__systemd_service.html">16.147. __systemd_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__systemd_unit.html">16.148. __systemd_unit</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__timezone.html">16.149. __timezone</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__ufw.html">16.150. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__ufw_rule.html">16.151. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__unpack.html">16.152. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__update_alternatives.html">16.153. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__user.html">16.154. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__user_groups.html">16.155. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__xymon_apache.html">16.156. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__xymon_client.html">16.157. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__xymon_config.html">16.158. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__xymon_server.html">16.159. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__yum_repo.html">16.160. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__zypper_repo.html">16.161. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__zypper_service.html">16.162. __zypper_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__uci.html">16.150. __uci</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__uci_section.html">16.151. __uci_section</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__ufw.html">16.152. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__ufw_rule.html">16.153. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__unpack.html">16.154. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__update_alternatives.html">16.155. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__user.html">16.156. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__user_groups.html">16.157. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__xymon_apache.html">16.158. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__xymon_client.html">16.159. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__xymon_config.html">16.160. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__xymon_server.html">16.161. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__yum_repo.html">16.162. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__zypper_repo.html">16.163. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="man7/cdist-type__zypper_service.html">16.164. __zypper_service</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="cdist-explorer.html">17. Explorer</a></li>
|
||||
|
@ -500,19 +502,21 @@
|
|||
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__systemd_service.html">16.147. __systemd_service</a></li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__systemd_unit.html">16.148. __systemd_unit</a></li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__timezone.html">16.149. __timezone</a></li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__ufw.html">16.150. __ufw</a></li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__ufw_rule.html">16.151. __ufw_rule</a></li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__unpack.html">16.152. __unpack</a></li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__update_alternatives.html">16.153. __update_alternatives</a></li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__user.html">16.154. __user</a></li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__user_groups.html">16.155. __user_groups</a></li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__xymon_apache.html">16.156. __xymon_apache</a></li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__xymon_client.html">16.157. __xymon_client</a></li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__xymon_config.html">16.158. __xymon_config</a></li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__xymon_server.html">16.159. __xymon_server</a></li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__yum_repo.html">16.160. __yum_repo</a></li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__zypper_repo.html">16.161. __zypper_repo</a></li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__zypper_service.html">16.162. __zypper_service</a></li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__uci.html">16.150. __uci</a></li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__uci_section.html">16.151. __uci_section</a></li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__ufw.html">16.152. __ufw</a></li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__ufw_rule.html">16.153. __ufw_rule</a></li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__unpack.html">16.154. __unpack</a></li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__update_alternatives.html">16.155. __update_alternatives</a></li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__user.html">16.156. __user</a></li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__user_groups.html">16.157. __user_groups</a></li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__xymon_apache.html">16.158. __xymon_apache</a></li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__xymon_client.html">16.159. __xymon_client</a></li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__xymon_config.html">16.160. __xymon_config</a></li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__xymon_server.html">16.161. __xymon_server</a></li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__yum_repo.html">16.162. __yum_repo</a></li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__zypper_repo.html">16.163. __zypper_repo</a></li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="man7/cdist-type__zypper_service.html">16.164. __zypper_service</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>5. How to upgrade cdist — cdist 6.8.0 documentation</title>
|
||||
<title>5. How to upgrade cdist — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>1. Why should I use cdist? — cdist 6.8.0 documentation</title>
|
||||
<title>1. Why should I use cdist? — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
|
||||
|
||||
|
||||
<!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]-->
|
||||
|
@ -9,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>Index — cdist 6.8.0 documentation</title>
|
||||
<title>Index — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -62,7 +61,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>cdist - usable configuration management — cdist 6.8.0 documentation</title>
|
||||
<title>cdist - usable configuration management — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -62,7 +62,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>10. cdist-dump(1) — cdist 6.8.0 documentation</title>
|
||||
<title>10. cdist-dump(1) — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>11. cdist-new-type(1) — cdist 6.8.0 documentation</title>
|
||||
<title>11. cdist-new-type(1) — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>9. cdist(1) — cdist 6.8.0 documentation</title>
|
||||
<title>9. cdist(1) — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
@ -388,10 +388,8 @@ If configuration directories contain conflicting types, explorers or
|
|||
manifests, then the last one found is used.</p>
|
||||
</dd>
|
||||
<dt><strong>-f HOSTFILE, --file HOSTFILE</strong></dt><dd><p>Read specified file for a list of additional hosts to operate on
|
||||
or if '-' is given, read stdin (one host per line).
|
||||
If no host or host file is specified then, by default,
|
||||
read hosts from stdin. For the file format see
|
||||
<strong>HOSTFILE FORMAT</strong> below.</p>
|
||||
or if '-' is given, read stdin (one host per line). For the file
|
||||
format see <strong>HOSTFILE FORMAT</strong> below.</p>
|
||||
</dd>
|
||||
<dt><strong>-g CONFIG_FILE, --config-file CONFIG_FILE</strong></dt><dd><p>Use specified custom configuration file.</p>
|
||||
</dd>
|
||||
|
@ -486,9 +484,8 @@ Currently in beta with all sub-commands.</p>
|
|||
<dt><strong>-b, --beta</strong></dt><dd><p>Enable beta functionality.</p>
|
||||
</dd>
|
||||
<dt><strong>-f HOSTFILE, --file HOSTFILE</strong></dt><dd><p>Read additional hosts to add from specified file or
|
||||
from stdin if '-' (each host on separate line). If no
|
||||
host or host file is specified then, by default, read
|
||||
from stdin. Hostfile format is the same as config hostfile format.</p>
|
||||
from stdin if '-' (each host on separate line).
|
||||
Hostfile format is the same as config hostfile format.</p>
|
||||
</dd>
|
||||
<dt><strong>-g CONFIG_FILE, --config-file CONFIG_FILE</strong></dt><dd><p>Use specified custom configuration file.</p>
|
||||
</dd>
|
||||
|
@ -510,11 +507,8 @@ inventory directory is used.</p>
|
|||
<dt><strong>-b, --beta</strong></dt><dd><p>Enable beta functionality.</p>
|
||||
</dd>
|
||||
<dt><strong>-f HOSTFILE, --file HOSTFILE</strong></dt><dd><p>Read additional hosts to add tags from specified file
|
||||
or from stdin if '-' (each host on separate line). If
|
||||
no host or host file is specified then, by default,
|
||||
read from stdin. If no tags/tagfile nor hosts/hostfile
|
||||
are specified then tags are read from stdin and are
|
||||
added to all hosts. Hostfile format is the same as config hostfile format.</p>
|
||||
or from stdin if '-' (each host on separate line).
|
||||
Hostfile format is the same as config hostfile format.</p>
|
||||
</dd>
|
||||
<dt><strong>-g CONFIG_FILE, --config-file CONFIG_FILE</strong></dt><dd><p>Use specified custom configuration file.</p>
|
||||
</dd>
|
||||
|
@ -526,11 +520,8 @@ directory is used, if HOME env var is set then
|
|||
inventory directory is used.</p>
|
||||
</dd>
|
||||
<dt><strong>-T TAGFILE, --tag-file TAGFILE</strong></dt><dd><p>Read additional tags to add from specified file or
|
||||
from stdin if '-' (each tag on separate line). If no
|
||||
tag or tag file is specified then, by default, read
|
||||
from stdin. If no tags/tagfile nor hosts/hostfile are
|
||||
specified then tags are read from stdin and are added
|
||||
to all hosts. Tagfile format is the same as config hostfile format.</p>
|
||||
from stdin if '-' (each tag on separate line).
|
||||
Tagfile format is the same as config hostfile format.</p>
|
||||
</dd>
|
||||
<dt><strong>-t TAGLIST, --taglist TAGLIST</strong></dt><dd><p>Tag list to be added for specified host(s), comma
|
||||
separated values.</p>
|
||||
|
@ -548,9 +539,8 @@ separated values.</p>
|
|||
<dt><strong>-b, --beta</strong></dt><dd><p>Enable beta functionality.</p>
|
||||
</dd>
|
||||
<dt><strong>-f HOSTFILE, --file HOSTFILE</strong></dt><dd><p>Read additional hosts to delete from specified file or
|
||||
from stdin if '-' (each host on separate line). If no
|
||||
host or host file is specified then, by default, read
|
||||
from stdin. Hostfile format is the same as config hostfile format.</p>
|
||||
from stdin if '-' (each host on separate line).
|
||||
Hostfile format is the same as config hostfile format.</p>
|
||||
</dd>
|
||||
<dt><strong>-g CONFIG_FILE, --config-file CONFIG_FILE</strong></dt><dd><p>Use specified custom configuration file.</p>
|
||||
</dd>
|
||||
|
@ -575,11 +565,8 @@ inventory directory is used.</p>
|
|||
</dd>
|
||||
<dt><strong>-f HOSTFILE, --file HOSTFILE</strong></dt><dd><p>Read additional hosts to delete tags for from
|
||||
specified file or from stdin if '-' (each host on
|
||||
separate line). If no host or host file is specified
|
||||
then, by default, read from stdin. If no tags/tagfile
|
||||
nor hosts/hostfile are specified then tags are read
|
||||
from stdin and are deleted from all hosts. Hostfile
|
||||
format is the same as config hostfile format.</p>
|
||||
separate line). Hostfile format is the same as
|
||||
config hostfile format.</p>
|
||||
</dd>
|
||||
<dt><strong>-g CONFIG_FILE, --config-file CONFIG_FILE</strong></dt><dd><p>Use specified custom configuration file.</p>
|
||||
</dd>
|
||||
|
@ -591,11 +578,8 @@ directory is used, if HOME env var is set then
|
|||
inventory directory is used.</p>
|
||||
</dd>
|
||||
<dt><strong>-T TAGFILE, --tag-file TAGFILE</strong></dt><dd><p>Read additional tags from specified file or from stdin
|
||||
if '-' (each tag on separate line). If no tag or tag
|
||||
file is specified then, by default, read from stdin.
|
||||
If no tags/tagfile nor hosts/hostfile are specified
|
||||
then tags are read from stdin and are added to all
|
||||
hosts. Tagfile format is the same as config hostfile format.</p>
|
||||
if '-' (each tag on separate line).
|
||||
Tagfile format is the same as config hostfile format.</p>
|
||||
</dd>
|
||||
<dt><strong>-t TAGLIST, --taglist TAGLIST</strong></dt><dd><p>Tag list to be deleted for specified host(s), comma
|
||||
separated values.</p>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.1. cdist-type__acl(7) — cdist 6.8.0 documentation</title>
|
||||
<title>16.1. cdist-type__acl(7) — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
@ -107,13 +107,12 @@
|
|||
<li class="toctree-l2 current"><a class="current reference internal" href="#">16.1. __acl</a><ul>
|
||||
<li class="toctree-l3"><a class="reference internal" href="#name">16.1.1. NAME</a></li>
|
||||
<li class="toctree-l3"><a class="reference internal" href="#description">16.1.2. DESCRIPTION</a></li>
|
||||
<li class="toctree-l3"><a class="reference internal" href="#required-multiple-parameters">16.1.3. REQUIRED MULTIPLE PARAMETERS</a></li>
|
||||
<li class="toctree-l3"><a class="reference internal" href="#optional-multiple-parameters">16.1.3. OPTIONAL MULTIPLE PARAMETERS</a></li>
|
||||
<li class="toctree-l3"><a class="reference internal" href="#optional-parameters">16.1.4. OPTIONAL PARAMETERS</a></li>
|
||||
<li class="toctree-l3"><a class="reference internal" href="#boolean-parameters">16.1.5. BOOLEAN PARAMETERS</a></li>
|
||||
<li class="toctree-l3"><a class="reference internal" href="#deprecated-parameters">16.1.6. DEPRECATED PARAMETERS</a></li>
|
||||
<li class="toctree-l3"><a class="reference internal" href="#examples">16.1.7. EXAMPLES</a></li>
|
||||
<li class="toctree-l3"><a class="reference internal" href="#authors">16.1.8. AUTHORS</a></li>
|
||||
<li class="toctree-l3"><a class="reference internal" href="#copying">16.1.9. COPYING</a></li>
|
||||
<li class="toctree-l3"><a class="reference internal" href="#examples">16.1.6. EXAMPLES</a></li>
|
||||
<li class="toctree-l3"><a class="reference internal" href="#authors">16.1.7. AUTHORS</a></li>
|
||||
<li class="toctree-l3"><a class="reference internal" href="#copying">16.1.8. COPYING</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__apt_default_release.html">16.2. __apt_default_release</a></li>
|
||||
|
@ -264,19 +263,21 @@
|
|||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_service.html">16.147. __systemd_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_unit.html">16.148. __systemd_unit</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__timezone.html">16.149. __timezone</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.150. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.151. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.152. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.153. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.154. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.155. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.156. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.157. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.158. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.159. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.160. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.161. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.162. __zypper_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci.html">16.150. __uci</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci_section.html">16.151. __uci_section</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.152. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.153. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.154. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.155. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.156. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.157. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.158. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.159. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.160. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.161. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.162. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.163. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.164. __zypper_service</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="../cdist-explorer.html">17. Explorer</a></li>
|
||||
|
@ -370,11 +371,13 @@
|
|||
<h2><span class="section-number">16.1.2. </span>DESCRIPTION<a class="headerlink" href="#description" title="Permalink to this headline">¶</a></h2>
|
||||
<p>Fully supported and tested on Linux (ext4 filesystem), partial support for FreeBSD.</p>
|
||||
<p>See <code class="docutils literal notranslate"><span class="pre">setfacl</span></code> and <code class="docutils literal notranslate"><span class="pre">acl</span></code> manpages for more details.</p>
|
||||
<p>One of <code class="docutils literal notranslate"><span class="pre">--entry</span></code> or <code class="docutils literal notranslate"><span class="pre">--source</span></code> must be used.</p>
|
||||
</div>
|
||||
<div class="section" id="required-multiple-parameters">
|
||||
<h2><span class="section-number">16.1.3. </span>REQUIRED MULTIPLE PARAMETERS<a class="headerlink" href="#required-multiple-parameters" title="Permalink to this headline">¶</a></h2>
|
||||
<div class="section" id="optional-multiple-parameters">
|
||||
<h2><span class="section-number">16.1.3. </span>OPTIONAL MULTIPLE PARAMETERS<a class="headerlink" href="#optional-multiple-parameters" title="Permalink to this headline">¶</a></h2>
|
||||
<dl class="simple">
|
||||
<dt>entry</dt><dd><p>Set ACL entry following <code class="docutils literal notranslate"><span class="pre">getfacl</span></code> output syntax.</p>
|
||||
<dt>entry</dt><dd><p>Set ACL entry following <code class="docutils literal notranslate"><span class="pre">getfacl</span></code> output syntax.
|
||||
Must be used if <code class="docutils literal notranslate"><span class="pre">--source</span></code> is not used.</p>
|
||||
</dd>
|
||||
</dl>
|
||||
</div>
|
||||
|
@ -383,7 +386,8 @@
|
|||
<dl class="simple">
|
||||
<dt>source</dt><dd><p>Read ACL entries from stdin or file.
|
||||
Ordering of entries is not important.
|
||||
When reading from file, comments and empty lines are ignored.</p>
|
||||
When reading from file, comments and empty lines are ignored.
|
||||
Must be used if <code class="docutils literal notranslate"><span class="pre">--entry</span></code> is not used.</p>
|
||||
</dd>
|
||||
<dt>file</dt><dd><p>Create/change file with <code class="docutils literal notranslate"><span class="pre">__file</span></code> using <code class="docutils literal notranslate"><span class="pre">user:group:mode</span></code> pattern.</p>
|
||||
</dd>
|
||||
|
@ -405,13 +409,8 @@ Setting default ACL in FreeBSD is currently not supported.</p>
|
|||
</dd>
|
||||
</dl>
|
||||
</div>
|
||||
<div class="section" id="deprecated-parameters">
|
||||
<h2><span class="section-number">16.1.6. </span>DEPRECATED PARAMETERS<a class="headerlink" href="#deprecated-parameters" title="Permalink to this headline">¶</a></h2>
|
||||
<p>Parameters <code class="docutils literal notranslate"><span class="pre">acl</span></code>, <code class="docutils literal notranslate"><span class="pre">user</span></code>, <code class="docutils literal notranslate"><span class="pre">group</span></code>, <code class="docutils literal notranslate"><span class="pre">mask</span></code> and <code class="docutils literal notranslate"><span class="pre">other</span></code> are deprecated and they
|
||||
will be removed in future versions. Please use <code class="docutils literal notranslate"><span class="pre">entry</span></code> parameter instead.</p>
|
||||
</div>
|
||||
<div class="section" id="examples">
|
||||
<h2><span class="section-number">16.1.7. </span>EXAMPLES<a class="headerlink" href="#examples" title="Permalink to this headline">¶</a></h2>
|
||||
<h2><span class="section-number">16.1.6. </span>EXAMPLES<a class="headerlink" href="#examples" title="Permalink to this headline">¶</a></h2>
|
||||
<div class="highlight-sh notranslate"><div class="highlight"><pre><span></span>__acl /srv/project <span class="se">\</span>
|
||||
--default <span class="se">\</span>
|
||||
--recursive <span class="se">\</span>
|
||||
|
@ -452,11 +451,11 @@ __acl /path/to/directory <span class="se">\</span>
|
|||
</div>
|
||||
</div>
|
||||
<div class="section" id="authors">
|
||||
<h2><span class="section-number">16.1.8. </span>AUTHORS<a class="headerlink" href="#authors" title="Permalink to this headline">¶</a></h2>
|
||||
<h2><span class="section-number">16.1.7. </span>AUTHORS<a class="headerlink" href="#authors" title="Permalink to this headline">¶</a></h2>
|
||||
<p>Ander Punnar <ander-at-kvlt-dot-ee></p>
|
||||
</div>
|
||||
<div class="section" id="copying">
|
||||
<h2><span class="section-number">16.1.9. </span>COPYING<a class="headerlink" href="#copying" title="Permalink to this headline">¶</a></h2>
|
||||
<h2><span class="section-number">16.1.8. </span>COPYING<a class="headerlink" href="#copying" title="Permalink to this headline">¶</a></h2>
|
||||
<p>Copyright (C) 2018 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
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.2. cdist-type__apt_default_release(7) — cdist 6.8.0 documentation</title>
|
||||
<title>16.2. cdist-type__apt_default_release(7) — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
@ -262,19 +262,21 @@
|
|||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_service.html">16.147. __systemd_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_unit.html">16.148. __systemd_unit</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__timezone.html">16.149. __timezone</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.150. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.151. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.152. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.153. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.154. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.155. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.156. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.157. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.158. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.159. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.160. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.161. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.162. __zypper_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci.html">16.150. __uci</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci_section.html">16.151. __uci_section</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.152. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.153. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.154. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.155. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.156. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.157. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.158. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.159. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.160. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.161. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.162. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.163. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.164. __zypper_service</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="../cdist-explorer.html">17. Explorer</a></li>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.3. cdist-type__apt_key(7) — cdist 6.8.0 documentation</title>
|
||||
<title>16.3. cdist-type__apt_key(7) — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
@ -262,19 +262,21 @@
|
|||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_service.html">16.147. __systemd_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_unit.html">16.148. __systemd_unit</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__timezone.html">16.149. __timezone</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.150. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.151. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.152. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.153. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.154. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.155. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.156. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.157. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.158. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.159. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.160. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.161. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.162. __zypper_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci.html">16.150. __uci</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci_section.html">16.151. __uci_section</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.152. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.153. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.154. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.155. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.156. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.157. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.158. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.159. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.160. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.161. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.162. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.163. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.164. __zypper_service</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="../cdist-explorer.html">17. Explorer</a></li>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.4. cdist-type__apt_key_uri(7) — cdist 6.8.0 documentation</title>
|
||||
<title>16.4. cdist-type__apt_key_uri(7) — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
@ -262,19 +262,21 @@
|
|||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_service.html">16.147. __systemd_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_unit.html">16.148. __systemd_unit</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__timezone.html">16.149. __timezone</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.150. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.151. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.152. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.153. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.154. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.155. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.156. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.157. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.158. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.159. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.160. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.161. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.162. __zypper_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci.html">16.150. __uci</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci_section.html">16.151. __uci_section</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.152. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.153. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.154. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.155. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.156. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.157. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.158. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.159. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.160. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.161. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.162. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.163. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.164. __zypper_service</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="../cdist-explorer.html">17. Explorer</a></li>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.5. cdist-type__apt_mark(7) — cdist 6.8.0 documentation</title>
|
||||
<title>16.5. cdist-type__apt_mark(7) — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
@ -262,19 +262,21 @@
|
|||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_service.html">16.147. __systemd_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_unit.html">16.148. __systemd_unit</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__timezone.html">16.149. __timezone</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.150. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.151. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.152. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.153. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.154. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.155. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.156. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.157. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.158. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.159. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.160. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.161. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.162. __zypper_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci.html">16.150. __uci</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci_section.html">16.151. __uci_section</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.152. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.153. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.154. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.155. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.156. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.157. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.158. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.159. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.160. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.161. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.162. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.163. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.164. __zypper_service</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="../cdist-explorer.html">17. Explorer</a></li>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.6. cdist-type__apt_norecommends(7) — cdist 6.8.0 documentation</title>
|
||||
<title>16.6. cdist-type__apt_norecommends(7) — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
@ -262,19 +262,21 @@
|
|||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_service.html">16.147. __systemd_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_unit.html">16.148. __systemd_unit</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__timezone.html">16.149. __timezone</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.150. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.151. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.152. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.153. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.154. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.155. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.156. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.157. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.158. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.159. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.160. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.161. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.162. __zypper_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci.html">16.150. __uci</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci_section.html">16.151. __uci_section</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.152. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.153. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.154. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.155. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.156. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.157. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.158. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.159. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.160. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.161. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.162. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.163. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.164. __zypper_service</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="../cdist-explorer.html">17. Explorer</a></li>
|
||||
|
@ -384,14 +386,15 @@
|
|||
</div>
|
||||
<div class="section" id="authors">
|
||||
<h2><span class="section-number">16.6.6. </span>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>>
|
||||
Dennis Camera <<a class="reference external" href="mailto:dennis.camera--%40--ssrq-sds-fds.ch">dennis<span>.</span>camera--<span>@</span>--ssrq-sds-fds<span>.</span>ch</a>></p>
|
||||
</div>
|
||||
<div class="section" id="copying">
|
||||
<h2><span class="section-number">16.6.7. </span>COPYING<a class="headerlink" href="#copying" title="Permalink to this headline">¶</a></h2>
|
||||
<p>Copyright (C) 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
|
||||
License, or (at your option) any later version.</p>
|
||||
<p>Copyright (C) 2014 Steven Armstrong, 2020 Dennis Camera.
|
||||
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.7. cdist-type__apt_ppa(7) — cdist 6.8.0 documentation</title>
|
||||
<title>16.7. cdist-type__apt_ppa(7) — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
@ -262,19 +262,21 @@
|
|||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_service.html">16.147. __systemd_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_unit.html">16.148. __systemd_unit</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__timezone.html">16.149. __timezone</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.150. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.151. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.152. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.153. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.154. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.155. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.156. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.157. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.158. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.159. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.160. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.161. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.162. __zypper_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci.html">16.150. __uci</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci_section.html">16.151. __uci_section</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.152. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.153. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.154. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.155. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.156. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.157. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.158. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.159. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.160. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.161. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.162. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.163. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.164. __zypper_service</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="../cdist-explorer.html">17. Explorer</a></li>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.8. cdist-type__apt_source(7) — cdist 6.8.0 documentation</title>
|
||||
<title>16.8. cdist-type__apt_source(7) — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
@ -263,19 +263,21 @@
|
|||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_service.html">16.147. __systemd_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_unit.html">16.148. __systemd_unit</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__timezone.html">16.149. __timezone</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.150. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.151. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.152. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.153. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.154. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.155. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.156. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.157. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.158. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.159. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.160. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.161. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.162. __zypper_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci.html">16.150. __uci</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci_section.html">16.151. __uci_section</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.152. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.153. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.154. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.155. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.156. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.157. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.158. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.159. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.160. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.161. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.162. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.163. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.164. __zypper_service</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="../cdist-explorer.html">17. Explorer</a></li>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.9. cdist-type__apt_unattended_upgrades(7) — cdist 6.8.0 documentation</title>
|
||||
<title>16.9. cdist-type__apt_unattended_upgrades(7) — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
@ -261,19 +261,21 @@
|
|||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_service.html">16.147. __systemd_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_unit.html">16.148. __systemd_unit</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__timezone.html">16.149. __timezone</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.150. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.151. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.152. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.153. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.154. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.155. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.156. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.157. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.158. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.159. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.160. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.161. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.162. __zypper_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci.html">16.150. __uci</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci_section.html">16.151. __uci_section</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.152. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.153. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.154. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.155. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.156. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.157. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.158. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.159. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.160. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.161. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.162. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.163. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.164. __zypper_service</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="../cdist-explorer.html">17. Explorer</a></li>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.10. cdist-type__apt_update_index(7) — cdist 6.8.0 documentation</title>
|
||||
<title>16.10. cdist-type__apt_update_index(7) — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
@ -262,19 +262,21 @@
|
|||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_service.html">16.147. __systemd_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_unit.html">16.148. __systemd_unit</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__timezone.html">16.149. __timezone</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.150. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.151. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.152. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.153. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.154. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.155. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.156. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.157. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.158. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.159. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.160. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.161. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.162. __zypper_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci.html">16.150. __uci</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci_section.html">16.151. __uci_section</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.152. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.153. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.154. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.155. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.156. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.157. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.158. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.159. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.160. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.161. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.162. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.163. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.164. __zypper_service</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="../cdist-explorer.html">17. Explorer</a></li>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.11. cdist-type__block(7) — cdist 6.8.0 documentation</title>
|
||||
<title>16.11. cdist-type__block(7) — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
@ -263,19 +263,21 @@
|
|||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_service.html">16.147. __systemd_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_unit.html">16.148. __systemd_unit</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__timezone.html">16.149. __timezone</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.150. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.151. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.152. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.153. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.154. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.155. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.156. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.157. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.158. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.159. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.160. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.161. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.162. __zypper_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci.html">16.150. __uci</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci_section.html">16.151. __uci_section</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.152. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.153. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.154. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.155. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.156. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.157. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.158. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.159. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.160. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.161. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.162. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.163. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.164. __zypper_service</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="../cdist-explorer.html">17. Explorer</a></li>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.12. cdist-type__ccollect_source(7) — cdist 6.8.0 documentation</title>
|
||||
<title>16.12. cdist-type__ccollect_source(7) — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
@ -265,19 +265,21 @@
|
|||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_service.html">16.147. __systemd_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_unit.html">16.148. __systemd_unit</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__timezone.html">16.149. __timezone</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.150. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.151. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.152. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.153. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.154. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.155. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.156. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.157. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.158. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.159. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.160. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.161. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.162. __zypper_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci.html">16.150. __uci</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci_section.html">16.151. __uci_section</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.152. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.153. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.154. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.155. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.156. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.157. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.158. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.159. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.160. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.161. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.162. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.163. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.164. __zypper_service</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="../cdist-explorer.html">17. Explorer</a></li>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.13. cdist-type__cdist(7) — cdist 6.8.0 documentation</title>
|
||||
<title>16.13. cdist-type__cdist(7) — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
@ -262,19 +262,21 @@
|
|||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_service.html">16.147. __systemd_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_unit.html">16.148. __systemd_unit</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__timezone.html">16.149. __timezone</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.150. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.151. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.152. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.153. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.154. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.155. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.156. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.157. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.158. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.159. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.160. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.161. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.162. __zypper_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci.html">16.150. __uci</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci_section.html">16.151. __uci_section</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.152. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.153. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.154. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.155. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.156. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.157. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.158. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.159. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.160. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.161. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.162. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.163. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.164. __zypper_service</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="../cdist-explorer.html">17. Explorer</a></li>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.14. cdist-type__cdist_preos_trigger(7) — cdist 6.8.0 documentation</title>
|
||||
<title>16.14. cdist-type__cdist_preos_trigger(7) — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
@ -262,19 +262,21 @@
|
|||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_service.html">16.147. __systemd_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_unit.html">16.148. __systemd_unit</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__timezone.html">16.149. __timezone</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.150. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.151. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.152. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.153. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.154. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.155. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.156. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.157. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.158. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.159. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.160. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.161. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.162. __zypper_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci.html">16.150. __uci</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci_section.html">16.151. __uci_section</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.152. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.153. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.154. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.155. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.156. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.157. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.158. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.159. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.160. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.161. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.162. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.163. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.164. __zypper_service</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="../cdist-explorer.html">17. Explorer</a></li>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.15. cdist-type__cdistmarker(7) — cdist 6.8.0 documentation</title>
|
||||
<title>16.15. cdist-type__cdistmarker(7) — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
@ -262,19 +262,21 @@
|
|||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_service.html">16.147. __systemd_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_unit.html">16.148. __systemd_unit</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__timezone.html">16.149. __timezone</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.150. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.151. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.152. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.153. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.154. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.155. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.156. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.157. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.158. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.159. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.160. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.161. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.162. __zypper_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci.html">16.150. __uci</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci_section.html">16.151. __uci_section</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.152. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.153. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.154. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.155. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.156. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.157. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.158. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.159. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.160. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.161. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.162. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.163. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.164. __zypper_service</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="../cdist-explorer.html">17. Explorer</a></li>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.16. cdist-type__check_messages(7) — cdist 6.8.0 documentation</title>
|
||||
<title>16.16. cdist-type__check_messages(7) — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
@ -261,19 +261,21 @@
|
|||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_service.html">16.147. __systemd_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_unit.html">16.148. __systemd_unit</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__timezone.html">16.149. __timezone</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.150. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.151. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.152. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.153. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.154. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.155. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.156. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.157. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.158. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.159. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.160. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.161. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.162. __zypper_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci.html">16.150. __uci</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci_section.html">16.151. __uci_section</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.152. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.153. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.154. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.155. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.156. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.157. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.158. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.159. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.160. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.161. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.162. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.163. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.164. __zypper_service</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="../cdist-explorer.html">17. Explorer</a></li>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.17. cdist-type__chroot_mount(7) — cdist 6.8.0 documentation</title>
|
||||
<title>16.17. cdist-type__chroot_mount(7) — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
@ -263,19 +263,21 @@
|
|||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_service.html">16.147. __systemd_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_unit.html">16.148. __systemd_unit</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__timezone.html">16.149. __timezone</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.150. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.151. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.152. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.153. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.154. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.155. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.156. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.157. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.158. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.159. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.160. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.161. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.162. __zypper_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci.html">16.150. __uci</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci_section.html">16.151. __uci_section</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.152. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.153. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.154. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.155. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.156. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.157. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.158. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.159. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.160. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.161. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.162. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.163. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.164. __zypper_service</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="../cdist-explorer.html">17. Explorer</a></li>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.18. cdist-type__chroot_umount(7) — cdist 6.8.0 documentation</title>
|
||||
<title>16.18. cdist-type__chroot_umount(7) — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
@ -264,19 +264,21 @@
|
|||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_service.html">16.147. __systemd_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_unit.html">16.148. __systemd_unit</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__timezone.html">16.149. __timezone</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.150. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.151. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.152. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.153. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.154. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.155. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.156. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.157. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.158. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.159. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.160. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.161. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.162. __zypper_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci.html">16.150. __uci</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci_section.html">16.151. __uci_section</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.152. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.153. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.154. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.155. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.156. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.157. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.158. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.159. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.160. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.161. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.162. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.163. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.164. __zypper_service</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="../cdist-explorer.html">17. Explorer</a></li>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.19. cdist-type__clean_path(7) — cdist 6.8.0 documentation</title>
|
||||
<title>16.19. cdist-type__clean_path(7) — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
@ -262,19 +262,21 @@
|
|||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_service.html">16.147. __systemd_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_unit.html">16.148. __systemd_unit</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__timezone.html">16.149. __timezone</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.150. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.151. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.152. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.153. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.154. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.155. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.156. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.157. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.158. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.159. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.160. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.161. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.162. __zypper_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci.html">16.150. __uci</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci_section.html">16.151. __uci_section</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.152. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.153. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.154. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.155. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.156. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.157. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.158. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.159. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.160. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.161. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.162. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.163. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.164. __zypper_service</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="../cdist-explorer.html">17. Explorer</a></li>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.20. cdist-type__config_file(7) — cdist 6.8.0 documentation</title>
|
||||
<title>16.20. cdist-type__config_file(7) — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
@ -263,19 +263,21 @@
|
|||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_service.html">16.147. __systemd_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_unit.html">16.148. __systemd_unit</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__timezone.html">16.149. __timezone</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.150. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.151. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.152. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.153. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.154. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.155. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.156. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.157. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.158. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.159. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.160. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.161. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.162. __zypper_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci.html">16.150. __uci</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci_section.html">16.151. __uci_section</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.152. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.153. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.154. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.155. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.156. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.157. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.158. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.159. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.160. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.161. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.162. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.163. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.164. __zypper_service</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="../cdist-explorer.html">17. Explorer</a></li>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.21. cdist-type__consul(7) — cdist 6.8.0 documentation</title>
|
||||
<title>16.21. cdist-type__consul(7) — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
@ -264,19 +264,21 @@
|
|||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_service.html">16.147. __systemd_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_unit.html">16.148. __systemd_unit</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__timezone.html">16.149. __timezone</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.150. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.151. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.152. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.153. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.154. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.155. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.156. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.157. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.158. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.159. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.160. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.161. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.162. __zypper_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci.html">16.150. __uci</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci_section.html">16.151. __uci_section</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.152. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.153. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.154. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.155. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.156. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.157. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.158. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.159. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.160. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.161. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.162. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.163. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.164. __zypper_service</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="../cdist-explorer.html">17. Explorer</a></li>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.22. cdist-type__consul_agent(7) — cdist 6.8.0 documentation</title>
|
||||
<title>16.22. cdist-type__consul_agent(7) — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
@ -264,19 +264,21 @@
|
|||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_service.html">16.147. __systemd_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_unit.html">16.148. __systemd_unit</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__timezone.html">16.149. __timezone</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.150. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.151. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.152. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.153. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.154. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.155. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.156. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.157. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.158. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.159. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.160. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.161. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.162. __zypper_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci.html">16.150. __uci</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci_section.html">16.151. __uci_section</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.152. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.153. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.154. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.155. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.156. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.157. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.158. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.159. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.160. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.161. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.162. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.163. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.164. __zypper_service</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="../cdist-explorer.html">17. Explorer</a></li>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.23. cdist-type__consul_check(7) — cdist 6.8.0 documentation</title>
|
||||
<title>16.23. cdist-type__consul_check(7) — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
@ -263,19 +263,21 @@
|
|||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_service.html">16.147. __systemd_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_unit.html">16.148. __systemd_unit</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__timezone.html">16.149. __timezone</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.150. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.151. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.152. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.153. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.154. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.155. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.156. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.157. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.158. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.159. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.160. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.161. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.162. __zypper_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci.html">16.150. __uci</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci_section.html">16.151. __uci_section</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.152. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.153. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.154. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.155. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.156. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.157. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.158. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.159. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.160. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.161. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.162. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.163. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.164. __zypper_service</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="../cdist-explorer.html">17. Explorer</a></li>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.24. cdist-type__consul_reload(7) — cdist 6.8.0 documentation</title>
|
||||
<title>16.24. cdist-type__consul_reload(7) — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
@ -262,19 +262,21 @@
|
|||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_service.html">16.147. __systemd_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_unit.html">16.148. __systemd_unit</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__timezone.html">16.149. __timezone</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.150. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.151. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.152. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.153. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.154. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.155. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.156. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.157. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.158. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.159. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.160. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.161. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.162. __zypper_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci.html">16.150. __uci</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci_section.html">16.151. __uci_section</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.152. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.153. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.154. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.155. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.156. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.157. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.158. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.159. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.160. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.161. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.162. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.163. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.164. __zypper_service</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="../cdist-explorer.html">17. Explorer</a></li>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.25. cdist-type__consul_service(7) — cdist 6.8.0 documentation</title>
|
||||
<title>16.25. cdist-type__consul_service(7) — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
@ -263,19 +263,21 @@
|
|||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_service.html">16.147. __systemd_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_unit.html">16.148. __systemd_unit</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__timezone.html">16.149. __timezone</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.150. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.151. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.152. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.153. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.154. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.155. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.156. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.157. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.158. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.159. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.160. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.161. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.162. __zypper_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci.html">16.150. __uci</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci_section.html">16.151. __uci_section</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.152. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.153. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.154. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.155. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.156. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.157. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.158. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.159. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.160. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.161. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.162. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.163. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.164. __zypper_service</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="../cdist-explorer.html">17. Explorer</a></li>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.26. cdist-type__consul_template(7) — cdist 6.8.0 documentation</title>
|
||||
<title>16.26. cdist-type__consul_template(7) — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
@ -264,19 +264,21 @@
|
|||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_service.html">16.147. __systemd_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_unit.html">16.148. __systemd_unit</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__timezone.html">16.149. __timezone</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.150. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.151. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.152. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.153. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.154. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.155. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.156. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.157. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.158. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.159. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.160. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.161. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.162. __zypper_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci.html">16.150. __uci</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci_section.html">16.151. __uci_section</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.152. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.153. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.154. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.155. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.156. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.157. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.158. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.159. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.160. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.161. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.162. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.163. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.164. __zypper_service</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="../cdist-explorer.html">17. Explorer</a></li>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.27. cdist-type__consul_template_template(7) — cdist 6.8.0 documentation</title>
|
||||
<title>16.27. cdist-type__consul_template_template(7) — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
@ -263,19 +263,21 @@
|
|||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_service.html">16.147. __systemd_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_unit.html">16.148. __systemd_unit</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__timezone.html">16.149. __timezone</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.150. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.151. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.152. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.153. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.154. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.155. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.156. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.157. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.158. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.159. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.160. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.161. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.162. __zypper_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci.html">16.150. __uci</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci_section.html">16.151. __uci_section</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.152. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.153. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.154. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.155. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.156. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.157. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.158. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.159. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.160. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.161. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.162. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.163. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.164. __zypper_service</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="../cdist-explorer.html">17. Explorer</a></li>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.28. cdist-type__consul_watch_checks(7) — cdist 6.8.0 documentation</title>
|
||||
<title>16.28. cdist-type__consul_watch_checks(7) — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
@ -263,19 +263,21 @@
|
|||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_service.html">16.147. __systemd_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_unit.html">16.148. __systemd_unit</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__timezone.html">16.149. __timezone</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.150. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.151. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.152. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.153. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.154. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.155. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.156. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.157. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.158. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.159. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.160. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.161. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.162. __zypper_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci.html">16.150. __uci</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci_section.html">16.151. __uci_section</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.152. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.153. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.154. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.155. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.156. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.157. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.158. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.159. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.160. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.161. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.162. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.163. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.164. __zypper_service</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="../cdist-explorer.html">17. Explorer</a></li>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.29. cdist-type__consul_watch_event(7) — cdist 6.8.0 documentation</title>
|
||||
<title>16.29. cdist-type__consul_watch_event(7) — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
@ -263,19 +263,21 @@
|
|||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_service.html">16.147. __systemd_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_unit.html">16.148. __systemd_unit</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__timezone.html">16.149. __timezone</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.150. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.151. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.152. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.153. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.154. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.155. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.156. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.157. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.158. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.159. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.160. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.161. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.162. __zypper_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci.html">16.150. __uci</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci_section.html">16.151. __uci_section</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.152. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.153. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.154. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.155. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.156. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.157. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.158. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.159. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.160. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.161. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.162. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.163. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.164. __zypper_service</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="../cdist-explorer.html">17. Explorer</a></li>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.30. cdist-type__consul_watch_key(7) — cdist 6.8.0 documentation</title>
|
||||
<title>16.30. cdist-type__consul_watch_key(7) — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
@ -263,19 +263,21 @@
|
|||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_service.html">16.147. __systemd_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_unit.html">16.148. __systemd_unit</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__timezone.html">16.149. __timezone</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.150. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.151. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.152. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.153. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.154. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.155. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.156. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.157. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.158. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.159. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.160. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.161. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.162. __zypper_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci.html">16.150. __uci</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci_section.html">16.151. __uci_section</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.152. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.153. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.154. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.155. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.156. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.157. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.158. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.159. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.160. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.161. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.162. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.163. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.164. __zypper_service</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="../cdist-explorer.html">17. Explorer</a></li>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.31. cdist-type__consul_watch_keyprefix(7) — cdist 6.8.0 documentation</title>
|
||||
<title>16.31. cdist-type__consul_watch_keyprefix(7) — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
@ -263,19 +263,21 @@
|
|||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_service.html">16.147. __systemd_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_unit.html">16.148. __systemd_unit</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__timezone.html">16.149. __timezone</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.150. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.151. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.152. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.153. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.154. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.155. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.156. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.157. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.158. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.159. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.160. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.161. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.162. __zypper_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci.html">16.150. __uci</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci_section.html">16.151. __uci_section</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.152. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.153. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.154. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.155. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.156. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.157. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.158. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.159. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.160. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.161. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.162. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.163. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.164. __zypper_service</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="../cdist-explorer.html">17. Explorer</a></li>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.32. cdist-type__consul_watch_nodes(7) — cdist 6.8.0 documentation</title>
|
||||
<title>16.32. cdist-type__consul_watch_nodes(7) — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
@ -263,19 +263,21 @@
|
|||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_service.html">16.147. __systemd_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_unit.html">16.148. __systemd_unit</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__timezone.html">16.149. __timezone</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.150. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.151. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.152. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.153. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.154. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.155. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.156. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.157. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.158. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.159. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.160. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.161. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.162. __zypper_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci.html">16.150. __uci</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci_section.html">16.151. __uci_section</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.152. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.153. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.154. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.155. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.156. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.157. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.158. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.159. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.160. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.161. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.162. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.163. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.164. __zypper_service</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="../cdist-explorer.html">17. Explorer</a></li>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.33. cdist-type__consul_watch_service(7) — cdist 6.8.0 documentation</title>
|
||||
<title>16.33. cdist-type__consul_watch_service(7) — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
@ -264,19 +264,21 @@
|
|||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_service.html">16.147. __systemd_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_unit.html">16.148. __systemd_unit</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__timezone.html">16.149. __timezone</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.150. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.151. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.152. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.153. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.154. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.155. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.156. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.157. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.158. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.159. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.160. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.161. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.162. __zypper_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci.html">16.150. __uci</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci_section.html">16.151. __uci_section</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.152. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.153. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.154. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.155. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.156. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.157. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.158. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.159. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.160. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.161. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.162. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.163. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.164. __zypper_service</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="../cdist-explorer.html">17. Explorer</a></li>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.34. cdist-type__consul_watch_services(7) — cdist 6.8.0 documentation</title>
|
||||
<title>16.34. cdist-type__consul_watch_services(7) — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
@ -263,19 +263,21 @@
|
|||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_service.html">16.147. __systemd_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_unit.html">16.148. __systemd_unit</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__timezone.html">16.149. __timezone</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.150. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.151. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.152. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.153. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.154. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.155. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.156. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.157. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.158. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.159. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.160. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.161. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.162. __zypper_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci.html">16.150. __uci</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci_section.html">16.151. __uci_section</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.152. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.153. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.154. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.155. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.156. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.157. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.158. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.159. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.160. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.161. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.162. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.163. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.164. __zypper_service</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="../cdist-explorer.html">17. Explorer</a></li>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.35. cdist-type__cron(7) — cdist 6.8.0 documentation</title>
|
||||
<title>16.35. cdist-type__cron(7) — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
@ -263,19 +263,21 @@
|
|||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_service.html">16.147. __systemd_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_unit.html">16.148. __systemd_unit</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__timezone.html">16.149. __timezone</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.150. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.151. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.152. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.153. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.154. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.155. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.156. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.157. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.158. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.159. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.160. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.161. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.162. __zypper_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci.html">16.150. __uci</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci_section.html">16.151. __uci_section</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.152. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.153. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.154. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.155. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.156. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.157. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.158. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.159. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.160. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.161. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.162. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.163. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.164. __zypper_service</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="../cdist-explorer.html">17. Explorer</a></li>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.36. cdist-type__daemontools(7) — cdist 6.8.0 documentation</title>
|
||||
<title>16.36. cdist-type__daemontools(7) — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
@ -264,19 +264,21 @@
|
|||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_service.html">16.147. __systemd_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_unit.html">16.148. __systemd_unit</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__timezone.html">16.149. __timezone</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.150. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.151. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.152. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.153. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.154. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.155. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.156. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.157. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.158. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.159. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.160. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.161. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.162. __zypper_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci.html">16.150. __uci</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci_section.html">16.151. __uci_section</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.152. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.153. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.154. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.155. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.156. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.157. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.158. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.159. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.160. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.161. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.162. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.163. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.164. __zypper_service</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="../cdist-explorer.html">17. Explorer</a></li>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.37. cdist-type__daemontools_service(7) — cdist 6.8.0 documentation</title>
|
||||
<title>16.37. cdist-type__daemontools_service(7) — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
@ -264,19 +264,21 @@
|
|||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_service.html">16.147. __systemd_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_unit.html">16.148. __systemd_unit</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__timezone.html">16.149. __timezone</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.150. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.151. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.152. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.153. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.154. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.155. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.156. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.157. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.158. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.159. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.160. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.161. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.162. __zypper_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci.html">16.150. __uci</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci_section.html">16.151. __uci_section</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.152. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.153. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.154. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.155. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.156. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.157. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.158. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.159. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.160. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.161. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.162. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.163. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.164. __zypper_service</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="../cdist-explorer.html">17. Explorer</a></li>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.38. cdist-type__debconf_set_selections(7) — cdist 6.8.0 documentation</title>
|
||||
<title>16.38. cdist-type__debconf_set_selections(7) — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
@ -262,19 +262,21 @@
|
|||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_service.html">16.147. __systemd_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_unit.html">16.148. __systemd_unit</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__timezone.html">16.149. __timezone</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.150. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.151. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.152. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.153. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.154. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.155. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.156. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.157. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.158. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.159. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.160. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.161. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.162. __zypper_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci.html">16.150. __uci</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci_section.html">16.151. __uci_section</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.152. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.153. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.154. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.155. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.156. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.157. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.158. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.159. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.160. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.161. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.162. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.163. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.164. __zypper_service</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="../cdist-explorer.html">17. Explorer</a></li>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.39. cdist-type__directory(7) — cdist 6.8.0 documentation</title>
|
||||
<title>16.39. cdist-type__directory(7) — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
@ -264,19 +264,21 @@
|
|||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_service.html">16.147. __systemd_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_unit.html">16.148. __systemd_unit</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__timezone.html">16.149. __timezone</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.150. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.151. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.152. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.153. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.154. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.155. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.156. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.157. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.158. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.159. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.160. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.161. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.162. __zypper_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci.html">16.150. __uci</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci_section.html">16.151. __uci_section</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.152. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.153. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.154. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.155. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.156. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.157. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.158. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.159. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.160. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.161. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.162. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.163. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.164. __zypper_service</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="../cdist-explorer.html">17. Explorer</a></li>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.40. cdist-type__docker(7) — cdist 6.8.0 documentation</title>
|
||||
<title>16.40. cdist-type__docker(7) — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
@ -263,19 +263,21 @@
|
|||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_service.html">16.147. __systemd_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_unit.html">16.148. __systemd_unit</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__timezone.html">16.149. __timezone</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.150. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.151. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.152. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.153. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.154. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.155. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.156. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.157. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.158. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.159. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.160. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.161. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.162. __zypper_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci.html">16.150. __uci</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci_section.html">16.151. __uci_section</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.152. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.153. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.154. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.155. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.156. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.157. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.158. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.159. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.160. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.161. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.162. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.163. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.164. __zypper_service</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="../cdist-explorer.html">17. Explorer</a></li>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.41. cdist-type__docker_compose(7) — cdist 6.8.0 documentation</title>
|
||||
<title>16.41. cdist-type__docker_compose(7) — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
@ -263,19 +263,21 @@
|
|||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_service.html">16.147. __systemd_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_unit.html">16.148. __systemd_unit</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__timezone.html">16.149. __timezone</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.150. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.151. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.152. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.153. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.154. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.155. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.156. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.157. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.158. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.159. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.160. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.161. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.162. __zypper_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci.html">16.150. __uci</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci_section.html">16.151. __uci_section</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.152. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.153. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.154. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.155. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.156. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.157. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.158. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.159. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.160. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.161. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.162. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.163. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.164. __zypper_service</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="../cdist-explorer.html">17. Explorer</a></li>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.42. cdist-type__docker_config(7) — cdist 6.8.0 documentation</title>
|
||||
<title>16.42. cdist-type__docker_config(7) — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
@ -262,19 +262,21 @@
|
|||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_service.html">16.147. __systemd_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_unit.html">16.148. __systemd_unit</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__timezone.html">16.149. __timezone</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.150. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.151. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.152. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.153. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.154. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.155. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.156. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.157. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.158. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.159. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.160. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.161. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.162. __zypper_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci.html">16.150. __uci</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci_section.html">16.151. __uci_section</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.152. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.153. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.154. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.155. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.156. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.157. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.158. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.159. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.160. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.161. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.162. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.163. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.164. __zypper_service</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="../cdist-explorer.html">17. Explorer</a></li>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.43. cdist-type__docker_secret(7) — cdist 6.8.0 documentation</title>
|
||||
<title>16.43. cdist-type__docker_secret(7) — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
@ -262,19 +262,21 @@
|
|||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_service.html">16.147. __systemd_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_unit.html">16.148. __systemd_unit</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__timezone.html">16.149. __timezone</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.150. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.151. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.152. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.153. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.154. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.155. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.156. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.157. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.158. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.159. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.160. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.161. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.162. __zypper_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci.html">16.150. __uci</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci_section.html">16.151. __uci_section</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.152. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.153. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.154. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.155. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.156. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.157. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.158. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.159. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.160. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.161. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.162. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.163. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.164. __zypper_service</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="../cdist-explorer.html">17. Explorer</a></li>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.44. cdist-type__docker_stack(7) — cdist 6.8.0 documentation</title>
|
||||
<title>16.44. cdist-type__docker_stack(7) — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
@ -261,19 +261,21 @@
|
|||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_service.html">16.147. __systemd_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_unit.html">16.148. __systemd_unit</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__timezone.html">16.149. __timezone</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.150. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.151. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.152. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.153. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.154. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.155. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.156. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.157. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.158. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.159. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.160. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.161. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.162. __zypper_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci.html">16.150. __uci</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci_section.html">16.151. __uci_section</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.152. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.153. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.154. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.155. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.156. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.157. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.158. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.159. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.160. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.161. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.162. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.163. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.164. __zypper_service</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="../cdist-explorer.html">17. Explorer</a></li>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.45. cdist-type__docker_swarm(7) — cdist 6.8.0 documentation</title>
|
||||
<title>16.45. cdist-type__docker_swarm(7) — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
@ -261,19 +261,21 @@
|
|||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_service.html">16.147. __systemd_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_unit.html">16.148. __systemd_unit</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__timezone.html">16.149. __timezone</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.150. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.151. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.152. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.153. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.154. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.155. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.156. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.157. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.158. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.159. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.160. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.161. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.162. __zypper_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci.html">16.150. __uci</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci_section.html">16.151. __uci_section</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.152. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.153. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.154. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.155. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.156. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.157. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.158. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.159. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.160. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.161. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.162. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.163. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.164. __zypper_service</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="../cdist-explorer.html">17. Explorer</a></li>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.46. cdist-type__dog_vdi(7) — cdist 6.8.0 documentation</title>
|
||||
<title>16.46. cdist-type__dog_vdi(7) — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
@ -262,19 +262,21 @@
|
|||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_service.html">16.147. __systemd_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_unit.html">16.148. __systemd_unit</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__timezone.html">16.149. __timezone</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.150. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.151. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.152. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.153. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.154. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.155. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.156. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.157. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.158. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.159. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.160. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.161. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.162. __zypper_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci.html">16.150. __uci</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci_section.html">16.151. __uci_section</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.152. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.153. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.154. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.155. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.156. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.157. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.158. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.159. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.160. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.161. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.162. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.163. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.164. __zypper_service</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="../cdist-explorer.html">17. Explorer</a></li>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.47. cdist-type__dot_file(7) — cdist 6.8.0 documentation</title>
|
||||
<title>16.47. cdist-type__dot_file(7) — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
@ -263,19 +263,21 @@
|
|||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_service.html">16.147. __systemd_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_unit.html">16.148. __systemd_unit</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__timezone.html">16.149. __timezone</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.150. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.151. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.152. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.153. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.154. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.155. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.156. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.157. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.158. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.159. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.160. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.161. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.162. __zypper_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci.html">16.150. __uci</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci_section.html">16.151. __uci_section</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.152. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.153. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.154. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.155. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.156. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.157. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.158. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.159. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.160. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.161. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.162. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.163. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.164. __zypper_service</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="../cdist-explorer.html">17. Explorer</a></li>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.48. cdist-type__download(7) — cdist 6.8.0 documentation</title>
|
||||
<title>16.48. cdist-type__download(7) — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
@ -262,19 +262,21 @@
|
|||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_service.html">16.147. __systemd_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_unit.html">16.148. __systemd_unit</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__timezone.html">16.149. __timezone</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.150. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.151. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.152. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.153. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.154. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.155. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.156. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.157. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.158. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.159. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.160. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.161. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.162. __zypper_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci.html">16.150. __uci</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci_section.html">16.151. __uci_section</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.152. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.153. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.154. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.155. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.156. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.157. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.158. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.159. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.160. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.161. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.162. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.163. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.164. __zypper_service</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="../cdist-explorer.html">17. Explorer</a></li>
|
||||
|
@ -419,7 +421,8 @@ For example: <code class="docutils literal notranslate"><span class="pre">md5sum
|
|||
|
||||
<span class="nv">require</span><span class="o">=</span><span class="s1">'__download/opt/cpma/cnq3.zip'</span> <span class="se">\</span>
|
||||
__unpack /opt/cpma/cnq3.zip <span class="se">\</span>
|
||||
--move-existing-destination <span class="se">\</span>
|
||||
--backup-destination <span class="se">\</span>
|
||||
--preserve-archive <span class="se">\</span>
|
||||
--destination /opt/cpma/server
|
||||
</pre></div>
|
||||
</div>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.49. cdist-type__file(7) — cdist 6.8.0 documentation</title>
|
||||
<title>16.49. cdist-type__file(7) — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
@ -263,19 +263,21 @@
|
|||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_service.html">16.147. __systemd_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_unit.html">16.148. __systemd_unit</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__timezone.html">16.149. __timezone</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.150. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.151. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.152. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.153. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.154. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.155. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.156. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.157. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.158. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.159. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.160. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.161. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.162. __zypper_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci.html">16.150. __uci</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci_section.html">16.151. __uci_section</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.152. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.153. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.154. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.155. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.156. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.157. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.158. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.159. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.160. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.161. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.162. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.163. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.164. __zypper_service</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="../cdist-explorer.html">17. Explorer</a></li>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.50. cdist-type__filesystem(7) — cdist 6.8.0 documentation</title>
|
||||
<title>16.50. cdist-type__filesystem(7) — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
@ -264,19 +264,21 @@
|
|||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_service.html">16.147. __systemd_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_unit.html">16.148. __systemd_unit</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__timezone.html">16.149. __timezone</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.150. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.151. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.152. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.153. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.154. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.155. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.156. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.157. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.158. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.159. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.160. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.161. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.162. __zypper_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci.html">16.150. __uci</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci_section.html">16.151. __uci_section</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.152. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.153. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.154. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.155. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.156. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.157. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.158. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.159. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.160. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.161. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.162. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.163. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.164. __zypper_service</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="../cdist-explorer.html">17. Explorer</a></li>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.51. cdist-type__firewalld_rule(7) — cdist 6.8.0 documentation</title>
|
||||
<title>16.51. cdist-type__firewalld_rule(7) — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
@ -263,19 +263,21 @@
|
|||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_service.html">16.147. __systemd_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_unit.html">16.148. __systemd_unit</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__timezone.html">16.149. __timezone</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.150. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.151. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.152. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.153. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.154. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.155. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.156. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.157. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.158. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.159. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.160. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.161. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.162. __zypper_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci.html">16.150. __uci</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci_section.html">16.151. __uci_section</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.152. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.153. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.154. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.155. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.156. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.157. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.158. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.159. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.160. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.161. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.162. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.163. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.164. __zypper_service</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="../cdist-explorer.html">17. Explorer</a></li>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>16.52. cdist-type__firewalld_start(7) — cdist 6.8.0 documentation</title>
|
||||
<title>16.52. cdist-type__firewalld_start(7) — cdist 6.8.0-21-g9e89088e documentation</title>
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
<div class="version">
|
||||
6.8.0
|
||||
6.8.0-21-g9e89088e
|
||||
</div>
|
||||
|
||||
|
||||
|
@ -263,19 +263,21 @@
|
|||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_service.html">16.147. __systemd_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__systemd_unit.html">16.148. __systemd_unit</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__timezone.html">16.149. __timezone</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.150. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.151. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.152. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.153. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.154. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.155. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.156. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.157. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.158. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.159. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.160. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.161. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.162. __zypper_service</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci.html">16.150. __uci</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__uci_section.html">16.151. __uci_section</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw.html">16.152. __ufw</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__ufw_rule.html">16.153. __ufw_rule</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__unpack.html">16.154. __unpack</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__update_alternatives.html">16.155. __update_alternatives</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user.html">16.156. __user</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__user_groups.html">16.157. __user_groups</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_apache.html">16.158. __xymon_apache</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_client.html">16.159. __xymon_client</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_config.html">16.160. __xymon_config</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__xymon_server.html">16.161. __xymon_server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__yum_repo.html">16.162. __yum_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_repo.html">16.163. __zypper_repo</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="cdist-type__zypper_service.html">16.164. __zypper_service</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="../cdist-explorer.html">17. Explorer</a></li>
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue