From 2da9d112f72ec7486fbc12276a7fd82b2ca7cf28 Mon Sep 17 00:00:00 2001 From: Darko Poljak Date: Mon, 13 May 2019 11:25:01 +0200 Subject: [PATCH] Update beta: add intro docs for python types --- .../manual/beta/_sources/cdist-type.rst.txt | 105 ++++++++++++++++++ src/extra/manual/beta/cdist-type.html | 96 ++++++++++++++++ src/extra/manual/beta/searchindex.js | 2 +- 3 files changed, 202 insertions(+), 1 deletion(-) diff --git a/src/extra/manual/beta/_sources/cdist-type.rst.txt b/src/extra/manual/beta/_sources/cdist-type.rst.txt index 7c0dab8d..f4079372 100644 --- a/src/extra/manual/beta/_sources/cdist-type.rst.txt +++ b/src/extra/manual/beta/_sources/cdist-type.rst.txt @@ -393,3 +393,108 @@ How to include a type into upstream cdist If you think your type may be useful for others, ensure it works with the current master branch of cdist and have a look at `cdist hacking `_ on how to submit it. + + +Python types +------------ +From version/branch **beta** cdist support python types, types that are written +in python language with cdist's core support. cdist detects such type if type is +detectable as a python package, i.e. if **__init__.py** file is present in type's +root directory. Upon that detection cdist will try to run such type as core python +type. + +Note that this differs from plain cdist type where scripts are written in pure +python and have a proper shebang. + +Core python types replace manifest and gencode scripts. Parameters, singleton, +nonparallel are still defined as for common types. Explorer code is also written +in shell, since this is the code that is directly executed at target host. + +When writing python type you can extend **cdist.core.PythonType** class. +You need to implement the following methods: + +* **type_manifest**: implementation should yield **cdist.core.ManifestEntry** + instances, or **yield from ()** if type does not use other types +* **type_gencode**: implementation should return a string consisting of lines + of shell code that will be executed at target host. + +**cdist.core.ManifestEntry** is a python type way for invoking another cdist type. +Example: + +.. code-block:: sh + + ... + class DummyConfig(PythonType): + def type_manifest(self): + # Invoking pyhton file type with provided stdin source with + # specified content. + filepy = ManifestEntry(name='__file_py', stdin='dummy=py\n', + parameters={ + '/root/dummypy.conf': None, + '--mode': '0640', + '--owner': 'root', + '--group': 'root', + '--source': '-', + }) + yield filepy + + # Invoking pyhton file type with specified file as source. + self_path = os.path.dirname(os.path.realpath(__file__)) + conf_path = os.path.join(self_path, 'files', 'dummypy.conf') + filepy = ManifestEntry(name='__file_py', + parameters={ + '/root/dummypy2.conf': None, + '--mode': '0640', + '--owner': 'root', + '--group': 'root', + '--source': conf_path, + }) + yield filepy + + # Invoking standard shell file type with stdin source feeded + # from file. + self_path = os.path.dirname(os.path.realpath(__file__)) + conf_path = os.path.join(self_path, 'files', 'dummysh.conf') + with open(conf_path, 'r') as f: + filepy = ManifestEntry(name='__file', stdin=f, + parameters={ + '/root/dummysh.conf': None, + '--mode': '0600', + '--owner': 'root', + '--group': 'root', + '--source': '-', + }) + yield filepy + ... + +**cdist.core.PythonType** class provides the following methods: + +* **get_parameter**: get type parameter +* **get_explorer_file**: get path to file for specified explorer +* **get_explorer**: get value for specified explorer +* **run_local**: run specified command locally +* **run_remote**: run specified command remotely +* **transfer**: transfer specified source to the remote +* **die**: raise error +* **send_message**: send message +* **receive_message**: get message. + +When running python type, cdist will save output streams to **gencode-py**, +stdout and stderr output files. + +As a reference implementation you can take a look at **__file_py** type, +which is re-implementation of **__file** type. + +Furthermore, under **docs/dev/python-types** there are sample cdist conf directory, +init manifests and scripts for running and measuring duration of samples. +There, under **conf/type/__dummy_config** you can find another example of +python type, which (unlike **__file_py** type) also uses new manifest implementation +that yields **ManifestEntry** instances. + +**NOTE** that python types implementation is under the beta, not directly controled by +the **-b/--beta** option. It is controled by the explicit usage of python types in +your config. + +Also, this documenation is only an introduction, and not a complete guide to python +types. Currently, it is just a short introduction so one can start to write and use +python types. diff --git a/src/extra/manual/beta/cdist-type.html b/src/extra/manual/beta/cdist-type.html index 3d8d1238..76e436cb 100644 --- a/src/extra/manual/beta/cdist-type.html +++ b/src/extra/manual/beta/cdist-type.html @@ -124,6 +124,7 @@
  • 14.20. Log level in types
  • 14.21. Hints for typewriters
  • 14.22. How to include a type into upstream cdist
  • +
  • 14.23. Python types
  • 15. cdist types
  • @@ -555,6 +556,101 @@ never ever touch this folder).

    current master branch of cdist and have a look at cdist hacking on how to submit it.

    +
    +

    14.23. Python typesΒΆ

    +

    From version/branch beta cdist support python types, types that are written +in python language with cdist's core support. cdist detects such type if type is +detectable as a python package, i.e. if __init__.py file is present in type's +root directory. Upon that detection cdist will try to run such type as core python +type.

    +

    Note that this differs from plain cdist type where scripts are written in pure +python and have a proper shebang.

    +

    Core python types replace manifest and gencode scripts. Parameters, singleton, +nonparallel are still defined as for common types. Explorer code is also written +in shell, since this is the code that is directly executed at target host.

    +

    When writing python type you can extend cdist.core.PythonType class. +You need to implement the following methods:

    +
      +
    • type_manifest: implementation should yield cdist.core.ManifestEntry +instances, or yield from () if type does not use other types
    • +
    • type_gencode: implementation should return a string consisting of lines +of shell code that will be executed at target host.
    • +
    +

    cdist.core.ManifestEntry is a python type way for invoking another cdist type. +Example:

    +
    ...
    +class DummyConfig(PythonType):
    +    def type_manifest(self):
    +        # Invoking pyhton file type with provided stdin source with
    +        # specified content.
    +        filepy = ManifestEntry(name='__file_py', stdin='dummy=py\n',
    +                               parameters={
    +                                    '/root/dummypy.conf': None,
    +                                    '--mode': '0640',
    +                                    '--owner': 'root',
    +                                    '--group': 'root',
    +                                    '--source': '-',
    +                               })
    +        yield filepy
    +
    +        # Invoking pyhton file type with specified file as source.
    +        self_path = os.path.dirname(os.path.realpath(__file__))
    +        conf_path = os.path.join(self_path, 'files', 'dummypy.conf')
    +        filepy = ManifestEntry(name='__file_py',
    +                               parameters={
    +                                    '/root/dummypy2.conf': None,
    +                                    '--mode': '0640',
    +                                    '--owner': 'root',
    +                                    '--group': 'root',
    +                                    '--source': conf_path,
    +                               })
    +        yield filepy
    +
    +        # Invoking standard shell file type with stdin source feeded
    +        # from file.
    +        self_path = os.path.dirname(os.path.realpath(__file__))
    +        conf_path = os.path.join(self_path, 'files', 'dummysh.conf')
    +        with open(conf_path, 'r') as f:
    +            filepy = ManifestEntry(name='__file', stdin=f,
    +                                   parameters={
    +                                        '/root/dummysh.conf': None,
    +                                        '--mode': '0600',
    +                                        '--owner': 'root',
    +                                        '--group': 'root',
    +                                        '--source': '-',
    +                                   })
    +            yield filepy
    +...
    +
    +
    +

    cdist.core.PythonType class provides the following methods:

    +
      +
    • get_parameter: get type parameter
    • +
    • get_explorer_file: get path to file for specified explorer
    • +
    • get_explorer: get value for specified explorer
    • +
    • run_local: run specified command locally
    • +
    • run_remote: run specified command remotely
    • +
    • transfer: transfer specified source to the remote
    • +
    • die: raise error
    • +
    • send_message: send message
    • +
    • receive_message: get message.
    • +
    +

    When running python type, cdist will save output streams to gencode-py, +stdout and stderr output files.

    +

    As a reference implementation you can take a look at __file_py type, +which is re-implementation of __file type.

    +

    Furthermore, under docs/dev/python-types there are sample cdist conf directory, +init manifests and scripts for running and measuring duration of samples. +There, under conf/type/__dummy_config you can find another example of +python type, which (unlike __file_py type) also uses new manifest implementation +that yields ManifestEntry instances.

    +

    NOTE that python types implementation is under the beta, not directly controled by +the -b/--beta option. It is controled by the explicit usage of python types in +your config.

    +

    Also, this documenation is only an introduction, and not a complete guide to python +types. Currently, it is just a short introduction so one can start to write and use +python types.

    +
    diff --git a/src/extra/manual/beta/searchindex.js b/src/extra/manual/beta/searchindex.js index 40d949a8..b672643a 100644 --- a/src/extra/manual/beta/searchindex.js +++ b/src/extra/manual/beta/searchindex.js @@ -1 +1 @@ -Search.setIndex({docnames:["cdist-best-practice","cdist-bootstrap","cdist-cache","cdist-configuration","cdist-explorer","cdist-features","cdist-hacker","cdist-install","cdist-integration","cdist-inventory","cdist-manifest","cdist-messaging","cdist-os","cdist-parallelization","cdist-preos","cdist-quickstart","cdist-real-world","cdist-reference","cdist-remote-exec-copy","cdist-saving-output-streams","cdist-stages","cdist-support","cdist-trigger","cdist-troubleshooting","cdist-type","cdist-types","cdist-upgrade","cdist-why","index","man1/cdist","man1/cdist-dump","man7/cdist-type__acl","man7/cdist-type__apt_default_release","man7/cdist-type__apt_key","man7/cdist-type__apt_key_uri","man7/cdist-type__apt_mark","man7/cdist-type__apt_norecommends","man7/cdist-type__apt_ppa","man7/cdist-type__apt_source","man7/cdist-type__apt_update_index","man7/cdist-type__block","man7/cdist-type__ccollect_source","man7/cdist-type__cdist","man7/cdist-type__cdist_preos_trigger","man7/cdist-type__cdistmarker","man7/cdist-type__check_messages","man7/cdist-type__chroot_mount","man7/cdist-type__chroot_umount","man7/cdist-type__clean_path","man7/cdist-type__config_file","man7/cdist-type__consul","man7/cdist-type__consul_agent","man7/cdist-type__consul_check","man7/cdist-type__consul_reload","man7/cdist-type__consul_service","man7/cdist-type__consul_template","man7/cdist-type__consul_template_template","man7/cdist-type__consul_watch_checks","man7/cdist-type__consul_watch_event","man7/cdist-type__consul_watch_key","man7/cdist-type__consul_watch_keyprefix","man7/cdist-type__consul_watch_nodes","man7/cdist-type__consul_watch_service","man7/cdist-type__consul_watch_services","man7/cdist-type__cron","man7/cdist-type__daemontools","man7/cdist-type__daemontools_service","man7/cdist-type__debconf_set_selections","man7/cdist-type__directory","man7/cdist-type__docker","man7/cdist-type__docker_compose","man7/cdist-type__docker_config","man7/cdist-type__docker_secret","man7/cdist-type__docker_stack","man7/cdist-type__docker_swarm","man7/cdist-type__dog_vdi","man7/cdist-type__dot_file","man7/cdist-type__file","man7/cdist-type__filesystem","man7/cdist-type__firewalld_rule","man7/cdist-type__firewalld_start","man7/cdist-type__git","man7/cdist-type__go_get","man7/cdist-type__golang_from_vendor","man7/cdist-type__grafana_dashboard","man7/cdist-type__group","man7/cdist-type__hostname","man7/cdist-type__hosts","man7/cdist-type__install_bootloader_grub","man7/cdist-type__install_chroot_mount","man7/cdist-type__install_chroot_umount","man7/cdist-type__install_config","man7/cdist-type__install_coreos","man7/cdist-type__install_directory","man7/cdist-type__install_file","man7/cdist-type__install_fstab","man7/cdist-type__install_generate_fstab","man7/cdist-type__install_mkfs","man7/cdist-type__install_mount","man7/cdist-type__install_partition_msdos","man7/cdist-type__install_partition_msdos_apply","man7/cdist-type__install_reboot","man7/cdist-type__install_reset_disk","man7/cdist-type__install_stage","man7/cdist-type__install_umount","man7/cdist-type__iptables_apply","man7/cdist-type__iptables_rule","man7/cdist-type__issue","man7/cdist-type__jail","man7/cdist-type__jail_freebsd10","man7/cdist-type__jail_freebsd9","man7/cdist-type__key_value","man7/cdist-type__keyboard","man7/cdist-type__letsencrypt_cert","man7/cdist-type__line","man7/cdist-type__link","man7/cdist-type__locale","man7/cdist-type__locale_system","man7/cdist-type__motd","man7/cdist-type__mount","man7/cdist-type__mysql_database","man7/cdist-type__package","man7/cdist-type__package_apk","man7/cdist-type__package_apt","man7/cdist-type__package_dpkg","man7/cdist-type__package_emerge","man7/cdist-type__package_emerge_dependencies","man7/cdist-type__package_luarocks","man7/cdist-type__package_opkg","man7/cdist-type__package_pacman","man7/cdist-type__package_pip","man7/cdist-type__package_pkg_freebsd","man7/cdist-type__package_pkg_openbsd","man7/cdist-type__package_pkgng_freebsd","man7/cdist-type__package_rubygem","man7/cdist-type__package_update_index","man7/cdist-type__package_upgrade_all","man7/cdist-type__package_yum","man7/cdist-type__package_zypper","man7/cdist-type__pacman_conf","man7/cdist-type__pacman_conf_integrate","man7/cdist-type__pf_apply","man7/cdist-type__pf_ruleset","man7/cdist-type__ping","man7/cdist-type__postfix","man7/cdist-type__postfix_master","man7/cdist-type__postfix_postconf","man7/cdist-type__postfix_postmap","man7/cdist-type__postfix_reload","man7/cdist-type__postgres_database","man7/cdist-type__postgres_extension","man7/cdist-type__postgres_role","man7/cdist-type__process","man7/cdist-type__prometheus_alertmanager","man7/cdist-type__prometheus_exporter","man7/cdist-type__prometheus_server","man7/cdist-type__pyvenv","man7/cdist-type__qemu_img","man7/cdist-type__rbenv","man7/cdist-type__rsync","man7/cdist-type__rvm","man7/cdist-type__rvm_gem","man7/cdist-type__rvm_gemset","man7/cdist-type__rvm_ruby","man7/cdist-type__ssh_authorized_key","man7/cdist-type__ssh_authorized_keys","man7/cdist-type__ssh_dot_ssh","man7/cdist-type__staged_file","man7/cdist-type__start_on_boot","man7/cdist-type__sysctl","man7/cdist-type__systemd_unit","man7/cdist-type__timezone","man7/cdist-type__ufw","man7/cdist-type__ufw_rule","man7/cdist-type__update_alternatives","man7/cdist-type__user","man7/cdist-type__user_groups","man7/cdist-type__yum_repo","man7/cdist-type__zypper_repo","man7/cdist-type__zypper_service"],envversion:{"sphinx.domains.c":1,"sphinx.domains.changeset":1,"sphinx.domains.cpp":1,"sphinx.domains.javascript":1,"sphinx.domains.math":1,"sphinx.domains.python":1,"sphinx.domains.rst":1,"sphinx.domains.std":1,sphinx:55},filenames:["cdist-best-practice.rst","cdist-bootstrap.rst","cdist-cache.rst","cdist-configuration.rst","cdist-explorer.rst","cdist-features.rst","cdist-hacker.rst","cdist-install.rst","cdist-integration.rst","cdist-inventory.rst","cdist-manifest.rst","cdist-messaging.rst","cdist-os.rst","cdist-parallelization.rst","cdist-preos.rst","cdist-quickstart.rst","cdist-real-world.rst","cdist-reference.rst","cdist-remote-exec-copy.rst","cdist-saving-output-streams.rst","cdist-stages.rst","cdist-support.rst","cdist-trigger.rst","cdist-troubleshooting.rst","cdist-type.rst","cdist-types.rst","cdist-upgrade.rst","cdist-why.rst","index.rst","man1/cdist.rst","man1/cdist-dump.rst","man7/cdist-type__acl.rst","man7/cdist-type__apt_default_release.rst","man7/cdist-type__apt_key.rst","man7/cdist-type__apt_key_uri.rst","man7/cdist-type__apt_mark.rst","man7/cdist-type__apt_norecommends.rst","man7/cdist-type__apt_ppa.rst","man7/cdist-type__apt_source.rst","man7/cdist-type__apt_update_index.rst","man7/cdist-type__block.rst","man7/cdist-type__ccollect_source.rst","man7/cdist-type__cdist.rst","man7/cdist-type__cdist_preos_trigger.rst","man7/cdist-type__cdistmarker.rst","man7/cdist-type__check_messages.rst","man7/cdist-type__chroot_mount.rst","man7/cdist-type__chroot_umount.rst","man7/cdist-type__clean_path.rst","man7/cdist-type__config_file.rst","man7/cdist-type__consul.rst","man7/cdist-type__consul_agent.rst","man7/cdist-type__consul_check.rst","man7/cdist-type__consul_reload.rst","man7/cdist-type__consul_service.rst","man7/cdist-type__consul_template.rst","man7/cdist-type__consul_template_template.rst","man7/cdist-type__consul_watch_checks.rst","man7/cdist-type__consul_watch_event.rst","man7/cdist-type__consul_watch_key.rst","man7/cdist-type__consul_watch_keyprefix.rst","man7/cdist-type__consul_watch_nodes.rst","man7/cdist-type__consul_watch_service.rst","man7/cdist-type__consul_watch_services.rst","man7/cdist-type__cron.rst","man7/cdist-type__daemontools.rst","man7/cdist-type__daemontools_service.rst","man7/cdist-type__debconf_set_selections.rst","man7/cdist-type__directory.rst","man7/cdist-type__docker.rst","man7/cdist-type__docker_compose.rst","man7/cdist-type__docker_config.rst","man7/cdist-type__docker_secret.rst","man7/cdist-type__docker_stack.rst","man7/cdist-type__docker_swarm.rst","man7/cdist-type__dog_vdi.rst","man7/cdist-type__dot_file.rst","man7/cdist-type__file.rst","man7/cdist-type__filesystem.rst","man7/cdist-type__firewalld_rule.rst","man7/cdist-type__firewalld_start.rst","man7/cdist-type__git.rst","man7/cdist-type__go_get.rst","man7/cdist-type__golang_from_vendor.rst","man7/cdist-type__grafana_dashboard.rst","man7/cdist-type__group.rst","man7/cdist-type__hostname.rst","man7/cdist-type__hosts.rst","man7/cdist-type__install_bootloader_grub.rst","man7/cdist-type__install_chroot_mount.rst","man7/cdist-type__install_chroot_umount.rst","man7/cdist-type__install_config.rst","man7/cdist-type__install_coreos.rst","man7/cdist-type__install_directory.rst","man7/cdist-type__install_file.rst","man7/cdist-type__install_fstab.rst","man7/cdist-type__install_generate_fstab.rst","man7/cdist-type__install_mkfs.rst","man7/cdist-type__install_mount.rst","man7/cdist-type__install_partition_msdos.rst","man7/cdist-type__install_partition_msdos_apply.rst","man7/cdist-type__install_reboot.rst","man7/cdist-type__install_reset_disk.rst","man7/cdist-type__install_stage.rst","man7/cdist-type__install_umount.rst","man7/cdist-type__iptables_apply.rst","man7/cdist-type__iptables_rule.rst","man7/cdist-type__issue.rst","man7/cdist-type__jail.rst","man7/cdist-type__jail_freebsd10.rst","man7/cdist-type__jail_freebsd9.rst","man7/cdist-type__key_value.rst","man7/cdist-type__keyboard.rst","man7/cdist-type__letsencrypt_cert.rst","man7/cdist-type__line.rst","man7/cdist-type__link.rst","man7/cdist-type__locale.rst","man7/cdist-type__locale_system.rst","man7/cdist-type__motd.rst","man7/cdist-type__mount.rst","man7/cdist-type__mysql_database.rst","man7/cdist-type__package.rst","man7/cdist-type__package_apk.rst","man7/cdist-type__package_apt.rst","man7/cdist-type__package_dpkg.rst","man7/cdist-type__package_emerge.rst","man7/cdist-type__package_emerge_dependencies.rst","man7/cdist-type__package_luarocks.rst","man7/cdist-type__package_opkg.rst","man7/cdist-type__package_pacman.rst","man7/cdist-type__package_pip.rst","man7/cdist-type__package_pkg_freebsd.rst","man7/cdist-type__package_pkg_openbsd.rst","man7/cdist-type__package_pkgng_freebsd.rst","man7/cdist-type__package_rubygem.rst","man7/cdist-type__package_update_index.rst","man7/cdist-type__package_upgrade_all.rst","man7/cdist-type__package_yum.rst","man7/cdist-type__package_zypper.rst","man7/cdist-type__pacman_conf.rst","man7/cdist-type__pacman_conf_integrate.rst","man7/cdist-type__pf_apply.rst","man7/cdist-type__pf_ruleset.rst","man7/cdist-type__ping.rst","man7/cdist-type__postfix.rst","man7/cdist-type__postfix_master.rst","man7/cdist-type__postfix_postconf.rst","man7/cdist-type__postfix_postmap.rst","man7/cdist-type__postfix_reload.rst","man7/cdist-type__postgres_database.rst","man7/cdist-type__postgres_extension.rst","man7/cdist-type__postgres_role.rst","man7/cdist-type__process.rst","man7/cdist-type__prometheus_alertmanager.rst","man7/cdist-type__prometheus_exporter.rst","man7/cdist-type__prometheus_server.rst","man7/cdist-type__pyvenv.rst","man7/cdist-type__qemu_img.rst","man7/cdist-type__rbenv.rst","man7/cdist-type__rsync.rst","man7/cdist-type__rvm.rst","man7/cdist-type__rvm_gem.rst","man7/cdist-type__rvm_gemset.rst","man7/cdist-type__rvm_ruby.rst","man7/cdist-type__ssh_authorized_key.rst","man7/cdist-type__ssh_authorized_keys.rst","man7/cdist-type__ssh_dot_ssh.rst","man7/cdist-type__staged_file.rst","man7/cdist-type__start_on_boot.rst","man7/cdist-type__sysctl.rst","man7/cdist-type__systemd_unit.rst","man7/cdist-type__timezone.rst","man7/cdist-type__ufw.rst","man7/cdist-type__ufw_rule.rst","man7/cdist-type__update_alternatives.rst","man7/cdist-type__user.rst","man7/cdist-type__user_groups.rst","man7/cdist-type__yum_repo.rst","man7/cdist-type__zypper_repo.rst","man7/cdist-type__zypper_service.rst"],objects:{},objnames:{},objtypes:{},terms:{"":[0,1,2,3,4,5,7,9,10,13,14,15,17,19,24,26,29,39,44,48,51,57,58,59,60,61,62,63,64,76,78,79,86,108,109,110,113,114,138,141,142,165,167],"0608b895":177,"100g":99,"100gb":99,"10g":99,"10gb":99,"10s":[52,54],"128m":99,"128mb":99,"15g":99,"1_all":124,"1_linux_amd64":167,"256m":16,"30s":[52,55],"32m":99,"360060e80432f560050202f22000023ff":78,"437d05b5":33,"4_amd64":124,"50g":[75,157],"512m":99,"512mb":99,"759547ff4356de6e3d9e08522b0d0807":29,"75ee6a79e32da093da23fe4a13dd104b":19,"\u013eubom\u00edr":[71,72,73,74,92,113,170],"boolean":[3,17,24,26,29],"br\u00f6nnimann":132,"break":[1,6,26],"case":[4,8,10,11,13,16,19,24,27,29,77,94,123,142,178],"default":[0,3,8,10,13,14,17,18,19,22,24,26,29,30,31,32,33,34,37,38,40,41,42,43,44,50,51,52,54,55,56,57,58,59,60,61,62,63,64,65,66,68,69,70,71,72,73,74,75,76,77,78,79,80,81,83,85,86,88,91,92,93,94,95,97,98,99,103,104,106,107,108,109,110,111,113,114,115,116,117,118,119,120,121,122,123,124,125,127,128,129,130,131,132,133,134,135,136,137,138,139,140,142,145,146,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,170,172,173,174,175,176,177,178,179],"export":[0,7,10,11,15,17,26,154],"final":[16,167],"function":[3,6,8,9,14,17,24,29,114],"import":[0,8,16,19],"jim\u00e9nez":[135,136],"ku\u010dera":[71,72,73,74,92,113,170],"long":[10,52,54,153,155],"new":[1,4,9,11,16,20,27,30,51,55,56,76,78,85,111,139,170,175,179],"null":[4,24,49],"public":[0,6,7,15,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179],"return":[4,16,19,22,29,55,124,143],"salvad\u00f3":171,"short":173,"sou\u010dkov\u00e1":[65,66,82,83,84,113,153,154,155],"static":[9,24,29,86,150,151,177],"switch":[1,137],"true":[3,14,16,24,29,49,51,99,108,109,110,173],"try":[8,14,16,20,22,26,29,51,111,143],"var":[0,9,16,29,119,139,167],"while":[2,4,17,18,27,55],AND:6,Added:111,And:[0,10,16,23],But:[1,5,10,23],DNS:[16,22,29],For:[0,1,2,3,6,8,9,13,14,15,16,17,18,19,20,22,23,24,29,45,74,78,138,170,177,179],Its:[16,17,29],NOT:[42,152],Not:27,ONE:152,One:[13,17,24,29,66,77,174],RIS:179,TLS:51,That:[2,3,15,27],The:[0,1,3,4,6,7,9,10,11,13,14,17,18,20,23,26,29,32,37,40,41,44,48,51,52,54,55,56,64,66,69,75,77,78,79,82,83,86,88,94,95,96,97,103,106,108,109,110,111,113,114,115,117,120,121,123,124,133,135,136,138,139,140,150,152,157,161,162,163,164,165,167,169,170,172,173],Their:24,Then:[0,7,16,29],There:[1,4,5,6,8,9,16,19,24,27,56],These:[10,24,29],USE:152,Use:[0,3,6,17,26,29,42,46,47,52,54,67,77,94,108,109,110,118,130,156,159,174],Used:[17,29],Useful:[29,55,153,155],Uses:[5,95],Using:16,Will:[153,155,172],With:[0,9,14,18,24],__a:29,__acl:[17,31],__addifnosuchlin:26,__apach:20,__apt_default_releas:[17,32],__apt_kei:[17,33],__apt_key_uri:[17,34],__apt_mark:[17,35],__apt_norecommend:[17,36],__apt_ppa:[17,37],__apt_sourc:[17,38],__apt_update_index:[16,17,39],__archlinux_hostnam:24,__autof:26,__autofs_map:26,__autofs_reload:26,__b:29,__block:[11,17,40],__c:29,__ccollect_sourc:[17,41],__cdist:[17,42],__cdist_log_level:[17,24],__cdist_log_level_nam:17,__cdist_preos_trigg:[17,29,43],__cdistmark:[10,17,44],__check_messag:[17,45],__chroot_mount:[17,46,47],__chroot_umount:[17,46,47],__clean_path:[17,48],__config_fil:[17,49],__consul:[17,50],__consul_ag:[17,51],__consul_check:[17,52],__consul_reload:[17,53],__consul_servic:[17,54],__consul_templ:[17,55],__consul_template_templ:[17,56],__consul_watch_check:[17,57],__consul_watch_ev:[17,58],__consul_watch_kei:[17,59],__consul_watch_keyprefix:[17,60],__consul_watch_nod:[17,61],__consul_watch_servic:[17,62,63],__cron:[17,64],__d:29,__daemontool:[17,65,66,154],__daemontools_servic:[17,66],__debconf_set_select:[17,26,67],__directori:[10,16,17,26,68,93],__docker:[17,69],__docker_compos:[17,70],__docker_config:[17,71],__docker_secret:[17,72],__docker_stack:[17,73],__docker_swarm:[17,74],__dog_vdi:[17,75],__dot_fil:[17,76],__e:29,__example_typ:10,__explor:[4,17],__f:29,__file:[0,10,11,13,15,16,17,20,24,26,50,55,56,76,77,94,133,167],__file__:16,__filesystem:[17,78],__firewalld_rul:[17,79],__firewalld_start:[17,80],__g:29,__git:[17,29,81],__global:[11,16,17,24,51],__go_get:[17,82],__golang_from_vendor:[17,82,83,154],__grafana_dashboard:[17,84],__group:[17,85],__h:29,__host:[17,87],__hostnam:[17,86],__install_bootloader_grub:[17,88],__install_chroot_mount:[17,89,90],__install_chroot_umount:[17,90],__install_config:[17,91],__install_coreo:[17,92],__install_directori:17,__install_fil:[17,94],__install_fstab:[17,95],__install_generate_fstab:[17,95,96],__install_mkf:[17,97,98],__install_mount:[17,96,98],__install_nam:24,__install_partition_msdo:[17,99,100],__install_partition_msdos_appli:[17,100],__install_reboot:[17,101],__install_reset_disk:[17,102],__install_stag:[17,103],__install_umount:[17,104],__iptables_appli:[17,105],__iptables_rul:[17,105,106],__issu:[17,24,107],__jail:[17,108],__jail_freebsd10:[17,109],__jail_freebsd9:[17,110],__key_valu:[11,17,111],__keyboard:[17,112],__letsencrypt_cert:[16,17,113],__line:[17,26,114],__link:[10,17,26,115],__local:[17,116],__locale_system:[17,117],__main__:16,__manifest:[0,10,17,23,56,142,153,155,170],__messages_in:[11,17],__messages_out:[11,17],__motd:[17,118],__mount:[17,119],__myfancysingleton:24,__mylin:19,__mysql_databas:[17,120],__name:24,__name__:16,__nginx_vhost:24,__not_in_order_typ:10,__object:[0,4,16,17,24],__object_id:[4,16,17,24,33,34,40,48,52,54,76,119,146,154,177],__object_nam:[17,26],__packag:[0,10,16,17,24,26,121,137],__package_:24,__package_apk:[17,122],__package_apt:[17,26,121,123,124],__package_dpkg:[17,24,124],__package_emerg:[17,121,125,126],__package_emerge_depend:[17,126],__package_luarock:[17,127],__package_opkg:[17,128],__package_pacman:[17,129],__package_pip:[16,17,130],__package_pkg_freebsd:[17,131],__package_pkg_openbsd:[17,132],__package_pkgng_freebsd:[17,133],__package_rubygem:[17,134],__package_update_index:[10,17,135],__package_upgrade_al:[10,17,136],__package_yum:[17,137],__package_zypp:[17,138],__pacman_conf:[17,139],__pacman_conf_integr:[17,140],__pf_appli:[17,141],__pf_ruleset:[17,141,142],__ping:[17,143],__postfix:[17,144],__postfix_mast:[17,145],__postfix_postconf:[17,146],__postfix_postmap:[17,147],__postfix_reload:[17,148],__postgres_databas:[16,17,149],__postgres_extens:[17,150],__postgres_rol:[16,17,151],__process:[17,26,152],__prometheus_alertmanag:[17,153],__prometheus_export:[17,154],__prometheus_serv:[17,155],__pyvenv:[17,156],__qemu_img:[17,157],__rbenv:[17,158],__remote_:91,__remote_copi:[18,24],__remote_exec:[18,24],__removelin:26,__rsync:[17,159],__rvm:[17,160],__rvm_gem:17,__rvm_gemset:[17,26,161,162],__rvm_rubi:[17,26,161,162,163],__sample_typ:10,__self:26,__singleton_typ:26,__some_type_somewher:10,__ssh_authorized_kei:[17,26,29,164,165,166],__ssh_dot_ssh:[17,165,166],__staged_fil:[17,50,167],__start_on_boot:[17,168],__sysctl:[17,169],__systemd_unit:[17,170],__target_fqdn:[10,17],__target_host:[10,16,17,24,86,141,142],__target_host_tag:17,__target_hostnam:[10,17],__timezon:[17,171],__type:[0,10,17,24,49,67,77,94,107,118,124,159],__type_explor:[4,17],__ufw:[17,172],__ufw_rul:[17,173],__ungleich_munin_nod:0,__ungleich_munin_serv:0,__update_altern:[17,174],__user:[10,16,17,26,175],__user_group:[17,26,176],__your_typ:11,__yourtyp:24,__yum_repo:[17,177],__zypper_repo:[17,178],__zypper_servic:[17,179],_bottl:16,_cdist_preo:14,_ip:[108,110],_manag:49,_netdev:119,_preos_nam:14,abl:[15,24],abort:[4,10,23],about:[1,6,9,10,14,17,19,20,24,45,74,76,170],abov:[2,3,6,10,14,15,22,23,85,116,117,135,165,175],absent:[10,26,33,34,37,38,40,41,50,51,52,54,55,56,57,58,59,60,61,62,63,64,68,69,70,71,72,73,74,75,77,79,80,81,85,87,93,94,106,108,109,110,111,113,114,115,116,117,119,121,122,123,124,125,127,128,129,130,131,132,133,134,137,138,139,140,141,142,145,149,150,151,152,156,157,158,160,161,162,163,164,165,166,168,170,172,173,175,176,177,178,179],absolut:115,accept:[6,10,14,17,22,26,29,78,79,106],access:[1,7,10,14,16,17,27,29,51,79,120],access_log:[0,16],accid:11,accomplish:18,accord:17,account:[10,18,21,161,162,163,175],acl:[31,51,52,57,58,59,60,61,62,63],acl_datacent:51,acm:16,across:0,act:[4,17,111],action:72,activ:[7,16,141],actual:[14,16,121],add:[0,1,6,7,9,10,15,27,31,33,34,40,44,54,65,76,84,85,87,108,109,110,114,116,132,139,145,154,165,166,173,175,176],added:[10,26,29,40,64,66,85,108,109,110,114,164,165,175,176],adding:[10,173,179],addit:[0,6,17,27,29,55,78,111],addition:1,addr:51,address:[18,22,24,29,51,55,87,108,109,110],adher:28,adjust:0,admin:[16,17,113,151],administr:13,advantag:[7,170],affect:10,after:[0,2,10,11,14,16,17,24,26,29,40,51,52,53,56,99,114,145,173],afterward:[10,29],again:[6,24,113],against:[44,91,139],age:135,agent:[15,27,51,52,54,57,58,59,60,61,62,63,165],aim:[4,8,15],akp:122,alert:153,alertmanag:153,alertport:155,alia:24,alic:[31,76],alik:[67,174],all:[0,1,2,3,6,8,9,10,11,14,15,17,19,20,23,24,26,27,29,30,55,62,64,68,76,93,99,102,114,136,138,142,151,164,165,173,177,178,179],allen:134,allow:[0,1,11,15,16,17,24,29,37,38,41,42,51,64,68,77,78,79,80,81,82,83,85,88,91,93,94,99,101,104,106,107,111,112,114,115,116,117,118,120,121,123,133,135,136,139,140,149,150,151,152,156,158,159,165,168,171,172,173,175],almost:[4,27,142],along:29,alpin:[12,116,122],alreadi:[6,10,13,26,29,34,72,76,77,94,133,156],also:[0,1,3,4,7,8,10,13,14,15,16,17,19,24,26,27,29,158,178],altern:[1,42,55,108,109,110,145,165,174],although:23,alwai:[6,10,15,17,24,27,129,131,132,133,137,138,178],ambigu:[131,132,133],amd64:[29,132],among:[0,55],amount:[27,55],ander:[31,35,45,48],andi:132,andorra:171,ani:[5,6,7,9,10,11,17,24,26,27,29,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,115,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,157,158,159,164,165,166,167,168,170,172,173,174,175,176,177,178,179],anoth:[1,6,10,24,42,67,77,94,107,108,109,110,114],another_featur:6,anymor:[106,158,166],anyth:[78,103],anywai:2,apache2:[10,48,115,122],api:55,apk:122,app:[16,52,125,126],append:[3,10,11,29,159],apphom:16,appli:[5,10,16,20,24,27,55,78,79,85,100,105,106,141,175],applic:[8,10,173],approach:[15,159],appropri:[0,10,22,29,108,109,110,135,136],apt:[16,24,32,33,34,35,36,38,39,123,135,136,153,155],arch:[29,38,135,136,177],architectur:[5,29,83,124,139],archiv:[3,29,33,38,83,108,109,110,167],archive_shell_function_approach:1,archlinux:[12,24,77,94,129],area:[1,17],arg:14,argpars:8,argument:[0,14,16,18,24,29,40],argv:14,armstrong:[29,33,34,36,37,38,39,40,46,47,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,69,85,86,88,89,90,91,95,96,97,98,99,100,101,102,103,104,111,114,117,119,121,144,145,146,147,148,149,151,164,165,167,169,175,176,177],asc:34,ascii:[153,155],ask:11,associ:[108,109,110],assum:[1,6,15,17,24,26,55,56,156],assumpt:76,assur:[0,16],attempt:[51,113],attent:[10,178],attribut:[14,26,77,94],auth:[55,114],authent:[0,15,33,51,55],author:[6,14],authorit:51,authorized_kei:[164,165],auto:[0,139],automat:[0,10,15,16,29,33,51,76,113,135,136,154,172],autorequir:10,autorized_kei:164,avail:[0,1,5,10,14,15,17,23,24,115,133,135,138,139,154,159,164,165,171,178],avoid:[131,132,133],awai:[6,152],awk:[27,114],axyzaab3nzac1yc2:165,azxyaab3nzac1yc2:165,back:[6,11,20,24,26,27],backport:[153,155],backup:[1,41,47,165],bandwidth:177,banner:26,bar:[59,71,72,113,124,164],bar_1:124,bare:1,base:[0,1,6,9,17,29,108,109,110,111,121,124,135,136,159,162,164],basearch:177,baseurl:177,bash:[0,7,16,64,132,133],bashrc:[77,94],basi:0,basic:[0,55,174],bastian:158,batch:55,batteri:5,baz:[59,124],baz_1:124,becaus:[6,10,15,16,19,24,29,115,152],becom:[0,16],been:[24,26,77,159,167,168],befor:[1,6,7,10,11,16,23,24,40,55,56,85,88,91,111,114,179],began:158,begin:[16,19,159],behav:[3,17,18,24,29],behavior:51,behaviour:[5,17,24,68,93],being:[0,27,28,44,52,54,73,166],believ:6,belong:138,below:[0,4,10,11,17,24,29],benedikt:120,benediktkoeppel:120,benefit:6,besid:17,best:1,beta:[3,9,17,29,159],better:[0,3,6,27,159],between:[10,11,16,17,27,40,111,153,155],big:0,bill:161,billi:160,bin:[0,2,7,10,14,15,16,17,19,23,24,27,29,43,50,52,54,57,58,59,60,61,62,63,64,66,130,156,159,167,174,175],binari:[50,55,70,124,152],bind:[51,108,109,110,146],bintrai:[50,167],binutil:138,bit:[17,37],biz:[78,125,126,138,178,179],bla:151,blackbox:154,blank:[16,144,147,148],block:[0,6,10,11,40,97,173],block_smtp:173,blockdevic:78,bob:[31,76],bodi:16,bogatov:[76,87],boot:[14,29,43,65,80,84,98,108,109,110,168,172],bootabl:[29,99],bootload:88,bootstat:80,bootstrap:[14,29,51],both:[3,4,9,16,29],bottle_pgsql:16,bound:[19,52],box:42,br0:79,bracket:[18,24,29],brain:6,branch:[0,6,7,24,26,29,42,81],branchnam:7,british:116,broken:20,brought:6,browser:6,bsd:[141,142,168],btrf:78,bug:[5,21],bugfix:[6,7],build:[0,6,10,26,42,97,154,158],built:[7,9,14],bulletin:51,buster:32,bzip2:29,c99:158,ca_fil:51,cach:[3,15,17,19,23,30,51,135,139],cache_path_pattern:[2,3,29],calcul:29,call:[0,4,5,10,14,16,17,20,23,24,26,27,38,68,78,93,107,108,109,110,169],can:[0,1,2,3,4,5,6,7,8,9,10,11,13,14,15,16,17,18,19,20,21,22,23,26,27,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,113,115,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,157,158,159,164,165,166,167,168,170,172,173,174,175,176,177,178,179],cannot:[24,29,71,72],canon:38,canonical_partn:38,care:[6,17,123],carlo:[112,117],carri:[23,172],cat:[0,4,5,9,11,16,19,23,24,51,164,165,167],catalina:[135,136],catalog:52,categori:117,caus:[4,17],cbrg:0,ccollect:41,ccollect_conf:41,ccollectconf:41,cconfig:20,cdist:[1,2,3,4,5,10,11,12,13,14,15,17,18,19,20,21,22],cdist__ssh_authorized_kei:164,cdist_beta:[9,17,29],cdist_cache_path_pattern:[2,17,29],cdist_config_fil:[3,29],cdist_inventory_dir:[17,29],cdist_local_shel:[17,24,29],cdist_mark:44,cdist_order_depend:[10,17,29],cdist_overrid:[10,17,29],cdist_param:29,cdist_path:[8,17,29],cdist_remote_copi:[17,29],cdist_remote_exec:[17,29],cdist_remote_shel:[17,29],cdisttesthost:29,cdit:[29,112,119],cento:[11,12,31,172],central:[0,5,17,171],ceph:154,cert:[16,51,55,113],cert_fil:51,certbot:113,certif:[51,55,103,113],certifict:113,cfengin:138,cfg:[3,29],chain:[45,79],challeng:16,chang:[0,1,5,6,11,16,17,20,24,26,39,40,45,49,53,59,60,62,68,71,73,76,77,85,86,93,94,108,109,110,111,113,114,145,146,159,165,167,170,179],channel:13,chapter:14,charact:[3,16,29],charl:162,charset:48,chase:134,chdir:16,check:[0,4,16,20,24,45,51,52,54,57,62,77,81,103,139],check_redi:[52,54],checkout:[0,1,6,7,26,42,81],checksum:167,chgrp:[68,77,81,93,94,156,159],chmod:[16,68,77,81,93,94,156],chosen:[121,123,138],chown:[68,77,81,93,94,156,159],christian:127,chroot:[46,47,88,89,90,91,145],circual:0,circular:[0,10],cksum:167,classifi:114,classmethod:14,clean:136,cleaner:0,cleanli:5,clear:5,clearli:23,client:[7,14,22,24,29,51,55],client_max_body_s:16,clone:[0,1,6,7,15,23,42,81],cloud:9,cls:14,cluster:51,cmd:[79,82],code:[0,2,5,7,10,13,15,17,18,19,22,23,24,26,29,30,42,48,49,68,77,81,93,94,111,114,120,158,167],codenam:[32,38],collabor:1,collect:[20,98],collis:24,colon:[17,24,29,55,56,150],colour:[24,116],com:[6,33,34,38,44,50,55,56,71,72,73,74,81,82,84,92,108,109,110,113,114,131,132,133,134,135,136,139,140,141,142,146,156,165,167,170,171,172,173],combin:[0,10,31,108,109,110],come:[7,9],comma:[17,29,119],command:[1,3,7,9,10,16,17,19,22,23,29,43,45,46,52,54,55,56,64,66,79,89,94,97,106,113,143,145,154,164,167,173],commandlin:14,comment:[6,29,111,145,164,165,175],commit:[0,1,26],common:[0,10,44,174],commun:[11,15,17,51,55,69],compani:[0,1],company_a:0,company_b:0,compar:27,compat:[1,27,29,48,65,66,75,154,157],complet:[5,20,29],complex:[0,167],complic:0,compon:[3,24,29,38],compos:[70,73],compress:[29,103],comput:[5,27],concept:14,concret:156,condit:[10,27],condition:10,conf:[0,2,3,6,10,13,15,17,19,24,26,29,46,47,48,49,56,108,109,110,111,114,133,139,140,141,142,152,169,177],conf_dir:[3,29],confdir:17,config:[0,1,9,13,15,16,17,19,22,26,49,51,55,71,76,91,92,111,113,124,153,155,170],config_fil:[3,29],configur:[2,5,6,7,8,10,11,13,14,15,17,19,20,22,24,26,30,32,36,42,43,44,51,53,55,56,67,76,77,79,87,94,105,108,109,110,116,139,145,146,148,153,154,155,168,171,172,174],configure_hosts_simpl:8,conflict:[1,20,29,56,57],conform:140,confus:[137,173],conifgur:3,connect:[13,14,27,29,43,51,55,143],consid:[1,6,40,52,54],consist:[5,17,24,26,44,150],constraint:159,consul:[49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,154,167],consult:0,consumpt:66,contact:[160,161,162,163],contain:[0,1,2,6,9,10,16,17,20,24,27,29,32,52,55,108,109,110,164,165,167],content:[2,9,10,11,14,16,17,24,29,44,46,47,49,51,56,77,94,159,170],context:[9,19],continu:[15,16,23,26,29],contrib:16,control:[0,7,11,13,18,29,51],controlmast:0,controlpath:0,controlpersist:0,controlsocket:13,convent:[0,124],convention:[3,29],convert:140,cool:6,copi:[1,3,6,11,15,17,20,24],copyright:[29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,172,173,174,175,176,177,178,179],core:[5,6,17,27],coreo:[92,170],correct:[78,108,109,110,111],correctli:[10,29,68,93],correspond:[6,151],cost:177,could:[0,4,15,16,24,29],count:29,cours:13,cpu:[3,29],cpu_cor:17,cpu_count:13,cpu_socket:17,creat:[0,1,2,6,7,11,14,15,17,19,20,24,26,29,41,42,43,44,50,51,55,66,68,71,72,75,76,77,78,81,85,93,94,99,100,108,109,110,111,113,115,149,150,151,153,154,155,156,157,164,165,171,175,178],createdb:[16,151],createextens:150,createrol:151,creation:[0,5,10,29,85],croatia:[9,29],cron:[64,113],cronjob:64,crontab:64,crypt:85,ctmpl:56,cumbersom:0,cup:152,cupsd:152,curl:[0,14,29,43,52,103,167],currag:135,current:[0,1,2,3,10,14,16,17,20,24,26,29,46,51,108,109,110,142,150,151,154],current_valu:85,custom:[0,7,16,17,18,23,26,29,91],customerx:1,customlist:139,customlist_serv:139,cwarden:127,d886d4b7e4425a102a54bfaff4d2288b:13,daemon:16,daemontool:[65,66,154],dai:[118,153,155],daili:[27,113],daniel:[44,78,138,178,179],darko:[9,19,29,30,43,50,80,113,156],dash:[0,7,40,49,51,56,71,72,73,77,94,170],data:[2,3,13,17,19,23,24,29,30,57,58,59,60,61,62,63,78,98,113,153,155],databas:[1,10,17,20,26,29,120,149,150],datacent:[51,57,58,59,60,61,62,63],date:[3,29,44,64,81],datetim:29,day_of_month:64,day_of_week:64,dbcustom:151,dbname:[16,150],dc1:51,de_ch:[116,117],deal:172,dear:6,deb:[38,124],debconf:67,debian9:19,debian:[11,12,14,24,31,38,67,121,123,124,135,136,174],debootstrap:29,debug:[0,2,3,4,5,17,24,29,30,55,114],decad:27,decid:[1,3,10,17,20],decis:1,declar:[10,24],dedic:0,deduc:76,def:[14,16,111],default_incom:172,default_outgo:172,default_rout:172,defin:[0,5,11,16,17,20,29,31,64,70,73,100,142,152],definit:[52,54,56,57,58,59,60,61,62,63,96,133],deinstal:26,del:9,delai:0,deleg:0,delet:[9,29,41,77,94,108,109,110,139,173,175],delimit:[16,17,24,29,30,38,111],deni:[51,172,173],dep:29,depend:[11,13,16,17,29,45,51,55,121,126,156],deploi:[17,26,49,50,52,54,55,56,57,58,59,60,61,62,63,73,105,106,167],deploy:127,depth:10,deriv:17,dervi:[22,29],describ:[1,6,10,11,14],design:[5,51],desir:[8,14,20,171],destin:[24,41,44,56,96,114,115,159,165],detail:[0,6,13,16,17,24,29,31,35,48,124],detect:[16,29,73],determin:[2,44,121,135,136],dev:[0,4,16,29,49,78,88,92,97,98,99,102,119],dev_sdb:78,devel:125,develop:[1,4,5,6,7,11,26],devf:[108,109,110],devic:[1,78,88,92,96,97,98,99,119],devuan:[12,14,16,153,155],dhcp:14,diagnost:[20,24],diagram:0,did:[6,15,47,90],diff:[6,26],differ:[1,4,5,10,11,16,17,20,24,27,29,44,78,118,123,152,153,155,175],dig:1,dir:[16,29,30,66,98,119,159,167,179],direct:[29,50,79],directli:[7,17,24,44,50,113,146,151,169],directori:[0,2,3,6,7,8,9,10,14,15,17,19,23,24,26,29,30,41,48,55,65,66,68,76,77,93,94,104,115,153,154,155,159,165,166,167],dirnam:16,disabl:[3,13,19,29,30,37,51,80,108,109,110,141,142,165,168,170,178],disablegroup:177,disallow:[108,109,110],discard:179,discov:19,discoverd:78,discoveri:154,disk:[17,55,56,78,88,102,157],dispatch:121,displai:[29,62,137],dist:[7,136],distinguish:[0,10],distrib_codenam:38,distribut:[0,3,7,14,15,16,17,29,38,55,106,125,126,129,137,138,156,172,178],distutil:7,django:9,djangoenv:156,djb:65,dmitri:[76,87],dns1:8,dns2:8,dns3:8,dns:8,dnsmasq:128,doc:[7,26,29,41,51,52,54,57,58,59,60,61,62,63,150,151,153,154,155],docker:[52,69,70,71,72,73,74],docker_compos:70,document:[0,1,5,15,16,24,45,51,52,54,55,56,57,58,59,60,61,62,63,150,151,153,154,155],documentation_cleanup:6,doe:[2,11,14,16,17,23,24,27,29,51,52,68,71,72,73,77,78,91,93,94,103,108,109,110,113,146,158,166],doesn:[77,94,111],dog:75,dokuwiki:81,domain:[16,17,113,119],dominiqu:[70,139,140],don:[1,6,24,116,123,129,131,132,133,137,138,145,165],done:[0,2,6,10,11,16,24,40,77,94],dos:100,dot:[31,45,48,171],dot_cdist_path:7,dotman:7,doubl:17,down:51,download:[34,50,55,103,167],dpkg:[4,24,124],dport:106,drive:29,drop:[6,13,26,29,106,149,150,151,175,178,179],dry:[29,159],dsl:27,due:[0,51,153,155],dumb:24,dump:119,dure:[2,19,20,26,29,95,96],dynam:[2,9,29],dynamicli:27,each:[0,1,2,4,9,10,13,16,19,24,29],earli:[1,4],eas:8,easi:[1,15,26,27,73],easier:0,easili:[42,78,107,118],eat:26,echo:[0,6,11,15,16,23,24,167],eckert:[124,135,152],edit:[0,15,16,64,69,76],editor:174,egg:16,egress:[172,173],either:[3,7,10,11,13,17,24,26,27,29,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,71,72,73,74,75,77,79,80,81,82,83,84,85,86,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,113,115,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,170,172,173,174,175,176,177,178,179],els:[4,10,11,16,24,64],elswher:165,em0:[108,109,110],email:[16,113],emerg:24,emit:[11,50],empti:[1,4,10,17,24,29,38,68,77,93,94,124],emul:[2,29],en_gb:116,en_u:117,enabl:[1,3,13,16,17,29,30,37,38,48,51,55,80,108,109,110,111,115,142,153,155,168,170,172,177,178],enablegroup:177,enclos:[18,24,29],encod:[51,164],encor:65,encount:[10,13,24,29],encrypt:[51,113],end:[0,19,29,40],enforc:51,engin:27,english:116,ensur:[0,6,10,15,16,17,24,26,68,78,79,93,106,111,114,122,123,125,126,127,128,129,131,132,133,134,137,138,143,152,156,165,166,168,178,179],enter:[1,15,29],enterpris:[28,177],entranc:79,entri:[0,2,10,16,17,31,38,64,87,114,119,145,164,165,169],env:[9,16,29],environ:[2,3,5,10,11,16,23,28,130,156,160,161,162,163,164],eof:[0,11,16,24,67],epel:[137,172,177],eprotex:[110,131,133,141,142],equal:[0,9,16,77,94],err:55,error:[3,4,5,8,10,16,17,19,20,22,24,29,55,77,133,137],error_log:0,esac:[10,11,16,24],especi:4,essenti:[0,10,79,106,123],establish:106,etc:[0,3,6,10,11,15,16,21,24,29,38,41,44,45,46,47,48,49,56,64,68,77,87,93,94,95,96,98,107,111,114,115,118,119,133,146,147,152,153,154,155,159,165,169,170,171],eth0:173,eth:0,ethz:[0,1,29],europ:[9,29,171],eval:15,evax:[160,161,162,163],eve:76,even:[6,10,27,159],event:58,ever:[24,27],everi:[0,6,10,15,20,23,24,26,29,51,52,54,73,135],everyth:[0,6,15,16,17,40,64,143],evil:0,exact_delimit:111,exactli:[4,10,77,94,111,173],exampl:[0,1,15,16,19,20,22,23,24],except:[6,8,29,77],exclud:[41,48,159,177],exec:[6,26,29,51,66,91],execut:[2,3,4,7,8,11,14,16,17,18,19,23,24,29,30,43,45,51,146,152,154,159,167,169],exist:[3,5,6,13,14,15,16,17,20,24,26,29,30,40,51,68,71,72,73,76,77,93,94,111,113,133,165,175,179],exit:[4,11,14,16,19,20,23,24,30],expans:24,expect:[4,10,29,51,103,167,173],expicit:165,explain:29,explicit:[33,75,97,116,117,164,165,168,175],explicitli:[86,108,109,110],explor:[0,2,11,13,16,20,26,27,29,30,31,51,121,135,136],explorer_nam:4,express:[45,114],ext3:78,extend:[5,24,45,51,99],extens:[64,150],extern:1,extra:[10,177],facil:55,factor:5,fail:[2,4,13,15,19,20,23,29,71],failovermethod:177,failur:23,fals:[3,24,29,99],familiar:5,fanci:[24,111,165],far:6,fast:5,fdisk:99,fead:16,featur:[1,2,6,7,10,27,165],fed:9,fedora:[12,137],fedoraproject:177,feed:0,fetch:[0,1,6,26,33,103,167],fetchal:16,field:[64,119],file1:0,file2:0,file3:0,file:[0,2,6,9,10,11,13,15,16,17,18,19,24,40,43,44,45,46,47,48,49,50,51,55,56,66,67,71,72,73,76,77,87,94,95,96,97,103,107,111,114,117,118,124,136,139,142,147,153,155,159,164,165,167,170],filenam:[9,30,44,67,124,139,155,167],filesystem:[17,78,97,98,108,109,110,119],filter:[57,62,79],find:[5,8,10,14,15,26,47,48],fine:[1,6,159],finish:[2,10,13,14,16,29],firewal:[79,141,142,172,173],firewalld:[79,80],first:[0,1,3,6,7,8,10,14,15,16,24,29,86,108,109,110],fix:[6,17,26],fixm:6,fixthingsbecausequalityassurancefoundissuesinourpatch:6,fixtur:29,flag:[9,23,24,66],flaggi:126,flavor:[131,132,133],flexibl:26,flow:10,focu:5,folder:[24,167],follow:[0,1,2,3,6,7,10,13,14,15,16,17,19,20,22,24,26,29,50,124,126,129,131,132,133,137,138,150,156,173,178],foo:[17,59,60,71,72,73,113,124,130,156,164],foo_0:124,foobar:[10,68,85,88,93,103,167,170,175],foobarexampl:10,fooenv:156,forc:[29,38,78,121,135,136,138],form:150,format:[2,6,7,14,17,26,44,56,78,167],forward:[76,79,106,111,165],forward_direct:79,found:[3,6,7,10,24,29,78,108,109,110,178,179],foundat:[31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,71,72,73,74,75,77,79,80,81,82,83,84,85,86,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,113,115,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,157,158,159,164,165,166,167,168,170,172,173,174,175,176,177,178,179],fqdn:[55,108,109,110],framework:16,free:[29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179],freebsd:[12,14,17,31,108,109,110,131,133],freedom:14,freeli:17,fresh:1,frodo:[77,94],from:[0,2,3,5,6,8,9,11,13,14,16,17,20,21,23,27,29,30,33,34,38,40,41,42,48,50,55,65,67,71,72,76,77,78,79,81,82,83,85,86,87,94,96,103,107,111,113,114,117,118,123,124,130,131,132,133,139,152,153,154,155,159,164,165,167,173,176,178],front:[79,106],frontend:29,fstab:[95,96,98,119],fstype:78,ftp:137,fulfil:27,full:[7,17,27,124,172,173],fullchain:16,fulli:[17,31,168],fun:26,funni:87,further:[14,19,26],furthermor:27,fuse:119,futur:2,fwd:106,g640b7f9:13,gain:11,garden:26,gatewai:0,gcc:125,gem:161,gemset:[161,162],gencod:[0,2,6,11,17,19,20,26,30],gener:[2,4,7,10,11,13,15,17,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179],gentoo:[12,24,121,125,126,168],gentoolkit:[125,126],get:[0,6,7,9,10,13,14,15,26,33,39,81,82,113,123,135,153,154,155],getaddrinfo:17,getfacl:31,getfqdn:17,gethostbyaddr:17,gid:[16,85,175],giel:128,git:[0,1,15,23,42,67,81,154],git_dir:1,github:[7,55,56,81,82],gitlab:6,gitolit:67,gitus:67,give:[4,6,7,15,159],given:[6,10,24,27,29,44,49,54,56,58,64,67,88,92,104,114,115,117,119,123,124,133,147,160,162,163,164,165,167,169,174],giveng:159,global:[2,3,10,11,13,16,17,24,26,29,30,55,56,172],gmail:[44,50,71,72,73,74,92,113,135,136,139,140,156,170],gnu:[16,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179],gnuin:171,goal:16,gobin:66,goe:[77,94],golang:[82,83,154],good:[6,24,76],googlegroup:6,gossip:51,got:2,gpg:7,gpgcakei:177,gpgcheck:177,gpgkei:177,gplv3:[29,30,69,70,76,78,87,112,114,116,117,132,156,160,161,162,163,169,171],gracefulli:51,grade:28,grafana:84,grant:[29,30,69,70,76,78,87,112,114,116,117,132,156,160,161,162,163,169,171],green:[6,24],grep:[6,11,27,45,139,140],group:[16,17,21,26,29,31,49,51,68,76,77,81,85,93,94,156,159,167,176],groupadd:85,groupmod:85,grub2:88,grub:[88,91],guarante:24,guest:[108,109,110],guffei:[108,109,110,131,133,141,142],guid:26,gzip:[29,103],hack:24,hacker:6,hand:[8,11,26],handi:55,handl:[27,29,111],handler:[57,58,59,60,61,62,63],happen:[13,23,26,29],happi:87,hard:115,hardware_typ:26,has:[0,1,2,3,7,9,10,11,13,14,17,19,20,24,26,27,29,64,78,124,159,166,167,168,178],hash:[10,29],hashicorp:[55,56],hat:[135,136],have:[0,1,7,9,10,11,14,15,16,17,21,24,26,29,39,77,78,108,109,110,120,138,178],haven:6,hda:[78,138,178,179],head:[0,1],header:[6,23],health:52,healthi:[52,54],heavili:170,help:[0,10,14,17,24,29,30,42,153,155],helper:[7,8,30],her:[16,42],here:[0,5,7,15,16,23,24,27,40,77,94],heul:[78,138,178,179],hidden:19,high:[24,27,172],higher:[3,29],highest:29,hint:4,his:[16,76],hold:35,home:[0,1,2,10,16,17,19,29,42,68,76,77,81,93,94,115,156,157,158,159,164,166,175],homedir:175,honor:17,hook:[16,113],hose:16,host1:26,host2:26,host:[0,1,2,3,4,5,8,10,13,14,15,17,18,19,20,22,24,26,27,30,41,42,43,50,52,55,62,77,87,91,94,96,108,109,110,114,118,125,143,159,167,179],host_max:29,hostabc:0,hostdir:29,hostnam:[4,9,16,17,24,29,51,86,87,108,109,110],hour:[64,135],how:[1,4,10,15,18,52,54,153,155],howev:73,html:[5,16,29,51,52,54,57,58,59,60,61,62,63,150,151],http:[6,7,29,34,38,43,50,51,52,54,55,56,57,58,59,60,61,62,63,83,84,103,106,132,137,150,151,153,154,155,167,177,178,179],http_cach:177,http_port:29,human:[33,52],i386:137,id_rsa:[14,29,159,164,165],idea:[9,76],idempot:[27,73],ident:15,identifi:40,ifconfig:[108,109,110],ignit:92,ignor:[10,29,51,55,64,87,98,114,119,167],ikq02:29,ikq03:29,ikq04:29,ikq05:29,imag:[75,157],img:157,immedi:[7,10],implement:[0,6,18,19,20,24,64,168],impli:141,improv:6,inaccess:178,inact:170,inc:127,includ:[0,1,3,5,6,10,14,16,19,23,29,38,68,93,113,114,124,130,155,158,173],includepkg:177,inclus:17,incom:51,incompat:26,increas:[29,30],increment:29,indent:6,independ:[0,10,106],index:[7,10,16,38,39,135],indic:[1,20,44],inet:145,influenc:[17,29,68,93],info:[2,3,9,13,14,17,19,23,24,29,34,55],inform:[6,17,19,24,29,45,51,74,96,145,170],ing:66,ingress:[172,173],inherit:[76,151],ini:[3,16,29],init1:0,init2:0,init:[0,1,2,6,8,10,11,13,14,15,17,19,23,29,65,105,152,156],init_manifest:[3,29],initi:[0,1,3,8,11,13,14,17,22,24,29,46,47,52,74],input:[16,67,71,72,73,106],input_direct:79,insecur:103,insert:[16,78,87,111,114],insid:[46,47,52],instal:[0,1,4,8,10,14,17,22,34,36,42,50,55,64,65,66,69,70,76,82,83,84,88,89,91,92,94,95,96,98,113,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,144,153,154,155,156,158,159,160,161,162,163,170,172,173,178,179],install_hosts_simpl:8,instanc:[0,7,10,17,20,29,55],instanti:10,instantli:5,instead:[0,10,17,23,26,29,55,64,96,107,130,136,159,164,165,173,178],integr:[0,140],intend:7,intens:[15,168],intent:[16,17],intention:[144,147,148],interact:[8,18,29,52],interest:117,interfac:[17,18,52,108,109,110,159,173],interfav:54,interfer:11,intermedi:[68,93],intern:[0,10,26,29,37,38,52,179],internal_sles11_sp3:179,interpret:114,interv:[52,54],introduc:[6,27],introduct:[154,155],inventori:[3,17],inventory_dir:[3,29],invit:6,invoc:156,invok:[17,38,57,58,59,60,61,62,63,73],involv:10,ip_forward:[111,169],iptabl:[105,106],ipv4:[29,79,111,169],ipv6:[18,24,29],ish:54,iso:92,issu:[6,10,24,51,77,94,107],item:[0,16],iter:8,its:[2,8,9,13,14,16,20,24,29,56,108,109,110,114,148,170],itself:[24,70,76,146,159,165],jail:[17,108,109,110],jail_:[108,110],jail_list:[108,109,110],jailbas:[108,109,110],jaildir:[108,109,110],jailrul:[108,109,110],jake:[108,109,110,131,133,141,142],jame:134,jargon:10,jfs:97,jimenezrick:[135,136],job:[3,13,29,64,113],john:[162,163],join:[21,51,150],jointheirstm:[108,109],journal:97,json:[49,51,92],jun:9,just:[8,9,10,15,16,24,50,55,173],kaction:87,kamila:[65,66,82,83,84,113,153,154,155],keep:[5,75,81,124,155,175],keepal:[11,177],keepaliv:11,keepassx:0,kei:[0,7,14,15,26,29,33,34,51,59,60,61,63,111,139,146,164,165,169],kept:1,kernel:111,kernel_nam:17,key_fil:51,keyboard:112,keyfil:29,keygen:[0,15],keyid:33,keyprefix:60,keyr:34,keyserv:33,keytyp:164,keyword:[3,29],kill:[6,152],kind:17,kisrqlpw:19,kiss:[5,9,28],know:[5,6,10,12,24],known:[4,16,24,46,47,50,51,55],koeppel:120,kooijman:32,ksp:[65,66,82,83,84,113,153,154,155],kucera:[71,72,73,74,92,113,170],kvlt:[31,35,45,48],kvm:[10,68,93,157],label:[78,102],lack:1,lang:117,languag:[5,10,24,134,160,161,162,163],last:[16,23,24,29,135,167],lastet:26,later:[1,10,20,24,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,164,165,166,167,168,169,170,172,173,174,175,176,177,178,179],latest:[0,1,6,26,50,55,69,133,154],layout:112,lc_all:117,lc_messag:117,lead:[10,17,23,29,51,78,152],leader:55,leak:0,learn:[15,27],least:[12,45,51],leav:[51,74],left:[74,144,147,148,165],legaci:168,legacy_kei:111,legacy_timezon:114,length:111,less:[5,6],let:[0,1,10,77,94,113],letsencrypt:[16,113],level:[3,8,17,27,29,51,55,172],lib:[8,119],libc:116,libexec:114,libpq:16,librari:29,libreoffic:0,licens:[29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179],life:[11,15,26],lighttpd:10,like:[0,1,3,4,5,6,7,9,10,11,15,16,17,18,19,22,23,24,29,64,66,79,113,116,123,124,139,178],limit:[13,27,29,173],line:[0,3,4,9,10,14,15,16,23,24,29,30,45,79,106,108,110,111,114,173],liner:4,link:[17,21,45,115],linux:[12,16,31,78,97,99,111,135,136,177],list:[1,3,6,9,10,14,17,24,33,38,50,55,83,138],listen:[0,16,29],liter:17,littl:27,live:[16,51],load:142,loadbalanc:[9,29],local0:55,local:[0,1,3,8,10,11,16,17,19,20,23,24,29,30,50,52,54,56,68,93,103,114,116,117,121,123,124,136,138,156,159,167,173],local_shel:[3,29],localbranchnam:7,localch:1,localedef:[116,117],localhost:[9,10,15,29,55],localrepo:139,localrepo_serv:139,localtim:171,locat:[3,4,16,17,26,55,108,109,110,130,165],loch:1,log:[0,3,15,16,17,29,51,55,66,114,172],logdirectori:24,login:[15,16,111,151,165],loglevel:[24,29],longer:87,look:[0,1,4,6,10,15,16,19,24,26,48,138],lookup:[22,29],loop:[16,27],loos:27,lose:5,loss:78,lost:19,lot:[5,17],lotsofopt:[108,109,110],low:172,lower:[3,29],lowercas:14,lowest:29,lsb:38,lsb_codenam:17,lsb_descript:17,lsb_id:17,lsb_releas:17,lsblk:78,lsof:128,lua:127,luarock:127,luasocket:127,lubomir:[71,72,73,74,92,113,170],lvm:102,lzma:29,mac:12,machin:[0,1,7,14,17,22,26,27,44,50,55,95,101,167,172,173],machine_typ:17,made:[20,26,109],magic:[5,10],maher:44,mai:[0,1,4,7,10,13,17,20,24,26,29,55,159,164,165],mail:6,mailinglist:6,mailto:64,main:[5,24,38,66,146,172],maintain:[7,9,17,26],major:27,make:[0,5,6,7,10,16,24,26,27,31,51,76,77,78,87,94,146,153,154,155,161,162,163,178],man:[2,6,10,17,26,138],manag:[0,6,10,15,22,24,26,29,33,37,38,40,41,42,44,46,47,51,52,54,55,56,57,58,59,60,61,62,63,64,66,68,69,71,72,73,74,75,77,79,85,87,93,94,106,107,108,109,110,114,115,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,141,142,150,151,153,155,157,158,160,161,162,163,164,165,166,167,168,169,170,175,176,177,178,179],mandatori:87,mani:[0,6,10,16,111,154],manifest:[0,2,3,6,8,11,13,14,15,17,19,22,26,29,45,156,159],manipul:27,manner:106,manpag:[5,6,10,17,24,26,31,179],manpath:[7,10,26],manual:[14,26,87,119,132],map:[15,17,20,151],mapper:78,mark:[24,35,99,172,173],markasoftwar:[172,173],marker:[2,44],mask:[31,170],mass:26,master:[1,5,6,7,24,26,42,51,54,81,145],match:[45,48,51,114,152,173],matter:27,matthij:32,max:[55,135,178],maxag:135,maxdepth:48,maximum:[0,3,13,29,55,56,111,172],maxproc:145,maxsess:[0,13,29],maxstartup:[13,29],md5sum:24,mdadm:102,mean:[2,3,9,10,13,16,20,22,24,27,29,68,69,73,93,108,109,110],meaning:5,meant:76,medium:172,meet:6,member:16,membership:[68,77,93,94],memori:17,merg:[0,1,6,17,20,26],messag:[2,3,4,5,14,16,17,20,24,26,29,30,45,118,137],metadata_expir:177,metalink:177,method:[5,14,50],mfsmaster:119,mfsmount:119,mfssubfold:119,micro:16,might:[6,167],migrat:26,mindepth:48,minim:[14,29],minimum:[55,56],minor:99,minut:64,mirror:[6,7,29,132,137,139,159,177],mirrorcatalog:132,mirrorlist:[139,177],mirrorlist_expir:177,miss:[24,37],mistak:9,mitchellh:[50,167],mkdir:[0,16,24,68,93],mkf:[78,97],mkfsoption:78,mktemp:24,mnt:[29,88,91,95,103],mod:[85,175],mode:[0,5,13,15,16,22,29,49,51,68,74,76,77,81,93,94,103,113,156,167],model:27,modern:[5,172],modif:[108,109,110],modifi:[31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,71,72,73,74,75,77,79,80,81,82,83,84,85,86,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,115,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,157,158,159,164,165,166,167,168,170,172,173,174,175,176,177,178,179],modul:[8,127],mondai:64,monitor:154,month:64,more:[0,1,2,6,9,10,13,14,15,17,19,23,24,26,29,31,45,48,55,74,75,77,94,116,117,145,167,168,170,176],morti:128,mosh:173,most:[6,27,44,172,174],motd:118,motiv:27,mount:[46,47,78,89,90,98,104,108,109,110,119],move:7,msdo:99,much:[1,16],multi:4,multilog:66,multipath:78,multipl:[1,10,24,29,45,51,54,55,133,145,164,165,176,177],multiplex:[0,13,29],multiprocess:13,munin:[0,10,45,106],musl:116,must:[6,9,10,18,20,24,29,31,48,51,56,65,66,79,82,87,108,109,110,111,114,124,154,165,167],muttrc:76,mux_client_request_sess:13,my_program:66,mycloud:9,mycompani:1,mydbnam:149,mydbusernam:149,mydomain:146,myfancyissu:107,mylin:19,myoldvm:157,mypwd:120,myrepo:133,myrol:151,myservic:85,myset:[161,162],mysql:120,mystuff:159,myuser:120,myvmnam:157,n566pqut:19,name:[0,1,2,4,5,6,9,10,14,16,17,19,22,24],namespac:23,nat:79,natur:0,nblock:40,nearbi:6,necessari:10,need:[0,1,5,6,10,15,16,20,24,26,27,38,73,76,82,108,109,110,111,113,125,133,142,150,153,155,158,166,178],nest:17,net:[9,10,111,132,169],netbsd:[12,14,31],netmask:[108,109,110],network:[0,13,27,29,173],never:24,new_valu:85,newer:[1,153,155],newli:20,newlin:[16,24],next:[10,15],nfs:[68,93],nginx:[0,56,113,123,152,176],nicer:16,nico:[0,29,41,42,67,68,75,77,79,81,93,94,105,106,107,113,115,116,117,118,122,123,129,130,137,138,152,157,158,159,166,168,174],no_x11:[131,132,133],noarch:137,noatim:98,node:[0,22,45,51,61,154],nofil:165,nofstab:119,nologin:10,non:[0,4,20,24,48,68,93,165],none:[3,8,29,32,33,36,37,39,43,44,46,47,49,50,51,52,53,54,55,65,66,68,69,70,77,80,82,83,84,85,86,88,89,90,91,93,94,95,96,100,101,102,104,105,107,114,118,119,120,121,122,123,125,126,127,128,129,130,131,132,133,134,135,136,137,138,140,141,143,144,147,148,154,156,159,168,170,171,175,177,178],nonempti:119,nopar:165,nopasswd:0,nor:[6,29],noreload:145,normal:[0,10,15,24,44,78,140],notat:78,note:[0,2,3,7,15,17,24,50,52,55,66,96,142,146,153,155,165],notebook:[1,27],noth:[26,77,78,94,137],notic:[18,24],now:[1,6,7,9,10,16,19,26,87],nslcd:67,ntext:40,number:[0,3,13,29,30,97,99,178],numer:[56,99],nut:[108,109,110],nutzer:1,nutzung:29,nvm:99,nvme0n1:99,nvme0n1p2:99,object:[0,4,5,10,11,13,14,16,19,24,26,29,35,52,66,82,113,115,117,120,122,123,124,125,127,128,129,130,131,132,133,134,137,138,150,152,159,173,178,179],object_id:[29,40,78,87,88,97,98,99,104,108,109,110,111,114,121,165,169,176],object_mark:2,obsolet:[123,128,129,131,132,133,137],obtain:[3,29,113],obviou:0,obvious:5,occur:[20,133],oettli:[125,126],off:[3,17,24,29,172],offic:29,offici:[1,29],offlin:0,old:[9,26,29,79],older:26,oliv:143,olliv:143,omit:[24,33,55,56,167],onboot:[108,109,110],onc:[6,24,71,72],onchang:[48,49,77,111,114],one:[0,1,2,3,4,5,6,10,11,13,14,15,17,20,27,29,45,51,55,77,94,114,119,123,140,164,165,171,173,176,179],ones:[26,27],onli:[0,1,2,3,5,6,7,9,10,11,15,16,19,20,26,27,29,30,31,42,51,55,58,62,70,77,78,80,85,94,99,111,123,133,135,153,155,159,168,173,175,178],onto:[118,142],open:[6,13,27,29,173],openbsd:[12,31,132],opennebula:[11,19],openssh:0,openwrt:128,oper:[3,5,13,16,24,29,51,83,85,86,103,111,159,168,175],opkg:128,opposit:[6,173],opt:[7,115,159],option:[0,2,3,8,9,13,14,17,18,19,24,29,45,67,174],optional_multipl:24,options_architectur:139,order:[0,2,3,11,16,17,27,29,45],org:[0,20,29,41,42,67,68,75,77,79,81,83,87,93,94,105,106,107,108,109,113,115,116,118,122,123,127,129,130,137,150,151,152,157,158,159,166,168,174,177],orient:10,origin:[6,7,10,26,29,65],ornett:163,ortigoza:[112,117],os_releas:17,os_vers:17,osx:31,other:[1,4,6,7,8,10,11,13,16,17,19,20,22,23,24,26,27,29,31,33,42,64,68,78,93,151,179],otherstuff:159,otherwis:[7,10,14,17,24,29,77,111,114,124,139],otho:[125,126],our:[10,16,23,171],out:[0,1,10,15,16,17,26,29,81,106,136,173],out_path:[3,29],outgo:51,output:[0,2,3,4,6,13,16,17,20,24,29,30,55,106,108,109,110,138,167],over:[0,11,15,56],overrid:[18,57,58,59,60,61,62,63],overridden:76,overview:[19,74,153,154,155],overwrit:[3,11,17,29],overwritten:76,own:[1,2,7,9,13,24,55,149,158,165],owner:[16,29,49,68,76,77,81,93,94,149,156,158,159,165,167],ownership:165,ozagkg54:29,packag:[0,4,10,24,33,35,36,39,65,69,70,82,84,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,153,155,156,159,177],package2:159,packagenam:138,packages_to_instal:16,packet:[111,172],pacman:[24,129,135,136,139,140],page:[2,7,14],pair:[0,15],pam:114,pam_exec:114,panter:0,paradigm:5,parallel:[3,6,24,27,29],param:29,paramet:[0,2,4,6,8,10,14,17,20,22,26,29,30],parent:[10,26,48,68,76,93],parit:99,part:[79,91],partial:[31,51],particular:[2,3,132,133,154],particularli:170,partit:[99,100,102],partner:38,pass:[11,17,18,20,29,44,45,48,57,62,97,98,113,119,123,145,150,156,172],passingonli:62,password:[0,10,15,16,29,55,85,114,120,151,175,177],past:15,patch:[21,138],path:[0,2,3,7,8,13,16,19,24,40,41,44,46,47,48,49,51,55,56,64,67,71,72,73,78,89,90,92,96,103,113,119,124,130,153,155,164,167,170,174,178,179],pattern:[2,3,17,45,48,114,138,155],pci:78,peer:[13,51],pem:[16,51],peopl:[0,1,6,15],per:[0,3,13,17,24,29,55,76,108],percentag:99,peril:[10,17],permament:169,perman:169,permiss:[51,68,77,81,93,94,156,165,166],permit:[13,29],permit_sasl_authent:145,permitrootlogin:[0,11,15],person:29,pgrep:152,pgsql:16,phrawzti:44,physic:[108,109,110],pick:7,pip3:16,pip:[7,16,26,130],pkg:[133,139],pkg_path:132,pkg_state:124,pkgsite:131,place4:79,place:[0,7,17,24,118,142],plain:139,plain_file_filenam:139,plan:[0,26],pleas:[18,26,159],plone:115,plugin:[14,16,17,29],point:[6,7,10,11,15,17,27,104,119],pointer:[6,10],polici:[51,106,172],poljak:[30,43,50,80,113,156],poll:55,polyakov:[172,173],pong:143,popular:27,port:[16,27,29,43,52,54,55,145,173],portabl:24,portag:[125,126],posit:[3,6,14,16,29,114],posix:[3,5,7,27,29,48],pospisek:[124,150],possibl:[0,1,3,11,17,18,29,31,111,146],postconf:146,poster:29,postfix:[144,145,146,147,148],postgr:[149,150,151],postgres_serv:16,postgresql:[150,151],postmap:147,power:11,ppa:37,practic:1,practis:[4,27],pre:77,preced:[3,29,56],predefin:24,prefer:65,prefix:[6,24,30,40,60,91,95,98,99,111],preo:[17,43],prepar:[13,29,46,89,167],prepend:98,preprocess:167,prese:[26,67],present:[0,2,9,10,16,24,26,29,33,34,37,38,40,41,49,50,51,52,54,55,56,57,58,59,60,61,62,63,64,66,68,69,70,71,72,73,74,75,76,77,79,80,81,82,85,87,92,93,94,106,108,109,110,111,113,114,115,116,117,119,121,122,123,124,125,127,128,129,130,131,132,133,134,137,138,139,140,141,142,145,149,150,151,152,156,157,158,160,161,162,163,164,165,166,167,168,170,172,173,175,176,177,178,179],pretti:[0,1,24],prevent:[23,24],previou:[14,20,23,51,135],previous:[0,10,87],primari:[17,29,51],principl:28,print:[14,16,20,24,29],printf:[16,167],prior:[68,93,133,179],prioriti:[79,177],privat:[0,6,51,75,145],privileg:0,privkei:16,probabl:[6,24,26,27,117],problem:159,proc:41,proce:10,procedur:26,process:[3,13,16,19,29,152],produc:19,product:[0,54,62,138],program:[5,10,27,66,75,134,157,160,161,162,163,174],prohibit:13,project:[3,16,31],projectnam:16,prometheu:[66,82,153,154,155],promport:155,proper:[14,24],properti:[85,111],propos:6,protocol:[5,79],provid:[10,17,18,24,48,51,57,58,59,60,61,62,63,76,77,83,94,124],proxi:[16,177],proxy_password:177,proxy_usernam:177,psql:16,psycopg2:16,ptype:138,pub:[14,29,164,165],pubkei:[0,15],publish:[31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,71,72,73,74,75,77,79,80,81,82,83,84,85,86,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,113,115,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,157,158,159,164,165,166,167,168,170,172,173,174,175,176,177,178,179],pull:[6,11,26],punnar:[31,35,45,48],puppet:[123,129,131,132,133,137,168],purg:[123,124],purpos:[0,4,9,14,16],push:[1,5,6],put:[76,153,155],pwd:[7,26],pxe:[14,29],pxe_boot_dir:29,py3k:29,pypi:7,pyro:130,python2:[129,131,132,133,137,138],python3:[9,16],python:[5,6,8,29,129,130,131,132,133,137,138,156],pythonx:[129,131,132,133,137,138],pyvenv:156,qemu:[75,157],quagga:35,qualifi:17,qualiti:159,queri:[55,124],question:[21,44],quickstart:1,quiet:29,quit:0,quot:[0,11],rabbitmq:[34,38],rail:[0,134,161],rails_test:150,rais:[8,77],ramon:171,rang:173,rather:29,raw:64,raw_command:64,rbenv:158,rc4:70,reach:[13,29,54,135],reachabl:1,react:[11,27],read:[1,3,9,10,13,15,16,24,29,67,71,72,73,159],readabl:[33,52],readi:[14,16],real:[0,11,15,17],realis:[0,10],realli:10,reason:1,reboot:[64,101],recent:[1,6,44,82,154],recogn:[3,29],recognis:23,recommend:[0,1,15,24,36],recommended_mutt_config:76,recreat:71,recurs:[26,31,48,68,93,104,159],red:[135,136],redefin:10,redhat:[11,12],redi:[52,54,62],redirect:66,redistribut:[31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,71,72,73,74,75,77,79,80,81,82,83,84,85,86,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,113,115,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,157,158,159,164,165,166,167,168,170,172,173,174,175,176,177,178,179],redund:6,ref:[0,1],refer:[10,13,16,24,29],referenc:[11,17],reflect:1,refus:[13,29,78],regex:[48,111,114],regexp:152,regist:[14,172],regular:[27,45,76,77,94,114],reiserf:97,reject:[145,172,173],rejoin:51,rel:[17,29,115],relat:[45,106],releas:[7,32,34,38,51,55,123,137],releasev:177,relev:0,reli:1,reliabl:11,reload:[16,49,53,113,145,148],remain:[18,99],rememb:16,remot:[0,1,2,3,6,11,13,17,19,24,26,29,41,51,81,91,108,109,110,143,159,161,162,163,165,173],remote_copi:[3,29],remote_exec:[3,29],remote_out_path:[3,29],remote_shel:[3,29],remov:[17,19,26,29,31,40,48,64,68,69,70,71,72,73,75,77,85,87,93,94,102,108,109,110,111,113,114,115,116,117,122,123,124,125,127,128,129,131,132,133,134,137,138,141,142,156,157,160,161,162,163,164,165,166,170,173,175,176,179],renam:26,render:[0,55,56],renew:[16,113],repeat:[6,29],replac:[15,16,26,77,94,111,167],repo:[1,6,133,135,177,178,179],repo_desc:178,repo_gpgcheck:177,repo_id:178,report:[19,21,26,41],repositori:[1,6,7,37,38,81,84,131,133,136,139,172,177,178],repositoryid:177,repres:[8,10,24],request:[6,11,13,14,21,22,29,51],request_uri:16,requir:[0,5,6,8,10,15,16,17,18,24,26,27,29,75,157],required_multipl:24,reserv:17,reset:102,resolv:[0,10,22,29,46,47,87],resourc:[0,27],respect:[18,24],respons:[22,29,153,155],rest:99,restart:[11,16,45,48,56,170],restor:[46,47],restrict:[58,172],restructur:6,restructuredtext:17,result:[0,1,4,10,17,20,24,27,29,133],retain:153,retent:[153,155],retri:[51,55,177],retriev:[96,123,136,167],retry_interv:51,reus:[0,4,5,20],reusabl:16,revers:[16,22,29],ricardo:[135,136],rid:33,right:[0,166],ris:[178,179],rock:0,role:[149,151],root:[0,10,13,15,16,18,29,49,64,68,77,93,94,113,115,130,158,159,165,166,167],root_password:29,rout:[16,172],router:111,roux4:[139,140],roux:[70,139,140],rpc:152,rpcstatd:152,rpm:137,rsa:165,rsalvado:171,rst:[6,17],rsync:159,rubi:[24,134,158,160,161,162,163],rubygem:134,rule:[17,29,51,79,105,106,155,164,173],rule_fil:155,ruleset:[106,108,109,110,141,142],run:[0,2,4,5,6,7,11,12,13,14,16,17,19,22,23,26,27,29,39,44,46,48,49,50,51,52,54,55,56,64,66,68,73,77,88,89,91,93,94,96,101,103,111,113,114,118,130,135,143,145,146,147,152,159,167,172],runa:130,runlevel:[17,168],runtim:169,rvm:[160,161,162,163],rwx:31,safe:76,sai:10,same:[0,4,10,20,22,24,27,29,33,37,68,77,78,79,85,93,94,97,98,111,116,117,121,135,145,159,161,162,165,167,168,175],sampl:16,san:[0,37,78],satisfi:14,saturdai:64,sausag:16,save:[2,3,24,29,46,47,66,153,155,167],save_output_stream:[3,29],sbin:152,scalabl:5,scan:[14,65],scenario:[0,27],schijndel:128,schinagl:143,schotteliu:[0,29,41,42,67,68,75,77,79,81,93,94,105,106,107,113,115,116,117,118,122,123,129,130,137,138,152,157,158,159,166,168,174],scp:[3,17,18,24,29],screen:[29,30],script:[0,4,5,7,9,10,11,16,17,20,29,30,52,54,64,65,105,164],scsi:78,sda1:[97,98,99],sda2:[97,98,99],sda3:99,sda5:[97,98,99],sda6:99,sda7:99,sda:[88,92],sdb:[29,78,102],sdc3:119,sdx:78,search:[3,29,45,114,178],second:[13,14,52,135],secondli:1,secret:[72,151],section:[2,3,15,16,29,139],secur:[5,27,48,51,55],sed:[26,27],see:[0,1,2,6,9,10,11,13,14,16,17,18,19,22,23,24,26,29,31,35,45,48,50,74,83,85,119,170,177,179],seen:24,segment:[86,167],select:[1,7,9,10,16,29,42,67,161,171],send:[0,11,21,55,113],sens:24,sent:55,separ:[3,5,6,10,13,17,24,29,55,56,111,119],sequenti:[13,29],serv:[16,55],server:[0,5,7,10,13,14,15,22,27,29,50,51,55,84,96,103,108,109,110,113,139,165,167],server_alia:24,server_nam:[0,16],servernam:[0,24],servername_access:0,servername_error:0,servic:[0,10,16,45,48,49,52,54,55,56,57,62,63,65,66,68,71,73,81,93,106,113,115,145,154,156,157,170,178,179],service_desc:179,servicedir:[65,66],session:[0,13,29,114],set:[1,3,5,8,9,10,14,16,17,23,29,31,32,33,35,38,51,55,65,67,77,84,85,86,94,100,111,112,113,116,117,139,162,163,164,165,169,171,172,173,175,178],setfacl:31,setuidgid:66,setup:[7,10,15,16,17,26,29,42,67,68,93,107,116,118,172,174,179],sever:27,sfs:[78,125,126,138,178,179],shadow:[77,94,115],shall:[29,164,165],share:[0,171],shareabl:1,shebang:[23,24],sheepdog:75,shell1:9,shell2:9,shell:[3,4,5,7,8,9,10,15,16,17,23,24,52,54,64,175],shinken_virtualenv:130,ship:15,shorten:24,should:[1,3,6,10,14,15,16,17,18,20,21,24,26,29,37,52,54,56,78,99,108,109,110,111,114,120,158,164,165,166,168,171,176],show:[1,14,15,16,19,29,30,77],show_index:16,sign:[7,33,34,111],signific:[4,153,155],sigterm:51,silent:87,silli:[68,93],similar:0,similarli:6,simpl:[4,5,9,10,11,18,22,29,143],simpli:[6,27],simplic:5,sinatra:134,sinc:[0,14,19,23,71,72,73,76,135],singl:[0,27,164,167,173],singleton:[0,26,83,84],site:[0,7,16,17,115,156],situat:[10,23],size:[55,75,99,157,167],skel:[77,94],skip:[24,29,135],skip_if_unavail:177,sky:75,slash:[10,17,98,152,159],sles11:179,slightli:137,slow:0,small:[4,5,28],smtp:145,smtp_bind_address:146,smtpd:145,smtpd_client_restrict:145,smtpd_enforce_tl:145,smtpd_sasl_auth_en:145,snapshot:132,snippet:[0,26],snmpd:168,sock:16,socket:[16,17],softwar:[29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179],solari:[31,48],solid:0,solut:[0,23],solv:[1,5,159],some:[0,6,7,9,10,11,16,17,18,19,24,27,29,31,40,46,47,51,52,57,58,59,60,61,62,63,64,77,86,94,106,108,110,119,154,164,165,172],some_fancy_hash:10,some_other_hash:10,somecommandthatdoesnotexist:23,somedomain:146,somefil:[77,111],someth:[2,6,10,11,15,23,45,68,93,154],sometim:0,somewher:[10,82,91],soon:[6,15],sophist:[1,15],sorri:48,sourc:[0,2,3,10,16,17,19,23,24,26,27,29,38,39,41,42,49,51,56,71,72,76,77,81,94,107,115,118,124,141,142,153,155,159,167,170],sourcepol:[124,150],sp3:179,space:[6,10,38,99,114,144,147,148],spam:16,spawn:29,special:[0,10,23,69,146],specif:[0,4,7,10,17,20,24,38,50,55,57,69,85,97,99,121,125,130,131,133,135,136,156],specifi:[0,2,3,8,9,13,14,16,17,18,22,29,30,41,43,51,52,54,55,62,64,66,72,77,78,81,94,99,111,113,114,115,130,132,137,139,145,159,164,165,172,176,177],sped:0,spezifi:78,sphinx:7,split:26,splitbrain:81,sql:[150,151],sqlite3:9,squar:[18,24,29],src:38,srcpackag:138,srv:31,ssh:[1,3,5,7,11,13,14,15,17,18,24,27,29,106,164,165,166],ssh_config:0,sshd:[0,11,13,29,152,164,165],sshd_conf:159,sshd_config:[0,13,15,29],ssl:[16,24,51,55,103,113],ssl_certif:16,ssl_certificate_kei:16,ssl_check_cert_permiss:177,sslcacert:177,sslclientcert:177,sslclientkei:177,sslverifi:177,stabl:[0,1,8,29,32],stack:73,staff:27,stage:[4,10,103,113,167],stai:[7,10,26,79,81],stale:55,standalon:113,standard:[0,5,9,17,24,29,71,72,73,165,179],start:[14,15,16,19,20,22,26,29,40,43,65,80,84,108,109,110,114,152,168,170,172],starter:1,startstat:80,startup:[14,22],stash:6,statd:152,state:[0,1,2,5,16,19,20,24,26,29,33,34,35,37,38,40,41,49,50,51,52,54,55,56,57,58,59,60,61,62,63,64,68,69,70,71,72,73,74,75,76,77,79,81,85,87,93,94,106,108,109,110,111,113,114,115,116,117,119,121,122,123,124,125,127,128,129,130,131,132,133,134,137,138,139,140,141,142,145,149,150,151,152,156,157,158,160,161,162,163,164,165,166,167,168,170,172,173,175,176,177,178,179],statement:10,staticmethod:14,statu:[4,49,52,54],stderr:[2,4,16,19,20,24,30,55,66],stdin:[0,2,9,16,17,29,32,40,49,51,56,67,77,94,170],stdintest:0,stdout:[0,2,4,19,20,30,55,167],step:[1,14,15,16,29],steven:[29,33,34,36,37,38,39,40,46,47,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,69,85,86,88,89,90,91,95,96,97,98,99,100,101,102,103,104,111,114,117,119,121,144,145,146,147,148,149,151,164,165,167,169,175,176,177],stick:5,still:9,stop:[16,26,80,108,109,110,152,170],storag:[9,17,153,155],store:[0,1,2,4,9,10,17,20,23,24,96,167],str:16,straightforward:5,stream:[2,3,29],stretch:32,strftime:29,string:[8,27,29,38,46,47,67,85,99,119,164,165,167],strip:[17,29,152],strong:13,structur:66,structuru:2,stu:135,stuff:[0,1,7,24,168],stupid:5,style:[108,109,110],sub:[15,29],subcommand:[14,29],subdirectori:[2,17,24,29],subfold:[0,42],subject:6,submiss:[6,145],submit:24,subsequ:16,substitut:29,subtyp:108,success:[0,13,19,22,29,143],successfulli:[15,16],sudo:0,sudoer:0,suffici:82,suffix:[10,40,46,47,56,99],suggest:[24,36],suit:29,suitabl:[68,77,81,93,94,156],superblock:102,superus:151,supplementari:17,suppli:[35,68,77,93,94,107,111,114,118,122,123,125,127,128,129,130,131,132,133,134,137,138,139,142,178,179],support:[3,13,14,16,18,22,24,26,27,29,31,50,51,55,79,83,108,109,110,116,153,154,155,159,168,173],suppos:[0,125],suppress:29,sure:[10,16,77,78,94,153,155,178],surpris:5,suse:[11,138,178,179],svc:[66,154],swap:[98,99],swarm:74,swellpath:127,symbol:[10,26,31,115],symlink:[26,77,94,171],symobl:115,sync:0,synchronis:1,syntax:[24,26,173],sys:[14,41,125],sys_uid_max:111,sysadmin:[10,27],sysctl:[111,169],syslog:[51,55,152],system:[0,1,3,4,6,14,15,24,27,28,29,42,44,51,66,67,82,83,85,86,97,103,111,116,117,121,123,124,127,134,135,141,142,154,156,157,168,170,174,175,179],systemd:[43,170],tabl:[16,79,102],tag:[7,9,17,54,62],tagfil:29,taglist:29,take:[7,18,24,26,40,49,51,52,56,64,68,72,77,86,93,94,159,170],taken:[0,159],talk:55,tar:[3,29,103,167],tarbal:103,target:[2,3,4,5,10,13,15,16,17,18,24,27,29,38,42,50,55,56,66,68,77,78,85,88,91,93,94,95,96,98,103,104,118,121,123,125,135,136,153,155,159,167,174,175,179],target_dir:29,target_host:2,target_runlevel:168,task:10,tbz2:[3,29],tcp:[52,106],technic:142,tell:[0,10,73,148],temp:[29,68,93],tempfil:[24,29],templat:[17,55,56],temporari:[1,11,17,19,24,29],temporarili:142,term:[29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179],termin:51,test:[6,9,12,16,17,19,29,31,32,34,38,113,114,115,159,168],testdir:159,testdisk1:78,testdisk2:78,testdisk3:78,tester:159,testfil:10,testjail:[108,109,110],testrepo2:178,testrepo3:178,testrepo4:178,testrepo:178,text:[0,6,40],textual:145,tftp:[14,103],tgz:[3,29,103,108,109,110],than:[0,6,10,24,68,93],thei:[0,6,7,10,20,24,77,94,133,155],theloni:163,them:[0,3,6,9,10,11,13,18,24,105,164],thi:[0,1,2,3,4,6,7,8,9,10,11,13,14,15,16,17,18,19,20,22,23,24,27,29,30,32,34,37,38,39,41,42,44,45,46,47,48,51,52,54,55,56,57,58,59,60,61,62,63,64,68,69,70,71,72,73,74,76,77,78,79,80,81,82,83,84,85,87,88,91,92,93,94,96,97,99,101,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,123,124,125,126,131,132,133,135,136,141,142,144,146,147,148,149,150,151,152,154,155,156,158,159,160,161,162,163,164,165,166,168,169,170,171,172,173,174,175,176,178],thing:[0,6,33,77,78,94,97],think:[1,6,24],third:[0,23],thisjail:[108,109,110],thoma:[124,125,126,135,152],those:[0,2,13,15,29],thought:[17,29],thread:16,three:[0,23],throguh:14,throttl:177,through:[9,16,20,52,54,108,109,110,161,162,163,172],thu:[1,6,10,11,17,23,24,26,133],tick:5,time:[0,1,3,5,13,17,29,44,51,54,55,56,64,71,73,135,145,159,164,165,176,177],timeout:[52,177],timestamp:[3,10,29,44],timezon:[114,171],tld:119,tmp:[0,10,13,19,24,29,44,68,77,93,94,98,114,124,159,167],tmpdir:[0,24,29],tmpf:98,tmpow6cwemh:19,tmpuah6fw_t:13,tmpzomy0wi:19,togeth:[13,45,52,54],token:[51,52,55,57,58,59,60,61,62,63],tom:[124,135,152],toma:[124,150],tool:[5,9,10,24,126,154],topmost:79,total:[9,13,18],touch:[6,10,16,24],tour:6,tpo_deb:[124,150],trace:[3,17,24,29],track:[0,1],traffic:[79,173],trail:[17,29,51,164,165],transfer:[13,20],translat:10,transport:[5,15],treat:111,tree:[1,16,20,24,26],tri:[71,143],trigger:[43,55,56,105],trigger_command:29,try_fil:16,ttl:[51,52,54],tutori:[1,15],twice:6,two:[0,7,9,10,11,13,18,20,23,24,165],txt:177,txz:[3,29],type:[1,2,4,5,7,11,19,20,26,27,29,30,37,38,39,41,42,44,45,46,48,49,50,55,56,57,58,59,60,61,62,63,64,67,68,71,72,73,74,76,77,78,79,80,81,82,83,84,85,87,88,91,92,93,94,97,98,99,101,104,105,106,107,108,109,110,111,112,114,115,116,117,118,119,120,121,124,125,126,131,132,133,135,136,139,140,141,142,143,145,146,149,150,151,152,154,156,158,159,164,165,166,167,168,170,171,172,173,175,179],type__acl:[17,25],type__apt_default_releas:[17,25],type__apt_kei:[17,25],type__apt_key_uri:[17,25],type__apt_mark:[17,25],type__apt_norecommend:[17,25],type__apt_ppa:[17,25],type__apt_sourc:[17,25],type__apt_update_index:[17,25],type__block:[17,25],type__ccollect_sourc:[17,25],type__cdist:[17,25],type__cdist_preos_trigg:[17,25],type__cdistmark:[17,25],type__check_messag:[17,25],type__chroot_mount:[17,25,47],type__chroot_umount:[17,25],type__clean_path:[17,25],type__config_fil:[17,25],type__consul:[17,25],type__consul_ag:[17,25,52,54,57,58,59,60,61,62,63],type__consul_check:[17,25],type__consul_reload:[17,25],type__consul_servic:[17,25],type__consul_templ:[17,25,56],type__consul_template_config:56,type__consul_template_templ:[17,25],type__consul_watch_check:[17,25],type__consul_watch_ev:[17,25],type__consul_watch_kei:[17,25],type__consul_watch_keyprefix:[17,25],type__consul_watch_nod:[17,25],type__consul_watch_servic:[17,25],type__cron:[17,25],type__daemontool:[17,25,66,154],type__daemontools_servic:[17,25,65],type__debconf_set_select:[17,25,174],type__directori:[17,25],type__dock:[17,25],type__docker_compos:[17,25],type__docker_config:[17,25],type__docker_secret:[17,25],type__docker_stack:[17,25],type__docker_swarm:[17,25],type__dog_vdi:[17,25],type__dot_fil:[17,25],type__fil:[17,25,49,76,167],type__filesystem:[17,25],type__firewalld_rul:[17,25],type__firewalld_start:[17,25],type__git:[17,25],type__go_get:[17,25],type__golang_from_vendor:[17,25,154],type__grafana_dashboard:[17,25,153,155],type__group:[17,25],type__host:[17,25],type__hostnam:[17,25],type__install_bootloader_grub:[17,25],type__install_chroot_mount:[17,25,90],type__install_chroot_umount:[17,25],type__install_config:[17,25],type__install_coreo:[17,25],type__install_directori:17,type__install_fil:[17,25],type__install_fstab:[17,25],type__install_generate_fstab:[17,25,95],type__install_mkf:[17,25,98],type__install_mount:[17,25,95],type__install_mount_appli:98,type__install_partition_msdo:[17,25],type__install_partition_msdos_appli:[17,25],type__install_reboot:[17,25],type__install_reset_disk:[17,25],type__install_stag:[17,25],type__install_umount:[17,25],type__iptables_appli:[17,25,106],type__iptables_rul:[17,25,79,105],type__issu:[17,25],type__jail:[17,25],type__jail_freebsd10:[17,25],type__jail_freebsd9:[17,25],type__jail_freeebsd10:109,type__key_valu:[17,25],type__keyboard:[17,25],type__letsencrypt_cert:[17,25],type__lin:[17,25],type__link:[17,25],type__local:[17,25,117],type__locale_system:[17,25,116],type__motd:[17,25],type__mount:[17,25],type__mysql_databas:[17,25],type__nam:6,type__p:[17,25],type__packag:[17,25,122,123,124,125,126,127,128,129,130,131,132,133,134,137,138],type__package_akp:25,type__package_apk:17,type__package_apt:[17,25],type__package_dpkg:[17,25],type__package_emerg:[17,25,126],type__package_emerge_depend:[17,25,125],type__package_luarock:[17,25],type__package_opkg:[17,25],type__package_pacman:[17,25],type__package_pip:[17,25],type__package_pkg:25,type__package_pkg_freebsd:[17,25],type__package_pkg_openbsd:17,type__package_pkgng_freebsd:[17,25],type__package_rubygem:[17,25],type__package_update_index:[17,25],type__package_upgrade_al:[17,25],type__package_yum:[17,25],type__package_zypp:[17,25],type__pacman_conf:[17,25],type__pacman_conf_integr:[17,25],type__pf_appli:[17,25],type__pf_ruleset:[17,25,141],type__postfix:[17,25],type__postfix_mast:[17,25],type__postfix_postconf:[17,25],type__postfix_postmap:[17,25],type__postfix_reload:[17,25],type__postgre_databas:150,type__postgres_databas:[17,25,151],type__postgres_extens:[17,25],type__postgres_rol:[17,25,149],type__process:[17,25,168],type__prometheus_alertmanag:[17,25,155],type__prometheus_export:[17,25],type__prometheus_serv:[17,25,153,154],type__pyvenv:[17,25],type__qemu_img:[17,25],type__rbenv:[17,25],type__rsync:[17,25],type__rvm:[17,25,161,162,163],type__rvm_gem:[17,160,162,163],type__rvm_gemset:[17,25,160,163],type__rvm_rubi:[17,25,160,161,162],type__ssh_authorized_kei:[17,25,166],type__ssh_dot_ssh:[17,25],type__staged_fil:[17,25],type__start_on_boot:[17,25,152],type__sysctl:[17,25],type__systemd_unit:[17,25],type__timezon:[17,25],type__ufw:[17,25],type__ufw_rul:[17,25],type__update_altern:[17,25,67],type__update_index:135,type__us:[17,25],type__user_group:[17,25],type__yum_repo:[17,25],type__zypper_repo:[17,25],type__zypper_servic:[17,25],typeord:2,typic:[0,15],ubuntu:[11,12,14,24,33,37,38,123,124],ubuntuarchivekei:33,ufw:[172,173],ugprad:133,uid:[16,175],umount:104,unacc:150,unaffect:87,unclean:23,uncompl:172,undefin:[10,31],under:[2,9,24,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179],underlai:50,underscor:24,understand:[15,173],understood:[1,15,103],undo:[47,90],undocu:177,ungleich:[0,6,7,8,11,15,16,19,21,29,30,41,42,43,70,75,79,80,81,112,117],unhold:35,uninsta:26,uninstal:[121,124,125,170],union:2,uniqu:[5,17,51],unit:[43,56,75,157,170],unix:[5,9,16,24,27,68,77,81,93,94,156],unknown:137,unless:[11,50],unlik:76,unmount:[46,47,90],unpack:103,unpriv:145,unset:[0,10,24],unstabl:32,unsupport:[11,16],untest:26,until:[10,15,16,51],unzip:167,updat:[0,5,6,10,16,38,39,40,51,52,54,57,58,59,60,61,62,63,71,72,73,114,135,174],upgrad:[5,10,133,136],upgrade_cdist:26,upload:[51,56,77,94,95],upon:[0,10,19],upstream:[0,17],uri:[16,34,38,103,178,179],url:[0,1,52,54,137,167,178],usabl:[6,17,29],usag:[14,15,29],use:[0,1,2,3,4,6,7,8,9,10,11,13,15,16,17,20,23,26,29,30,35,38,42,51,52,54,55,69,70,76,78,79,87,96,97,107,108,109,110,111,112,113,114,116,117,121,122,123,125,127,128,129,130,131,132,133,134,135,136,137,138,142,152,155,156,159,160,161,162,163,167,169,171,173,178,179],use_ssl:24,used:[0,2,3,7,8,9,10,13,15,17,18,20,22,23,24,26,27,28,29,30,33,34,44,46,47,50,51,55,64,66,67,71,75,97,98,99,105,108,109,110,113,114,122,123,124,125,126,128,129,130,131,132,133,137,138,141,142,154,157,164,166,167,168,174,178,179],useful:[24,29,45,152,170],useless:142,user:[0,1,3,6,7,10,15,17,18,26,29,31,42,48,51,64,68,76,77,81,93,94,111,120,130,156,158,159,160,161,162,163,164,165,166,175,176],useradd:175,userdel:175,usermod:175,usernam:[42,55,177],uses:[15,27,165],using:[0,2,3,5,10,13,16,17,20,22,24,27,29,31,32,40,45,49,50,51,55,56,79,91,92,103,113,117,123,124,130,132,145,152,154,156,159,167],usr:[14,16,29,43,50,52,54,57,58,59,60,61,62,63,108,109,110,114,152,156,159,167,171,174],usual:[0,1,4,6,15,17,27,68,82,93,106,117,122,123,125,126,128,129,131,132,133,137,138,152,173,178,179],utf:[116,117],utilis:[10,27],uuid:96,uwsgi_param:16,uwsgi_pass:16,vacuum:16,valid:[3,29,55,112,153,155],valu:[0,2,3,4,8,9,10,16,17,24,26,27,29,32,46,47,55,56,69,85,111,117,119,139,146,167,169,179],van:128,vanish:[7,159],varchar:16,variabl:[0,2,3,10,11,15,16,26,29,64,108,109,110,121,135,136],variant:[123,124],variou:[0,86,174],vault:55,vdi:75,venv:16,venvparam:156,verbos:[3,8,15,17,22,24,29,30,41],verbose_info:8,verbose_trac:8,veri:[4,5,27,151],verifi:[6,51,55],verify_incom:55,versa:140,version:[0,1,6,13,19,24,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179],vfstype:119,via:[0,1,6,15,29,87,108,109,110,119,178],vice:140,view:[27,57,58,59,60,61,62,63],vim:[121,131,132,133,174],virtual:156,virtualenv:[130,156],vmware:78,vrrp:11,vvv:29,vvvv:29,wai:[2,4,6,10,11,13,16,17,18,24,27,73,76,79],wait:[29,55,56],wakeup:145,walkthrough:16,want:[0,1,6,7,9,10,11,15,16,17,24,45,96,123,125,129,131,132,133,137,138],warden:127,warn:[3,6,8,17,24,29,55,68,76,78,79,93,159,168],watch:[57,58,59,60,61,62,63],watch_foo:49,wathev:111,web1:[9,29],web2:[9,29],web3:[9,29],web:[9,16,29,52,58],webapp:54,webroot:[16,113],webserv:[10,113,123],webuser1:176,webuser2:176,well:[0,1,5,10,11,15,16,51,55,68,93,152,154,169],went:15,were:48,what:[0,5,15,20,24,26,40,47,49,51,56,77,90,94,170,173],whatev:[64,68,77,93,94,97],when:[0,1,2,6,10,11,13,14,17,18,20,22,24,27,29,34,38,46,47,51,55,57,58,59,60,61,62,63,77,98,107,113,123,124,133,152],whenev:[1,11,39],where:[0,1,9,13,18,19,24,29,56,71,72,73,74,76,77,88,91,94,96,98,103,113,119,153,155,159,167,170],wherea:24,whether:[20,41,68,73,93,108,109,110],which:[0,1,4,6,7,8,9,10,14,16,17,20,23,24,27,29,33,34,40,41,42,44,48,50,51,52,54,55,56,78,87,91,92,95,103,111,113,114,123,126,138,139,143,152,154,158,164,165,167,168,170,171,172,176,178],white:10,whitespac:[29,111],who:[1,6,15,64,76,120],whole:99,wide:[3,27,29,117,159],win:[3,24,29],window:[3,29],wish:10,within:[1,10,13,17,24,29,46,89,108,109,110],without:[0,15,20,29,51,52,54,79,106,142,159],won:1,word:[6,20,24],work:[4,6,10,16,18,24,26,27,51,55,99,121,126,143,165,178],world:[0,6,15],would:[0,9,10,11,16,17,20,23,24,77,173],wrapper:[0,97],write:[0,6,16,23,159,173],written:[5,24,29,40,49,51,56,77,94,170],wrong:[111,115],wrongsourc:115,wsgi:16,www:[0,11,16,20,34,38,51,52,54,57,58,59,60,61,62,63,108,109,110,114,115,150,151],x11:138,xdg_config_hom:[3,29],xenial:29,xenserv:12,xeru:127,xfs:[78,119],xmonad:76,xxx:78,xxxx:78,xxxxxxxxxx:24,xyz:[0,10],yearli:64,yes:[3,10,15,26,29,145],yet:[8,135],yml:[73,153,155],you:[0,1,4,6,7,9,10,11,13,14,15,16,17,18,21,23,24,26,27,29,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,164,165,166,167,168,170,172,173,174,175,176,177,178,179],your:[0,1,5,6,7,9,10,15,16,17,24,26,27,29,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,71,72,73,74,75,77,79,80,81,82,83,84,85,86,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,113,115,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,164,165,166,167,168,170,172,173,174,175,176,177,178,179],yourself:[24,111],yourusernam:6,yum:[135,136,137,177],yyyymmddhhmmss:[3,29],z12y12l12:135,zero:[4,20,24],zhao:135,zip:167,zone:79,zoneinfo:171,zsh:[7,122,123,129,131,132,133,137,138,175],zypper:[138,178,179]},titles:["24. Best practice","11. Bootstrap","26. Local cache overview","12. Configuration","16. Explorer","2. Features","29. Hacking","4. How to install cdist","22. cdist integration / using cdist as library","19. Inventory","13. Manifest","17. Messaging","3. Supported operating systems","18. Parallelization","21. PreOS","7. Quickstart","8. Dive into real world cdist","23. Reference","28. Remote exec and copy commands","27. Saving output streams","25. Execution stages","6. Support","20. Trigger","30. Troubleshooting","14. cdist type","15. cdist types","5. How to upgrade cdist","1. Why should I use cdist?","cdist - usable configuration management","9. cdist(1)","10. cdist-dump(1)","15.1. cdist-type__acl(7)","15.2. cdist-type__apt_default_release(7)","15.3. cdist-type__apt_key(7)","15.4. cdist-type__apt_key_uri(7)","15.5. cdist-type__apt_mark(7)","15.6. cdist-type__apt_norecommends(7)","15.7. cdist-type__apt_ppa(7)","15.8. cdist-type__apt_source(7)","15.9. cdist-type__apt_update_index(7)","15.10. cdist-type__block(7)","15.11. cdist-type__ccollect_source(7)","15.12. cdist-type__cdist(7)","15.13. cdist-type__cdist_preos_trigger(7)","15.14. cdist-type__cdistmarker(7)","15.15. cdist-type__check_messages(7)","15.16. cdist-type__chroot_mount(7)","15.17. cdist-type__chroot_umount(7)","15.18. cdist-type__clean_path(7)","15.19. cdist-type__config_file(7)","15.20. cdist-type__consul(7)","15.21. cdist-type__consul_agent(7)","15.22. cdist-type__consul_check(7)","15.23. cdist-type__consul_reload(7)","15.24. cdist-type__consul_service(7)","15.25. cdist-type__consul_template(7)","15.26. cdist-type__consul_template_template(7)","15.27. cdist-type__consul_watch_checks(7)","15.28. cdist-type__consul_watch_event(7)","15.29. cdist-type__consul_watch_key(7)","15.30. cdist-type__consul_watch_keyprefix(7)","15.31. cdist-type__consul_watch_nodes(7)","15.32. cdist-type__consul_watch_service(7)","15.33. cdist-type__consul_watch_services(7)","15.34. cdist-type__cron(7)","15.35. cdist-type__daemontools(7)","15.36. cdist-type__daemontools_service(7)","15.37. cdist-type__debconf_set_selections(7)","15.38. cdist-type__directory(7)","15.39. cdist-type__docker(7)","15.40. cdist-type__docker_compose(7)","15.41. cdist-type__docker_config(7)","15.42. cdist-type__docker_secret(7)","15.43. cdist-type__docker_stack(7)","15.44. cdist-type__docker_swarm(7)","15.45. cdist-type__dog_vdi(7)","15.46. cdist-type__dot_file(7)","15.47. cdist-type__file(7)","15.48. cdist-type__filesystem(7)","15.49. cdist-type__firewalld_rule(7)","15.50. cdist-type__firewalld_start(7)","15.51. cdist-type__git(7)","15.52. cdist-type__go_get(7)","15.53. cdist-type__golang_from_vendor(7)","15.54. cdist-type__grafana_dashboard(7)","15.55. cdist-type__group(7)","15.56. cdist-type__hostname(7)","15.57. cdist-type__hosts(7)","15.58. cdist-type__install_bootloader_grub(7)","15.59. cdist-type__install_chroot_mount(7)","15.60. cdist-type__install_chroot_umount(7)","15.61. cdist-type__install_config(7)","15.62. cdist-type__install_coreos(7)","15.63. cdist-type__directory(7)","15.64. cdist-type__install_file(7)","15.65. cdist-type__install_fstab(7)","15.66. cdist-type__install_generate_fstab(7)","15.67. cdist-type__install_mkfs(7)","15.68. cdist-type__install_mount(7)","15.69. cdist-type__install_partition_msdos(7)","15.70. cdist-type__install_partition_msdos_apply(7)","15.71. cdist-type__install_reboot(7)","15.72. cdist-type__install_reset_disk(7)","15.73. cdist-type__install_stage(7)","15.74. cdist-type__install_umount(7)","15.75. cdist-type__iptables_apply(7)","15.76. cdist-type__iptables_rule(7)","15.77. cdist-type__issue(7)","15.78. cdist-type__jail(7)","15.79. cdist-type__jail_freebsd10(7)","15.80. cdist-type__jail_freebsd9(7)","15.81. cdist-type__key_value(7)","15.82. cdist-type__keyboard(7)","15.83. cdist-type__letsencrypt_cert(7)","15.84. cdist-type__line(7)","15.85. cdist-type__link(7)","15.86. cdist-type__locale(7)","15.87. cdist-type__locale_system(7)","15.88. cdist-type__motd(7)","15.89. cdist-type__mount(7)","15.90. cdist-type__mysql_database(7)","15.91. cdist-type__package(7)","15.92. cdist-type__package_akp(7)","15.93. cdist-type__package_apt(7)","15.94. cdist-type__package_dpkg(7)","15.95. cdist-type__package_emerge(7)","15.96. cdist-type__package_emerge_dependencies(7)","15.97. cdist-type__package_luarocks(7)","15.98. cdist-type__package_opkg(7)","15.99. cdist-type__package_pacman(7)","15.100. cdist-type__package_pip(7)","15.101. cdist-type__package_pkg_freebsd(7)","15.102. cdist-type__package_pkg(7)","15.103. cdist-type__package_pkgng_freebsd(7)","15.104. cdist-type__package_rubygem(7)","15.105. cdist-type__package_update_index(7)","15.106. cdist-type__package_upgrade_all(7)","15.107. cdist-type__package_yum(7)","15.108. cdist-type__package_zypper(7)","15.109. cdist-type__pacman_conf(7)","15.110. cdist-type__pacman_conf_integrate(7)","15.111. cdist-type__pf_apply(7)","15.112. cdist-type__pf_ruleset(7)","15.113. cdist-type__ping(7)","15.114. cdist-type__postfix(7)","15.115. cdist-type__postfix_master(7)","15.116. cdist-type__postfix_postconf(7)","15.117. cdist-type__postfix_postmap(7)","15.118. cdist-type__postfix_reload(7)","15.119. cdist-type__postgres_database(7)","15.120. cdist-type__postgres_extension(7)","15.121. cdist-type__postgres_role(7)","15.122. cdist-type__process(7)","15.123. cdist-type__prometheus_alertmanager(7)","15.124. cdist-type__prometheus_exporter(7)","15.125. cdist-type__prometheus_server(7)","15.126. cdist-type__pyvenv(7)","15.127. cdist-type__qemu_img(7)","15.128. cdist-type__rbenv(7)","15.129. cdist-type__rsync(7)","15.130. cdist-type__rvm(7)","15.131. cdist-type__rvm_gemset(7)","15.132. cdist-type__rvm_gemset(7)","15.133. cdist-type__rvm_ruby(7)","15.134. cdist-type__ssh_authorized_key(7)","15.135. cdist-type__ssh_authorized_keys(7)","15.136. cdist-type__ssh_dot_ssh(7)","15.137. cdist-type__staged_file(7)","15.138. cdist-type__start_on_boot(7)","15.139. cdist-type__sysctl(7)","15.140. cdist-type__systemd_unit(7)","15.141. cdist-type__timezone(7)","15.142. cdist-type__ufw(7)","15.143. cdist-type__ufw_rule(7)","15.144. cdist-type__update_alternatives(7)","15.145. cdist-type__user(7)","15.146. cdist-type__user_groups(7)","15.147. cdist-type__yum_repo(7)","15.148. cdist-type__zypper_repo(7)","15.149. cdist-type__zypper_service(7)"],titleterms:{"":16,"boolean":[31,38,41,46,47,50,51,55,62,65,66,68,69,70,78,85,93,96,103,108,109,110,111,113,114,119,123,124,133,136,145,151,153,154,155,162,163,165,170,175,177,179],"case":14,"class":14,"new":[0,6,14,24,26],The:24,Using:[9,23,24],__sample_bottle_host:16,__sample_nginx_http_letsencrypt_and_ssl_redirect:16,access:24,add:29,also:[30,41,47,49,51,52,54,55,56,57,58,59,60,61,62,63,64,65,66,67,75,76,79,80,87,90,95,97,98,100,105,106,108,109,110,114,116,117,122,123,124,125,126,127,128,129,130,131,132,133,134,137,138,139,140,141,142,145,146,149,150,151,152,153,154,155,157,159,160,161,162,163,164,165,166,167,168,172,173,174,175],applic:16,author:[29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179],avail:[7,11],banner:29,base:[14,27],best:0,bootstrap:1,bottl:16,branch:1,bug:6,build:7,cach:[2,20,29],can:24,caus:0,caveat:[13,29,71,72,108,109,110,133],cdist:[0,6,7,8,9,16,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179],cdist_order_depend:0,certif:16,chat:21,code:[6,20],command:[14,18,24],commerci:21,complet:16,config:[3,24,29],configur:[0,1,3,9,16,27,28,29],connect:0,consid:23,content:0,convent:6,copi:[18,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179],creat:[10,16],creation:[14,16],cycl:0,databas:[9,16],debian:29,debug:23,defin:[10,24],del:29,depend:[0,10,27],descript:[2,3,4,8,9,10,11,13,14,19,20,22,24,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179],develop:0,devuan:29,differ:0,directori:[1,16],distribut:27,dive:16,document:7,dummi:14,dump:[23,30],easili:0,encrypt:16,environ:[0,17,24,29],error:23,everywher:6,exampl:[4,6,8,9,10,11,13,14,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179],exec:18,execut:[0,10,20],exit:29,explor:[4,17,24,124],extern:9,featur:5,file:[3,29],format:[3,29],from:[1,7,10,24,26],gencod:[16,24],gener:[20,24,26,29],git:[6,7,26],group:0,hack:6,helper:23,highli:27,hint:24,host:[7,9,16,29],hostfil:29,how:[6,7,24,26],html:7,http:16,idiom:24,implement:14,includ:24,inclus:6,inform:[20,111],init:16,initi:[10,20],input:24,instal:[7,16,24,26,29],instanc:24,instruct:26,integr:8,interfac:9,introduct:[9,16],inventori:[9,29],kill:0,known:27,languag:27,layout:16,let:16,level:24,librari:8,linkedin:21,list:[16,21,29],local:2,locat:1,log:24,mail:21,maintain:0,man:7,manag:[27,28],manifest:[10,16,20,23,24],manipul:9,master:0,messag:[11,40,50,68,76,77,78,85,86,93,94,108,109,110,111,113,114,115,124,133,135,152,159,164,170,175],modul:14,more:[27,111],multi:0,multipl:[0,31,41,113,159],name:[29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179],next:16,nginx:16,nonparallel:24,note:29,object:[2,17,20],one:24,onli:24,open:16,oper:12,option:[30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,161,164,165,166,167,168,170,171,172,173,175,176,177,178,179],order:10,origin:1,other:0,output:19,overrid:10,overview:2,packag:[7,16,26],parallel:[0,13],paramet:[16,24,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179],passwordless:0,path:[17,29],pattern:29,peril:0,postgresql:16,power:27,practic:0,preo:[14,29],prepar:16,publish:1,push:27,python:[7,16,26],quickstart:15,read:17,real:16,redirect:16,refer:17,remot:[16,18],report:6,repositori:0,requir:[7,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,76,77,78,79,80,81,82,83,84,85,86,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,153,154,155,156,159,160,161,162,163,164,165,167,168,169,170,171,174,175,176,177,178,179],retriev:20,run:[20,24],safe:26,save:19,scalabl:27,script:[23,24,27],see:[30,41,47,49,51,52,54,55,56,57,58,59,60,61,62,63,64,65,66,67,75,76,79,80,87,90,95,97,98,100,105,106,108,109,110,114,116,117,122,123,124,125,126,127,128,129,130,131,132,133,134,137,138,139,140,141,142,145,146,149,150,151,152,153,154,155,157,159,160,161,162,163,164,165,166,167,168,172,173,174,175],separ:0,server:16,setup:[0,1],shell:[0,27,29],should:27,simpl:14,singleton:24,sourc:7,speed:0,split:10,ssh:0,stage:20,state:10,statu:29,stdin:24,stream:19,stuff:6,sub:14,submit:6,summari:20,support:[12,21],synopsi:[24,29,30],system:12,tag:29,target:[7,20],templat:0,test:0,than:27,time:24,tipic:14,trigger:[14,22,29],troubleshoot:23,trust:0,type:[0,6,10,16,17,24,25],type__acl:31,type__apt_default_releas:32,type__apt_kei:33,type__apt_key_uri:34,type__apt_mark:35,type__apt_norecommend:36,type__apt_ppa:37,type__apt_sourc:38,type__apt_update_index:39,type__block:40,type__ccollect_sourc:41,type__cdist:42,type__cdist_preos_trigg:43,type__cdistmark:44,type__check_messag:45,type__chroot_mount:46,type__chroot_umount:47,type__clean_path:48,type__config_fil:49,type__consul:50,type__consul_ag:51,type__consul_check:52,type__consul_reload:53,type__consul_servic:54,type__consul_templ:55,type__consul_template_templ:56,type__consul_watch_check:57,type__consul_watch_ev:58,type__consul_watch_kei:59,type__consul_watch_keyprefix:60,type__consul_watch_nod:61,type__consul_watch_servic:[62,63],type__cron:64,type__daemontool:65,type__daemontools_servic:66,type__debconf_set_select:67,type__directori:[68,93],type__dock:69,type__docker_compos:70,type__docker_config:71,type__docker_secret:72,type__docker_stack:73,type__docker_swarm:74,type__dog_vdi:75,type__dot_fil:76,type__fil:77,type__filesystem:78,type__firewalld_rul:79,type__firewalld_start:80,type__git:81,type__go_get:82,type__golang_from_vendor:83,type__grafana_dashboard:84,type__group:85,type__host:87,type__hostnam:86,type__install_bootloader_grub:88,type__install_chroot_mount:89,type__install_chroot_umount:90,type__install_config:91,type__install_coreo:92,type__install_fil:94,type__install_fstab:95,type__install_generate_fstab:96,type__install_mkf:97,type__install_mount:98,type__install_partition_msdo:99,type__install_partition_msdos_appli:100,type__install_reboot:101,type__install_reset_disk:102,type__install_stag:103,type__install_umount:104,type__iptables_appli:105,type__iptables_rul:106,type__issu:107,type__jail:108,type__jail_freebsd10:109,type__jail_freebsd9:110,type__key_valu:111,type__keyboard:112,type__letsencrypt_cert:113,type__lin:114,type__link:115,type__local:116,type__locale_system:117,type__motd:118,type__mount:119,type__mysql_databas:120,type__p:143,type__packag:121,type__package_akp:122,type__package_apt:123,type__package_dpkg:124,type__package_emerg:125,type__package_emerge_depend:126,type__package_luarock:127,type__package_opkg:128,type__package_pacman:129,type__package_pip:130,type__package_pkg:132,type__package_pkg_freebsd:131,type__package_pkgng_freebsd:133,type__package_rubygem:134,type__package_update_index:135,type__package_upgrade_al:136,type__package_yum:137,type__package_zypp:138,type__pacman_conf:139,type__pacman_conf_integr:140,type__pf_appli:141,type__pf_ruleset:142,type__postfix:144,type__postfix_mast:145,type__postfix_postconf:146,type__postfix_postmap:147,type__postfix_reload:148,type__postgres_databas:149,type__postgres_extens:150,type__postgres_rol:151,type__process:152,type__prometheus_alertmanag:153,type__prometheus_export:154,type__prometheus_serv:155,type__pyvenv:156,type__qemu_img:157,type__rbenv:158,type__rsync:159,type__rvm:160,type__rvm_gemset:[161,162],type__rvm_rubi:163,type__ssh_authorized_kei:[164,165],type__ssh_dot_ssh:166,type__staged_fil:167,type__start_on_boot:168,type__sysctl:169,type__systemd_unit:170,type__timezon:171,type__ufw:172,type__ufw_rul:173,type__update_altern:174,type__us:175,type__user_group:176,type__yum_repo:177,type__zypper_repo:178,type__zypper_servic:179,typewrit:24,ubuntu:29,unobvi:0,updat:[1,26],upgrad:26,upstream:[6,16,24],usabl:28,usag:24,use:[14,24,27],user:16,using:[7,8,9,14],uwsgi:16,variabl:[17,24],version:[7,26],welcom:6,what:16,why:27,work:[0,1],workflow:6,world:16,write:[14,17,24],zero:27}}) \ No newline at end of file +Search.setIndex({docnames:["cdist-best-practice","cdist-bootstrap","cdist-cache","cdist-configuration","cdist-explorer","cdist-features","cdist-hacker","cdist-install","cdist-integration","cdist-inventory","cdist-manifest","cdist-messaging","cdist-os","cdist-parallelization","cdist-preos","cdist-quickstart","cdist-real-world","cdist-reference","cdist-remote-exec-copy","cdist-saving-output-streams","cdist-stages","cdist-support","cdist-trigger","cdist-troubleshooting","cdist-type","cdist-types","cdist-upgrade","cdist-why","index","man1/cdist","man1/cdist-dump","man7/cdist-type__acl","man7/cdist-type__apt_default_release","man7/cdist-type__apt_key","man7/cdist-type__apt_key_uri","man7/cdist-type__apt_mark","man7/cdist-type__apt_norecommends","man7/cdist-type__apt_ppa","man7/cdist-type__apt_source","man7/cdist-type__apt_update_index","man7/cdist-type__block","man7/cdist-type__ccollect_source","man7/cdist-type__cdist","man7/cdist-type__cdist_preos_trigger","man7/cdist-type__cdistmarker","man7/cdist-type__check_messages","man7/cdist-type__chroot_mount","man7/cdist-type__chroot_umount","man7/cdist-type__clean_path","man7/cdist-type__config_file","man7/cdist-type__consul","man7/cdist-type__consul_agent","man7/cdist-type__consul_check","man7/cdist-type__consul_reload","man7/cdist-type__consul_service","man7/cdist-type__consul_template","man7/cdist-type__consul_template_template","man7/cdist-type__consul_watch_checks","man7/cdist-type__consul_watch_event","man7/cdist-type__consul_watch_key","man7/cdist-type__consul_watch_keyprefix","man7/cdist-type__consul_watch_nodes","man7/cdist-type__consul_watch_service","man7/cdist-type__consul_watch_services","man7/cdist-type__cron","man7/cdist-type__daemontools","man7/cdist-type__daemontools_service","man7/cdist-type__debconf_set_selections","man7/cdist-type__directory","man7/cdist-type__docker","man7/cdist-type__docker_compose","man7/cdist-type__docker_config","man7/cdist-type__docker_secret","man7/cdist-type__docker_stack","man7/cdist-type__docker_swarm","man7/cdist-type__dog_vdi","man7/cdist-type__dot_file","man7/cdist-type__file","man7/cdist-type__filesystem","man7/cdist-type__firewalld_rule","man7/cdist-type__firewalld_start","man7/cdist-type__git","man7/cdist-type__go_get","man7/cdist-type__golang_from_vendor","man7/cdist-type__grafana_dashboard","man7/cdist-type__group","man7/cdist-type__hostname","man7/cdist-type__hosts","man7/cdist-type__install_bootloader_grub","man7/cdist-type__install_chroot_mount","man7/cdist-type__install_chroot_umount","man7/cdist-type__install_config","man7/cdist-type__install_coreos","man7/cdist-type__install_directory","man7/cdist-type__install_file","man7/cdist-type__install_fstab","man7/cdist-type__install_generate_fstab","man7/cdist-type__install_mkfs","man7/cdist-type__install_mount","man7/cdist-type__install_partition_msdos","man7/cdist-type__install_partition_msdos_apply","man7/cdist-type__install_reboot","man7/cdist-type__install_reset_disk","man7/cdist-type__install_stage","man7/cdist-type__install_umount","man7/cdist-type__iptables_apply","man7/cdist-type__iptables_rule","man7/cdist-type__issue","man7/cdist-type__jail","man7/cdist-type__jail_freebsd10","man7/cdist-type__jail_freebsd9","man7/cdist-type__key_value","man7/cdist-type__keyboard","man7/cdist-type__letsencrypt_cert","man7/cdist-type__line","man7/cdist-type__link","man7/cdist-type__locale","man7/cdist-type__locale_system","man7/cdist-type__motd","man7/cdist-type__mount","man7/cdist-type__mysql_database","man7/cdist-type__package","man7/cdist-type__package_apk","man7/cdist-type__package_apt","man7/cdist-type__package_dpkg","man7/cdist-type__package_emerge","man7/cdist-type__package_emerge_dependencies","man7/cdist-type__package_luarocks","man7/cdist-type__package_opkg","man7/cdist-type__package_pacman","man7/cdist-type__package_pip","man7/cdist-type__package_pkg_freebsd","man7/cdist-type__package_pkg_openbsd","man7/cdist-type__package_pkgng_freebsd","man7/cdist-type__package_rubygem","man7/cdist-type__package_update_index","man7/cdist-type__package_upgrade_all","man7/cdist-type__package_yum","man7/cdist-type__package_zypper","man7/cdist-type__pacman_conf","man7/cdist-type__pacman_conf_integrate","man7/cdist-type__pf_apply","man7/cdist-type__pf_ruleset","man7/cdist-type__ping","man7/cdist-type__postfix","man7/cdist-type__postfix_master","man7/cdist-type__postfix_postconf","man7/cdist-type__postfix_postmap","man7/cdist-type__postfix_reload","man7/cdist-type__postgres_database","man7/cdist-type__postgres_extension","man7/cdist-type__postgres_role","man7/cdist-type__process","man7/cdist-type__prometheus_alertmanager","man7/cdist-type__prometheus_exporter","man7/cdist-type__prometheus_server","man7/cdist-type__pyvenv","man7/cdist-type__qemu_img","man7/cdist-type__rbenv","man7/cdist-type__rsync","man7/cdist-type__rvm","man7/cdist-type__rvm_gem","man7/cdist-type__rvm_gemset","man7/cdist-type__rvm_ruby","man7/cdist-type__ssh_authorized_key","man7/cdist-type__ssh_authorized_keys","man7/cdist-type__ssh_dot_ssh","man7/cdist-type__staged_file","man7/cdist-type__start_on_boot","man7/cdist-type__sysctl","man7/cdist-type__systemd_unit","man7/cdist-type__timezone","man7/cdist-type__ufw","man7/cdist-type__ufw_rule","man7/cdist-type__update_alternatives","man7/cdist-type__user","man7/cdist-type__user_groups","man7/cdist-type__yum_repo","man7/cdist-type__zypper_repo","man7/cdist-type__zypper_service"],envversion:{"sphinx.domains.c":1,"sphinx.domains.changeset":1,"sphinx.domains.cpp":1,"sphinx.domains.javascript":1,"sphinx.domains.math":1,"sphinx.domains.python":1,"sphinx.domains.rst":1,"sphinx.domains.std":1,sphinx:55},filenames:["cdist-best-practice.rst","cdist-bootstrap.rst","cdist-cache.rst","cdist-configuration.rst","cdist-explorer.rst","cdist-features.rst","cdist-hacker.rst","cdist-install.rst","cdist-integration.rst","cdist-inventory.rst","cdist-manifest.rst","cdist-messaging.rst","cdist-os.rst","cdist-parallelization.rst","cdist-preos.rst","cdist-quickstart.rst","cdist-real-world.rst","cdist-reference.rst","cdist-remote-exec-copy.rst","cdist-saving-output-streams.rst","cdist-stages.rst","cdist-support.rst","cdist-trigger.rst","cdist-troubleshooting.rst","cdist-type.rst","cdist-types.rst","cdist-upgrade.rst","cdist-why.rst","index.rst","man1/cdist.rst","man1/cdist-dump.rst","man7/cdist-type__acl.rst","man7/cdist-type__apt_default_release.rst","man7/cdist-type__apt_key.rst","man7/cdist-type__apt_key_uri.rst","man7/cdist-type__apt_mark.rst","man7/cdist-type__apt_norecommends.rst","man7/cdist-type__apt_ppa.rst","man7/cdist-type__apt_source.rst","man7/cdist-type__apt_update_index.rst","man7/cdist-type__block.rst","man7/cdist-type__ccollect_source.rst","man7/cdist-type__cdist.rst","man7/cdist-type__cdist_preos_trigger.rst","man7/cdist-type__cdistmarker.rst","man7/cdist-type__check_messages.rst","man7/cdist-type__chroot_mount.rst","man7/cdist-type__chroot_umount.rst","man7/cdist-type__clean_path.rst","man7/cdist-type__config_file.rst","man7/cdist-type__consul.rst","man7/cdist-type__consul_agent.rst","man7/cdist-type__consul_check.rst","man7/cdist-type__consul_reload.rst","man7/cdist-type__consul_service.rst","man7/cdist-type__consul_template.rst","man7/cdist-type__consul_template_template.rst","man7/cdist-type__consul_watch_checks.rst","man7/cdist-type__consul_watch_event.rst","man7/cdist-type__consul_watch_key.rst","man7/cdist-type__consul_watch_keyprefix.rst","man7/cdist-type__consul_watch_nodes.rst","man7/cdist-type__consul_watch_service.rst","man7/cdist-type__consul_watch_services.rst","man7/cdist-type__cron.rst","man7/cdist-type__daemontools.rst","man7/cdist-type__daemontools_service.rst","man7/cdist-type__debconf_set_selections.rst","man7/cdist-type__directory.rst","man7/cdist-type__docker.rst","man7/cdist-type__docker_compose.rst","man7/cdist-type__docker_config.rst","man7/cdist-type__docker_secret.rst","man7/cdist-type__docker_stack.rst","man7/cdist-type__docker_swarm.rst","man7/cdist-type__dog_vdi.rst","man7/cdist-type__dot_file.rst","man7/cdist-type__file.rst","man7/cdist-type__filesystem.rst","man7/cdist-type__firewalld_rule.rst","man7/cdist-type__firewalld_start.rst","man7/cdist-type__git.rst","man7/cdist-type__go_get.rst","man7/cdist-type__golang_from_vendor.rst","man7/cdist-type__grafana_dashboard.rst","man7/cdist-type__group.rst","man7/cdist-type__hostname.rst","man7/cdist-type__hosts.rst","man7/cdist-type__install_bootloader_grub.rst","man7/cdist-type__install_chroot_mount.rst","man7/cdist-type__install_chroot_umount.rst","man7/cdist-type__install_config.rst","man7/cdist-type__install_coreos.rst","man7/cdist-type__install_directory.rst","man7/cdist-type__install_file.rst","man7/cdist-type__install_fstab.rst","man7/cdist-type__install_generate_fstab.rst","man7/cdist-type__install_mkfs.rst","man7/cdist-type__install_mount.rst","man7/cdist-type__install_partition_msdos.rst","man7/cdist-type__install_partition_msdos_apply.rst","man7/cdist-type__install_reboot.rst","man7/cdist-type__install_reset_disk.rst","man7/cdist-type__install_stage.rst","man7/cdist-type__install_umount.rst","man7/cdist-type__iptables_apply.rst","man7/cdist-type__iptables_rule.rst","man7/cdist-type__issue.rst","man7/cdist-type__jail.rst","man7/cdist-type__jail_freebsd10.rst","man7/cdist-type__jail_freebsd9.rst","man7/cdist-type__key_value.rst","man7/cdist-type__keyboard.rst","man7/cdist-type__letsencrypt_cert.rst","man7/cdist-type__line.rst","man7/cdist-type__link.rst","man7/cdist-type__locale.rst","man7/cdist-type__locale_system.rst","man7/cdist-type__motd.rst","man7/cdist-type__mount.rst","man7/cdist-type__mysql_database.rst","man7/cdist-type__package.rst","man7/cdist-type__package_apk.rst","man7/cdist-type__package_apt.rst","man7/cdist-type__package_dpkg.rst","man7/cdist-type__package_emerge.rst","man7/cdist-type__package_emerge_dependencies.rst","man7/cdist-type__package_luarocks.rst","man7/cdist-type__package_opkg.rst","man7/cdist-type__package_pacman.rst","man7/cdist-type__package_pip.rst","man7/cdist-type__package_pkg_freebsd.rst","man7/cdist-type__package_pkg_openbsd.rst","man7/cdist-type__package_pkgng_freebsd.rst","man7/cdist-type__package_rubygem.rst","man7/cdist-type__package_update_index.rst","man7/cdist-type__package_upgrade_all.rst","man7/cdist-type__package_yum.rst","man7/cdist-type__package_zypper.rst","man7/cdist-type__pacman_conf.rst","man7/cdist-type__pacman_conf_integrate.rst","man7/cdist-type__pf_apply.rst","man7/cdist-type__pf_ruleset.rst","man7/cdist-type__ping.rst","man7/cdist-type__postfix.rst","man7/cdist-type__postfix_master.rst","man7/cdist-type__postfix_postconf.rst","man7/cdist-type__postfix_postmap.rst","man7/cdist-type__postfix_reload.rst","man7/cdist-type__postgres_database.rst","man7/cdist-type__postgres_extension.rst","man7/cdist-type__postgres_role.rst","man7/cdist-type__process.rst","man7/cdist-type__prometheus_alertmanager.rst","man7/cdist-type__prometheus_exporter.rst","man7/cdist-type__prometheus_server.rst","man7/cdist-type__pyvenv.rst","man7/cdist-type__qemu_img.rst","man7/cdist-type__rbenv.rst","man7/cdist-type__rsync.rst","man7/cdist-type__rvm.rst","man7/cdist-type__rvm_gem.rst","man7/cdist-type__rvm_gemset.rst","man7/cdist-type__rvm_ruby.rst","man7/cdist-type__ssh_authorized_key.rst","man7/cdist-type__ssh_authorized_keys.rst","man7/cdist-type__ssh_dot_ssh.rst","man7/cdist-type__staged_file.rst","man7/cdist-type__start_on_boot.rst","man7/cdist-type__sysctl.rst","man7/cdist-type__systemd_unit.rst","man7/cdist-type__timezone.rst","man7/cdist-type__ufw.rst","man7/cdist-type__ufw_rule.rst","man7/cdist-type__update_alternatives.rst","man7/cdist-type__user.rst","man7/cdist-type__user_groups.rst","man7/cdist-type__yum_repo.rst","man7/cdist-type__zypper_repo.rst","man7/cdist-type__zypper_service.rst"],objects:{},objnames:{},objtypes:{},terms:{"":[0,1,2,3,4,5,7,9,10,13,14,15,17,19,24,26,29,39,44,48,51,57,58,59,60,61,62,63,64,76,78,79,86,108,109,110,113,114,138,141,142,165,167],"0608b895":177,"100g":99,"100gb":99,"10g":99,"10gb":99,"10s":[52,54],"128m":99,"128mb":99,"15g":99,"1_all":124,"1_linux_amd64":167,"256m":16,"30s":[52,55],"32m":99,"360060e80432f560050202f22000023ff":78,"437d05b5":33,"4_amd64":124,"50g":[75,157],"512m":99,"512mb":99,"759547ff4356de6e3d9e08522b0d0807":29,"75ee6a79e32da093da23fe4a13dd104b":19,"\u013eubom\u00edr":[71,72,73,74,92,113,170],"boolean":[3,17,24,26,29],"br\u00f6nnimann":132,"break":[1,6,26],"case":[4,8,10,11,13,16,19,24,27,29,77,94,123,142,178],"class":24,"default":[0,3,8,10,13,14,17,18,19,22,24,26,29,30,31,32,33,34,37,38,40,41,42,43,44,50,51,52,54,55,56,57,58,59,60,61,62,63,64,65,66,68,69,70,71,72,73,74,75,76,77,78,79,80,81,83,85,86,88,91,92,93,94,95,97,98,99,103,104,106,107,108,109,110,111,113,114,115,116,117,118,119,120,121,122,123,124,125,127,128,129,130,131,132,133,134,135,136,137,138,139,140,142,145,146,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,170,172,173,174,175,176,177,178,179],"export":[0,7,10,11,15,17,26,154],"final":[16,167],"function":[3,6,8,9,14,17,24,29,114],"import":[0,8,16,19],"jim\u00e9nez":[135,136],"ku\u010dera":[71,72,73,74,92,113,170],"long":[10,52,54,153,155],"new":[1,4,9,11,16,20,27,30,51,55,56,76,78,85,111,139,170,175,179],"null":[4,24,49],"public":[0,6,7,15,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179],"return":[4,16,19,22,24,29,55,124,143],"salvad\u00f3":171,"short":[24,173],"sou\u010dkov\u00e1":[65,66,82,83,84,113,153,154,155],"static":[9,24,29,86,150,151,177],"switch":[1,137],"true":[3,14,16,24,29,49,51,99,108,109,110,173],"try":[8,14,16,20,22,24,26,29,51,111,143],"var":[0,9,16,29,119,139,167],"while":[2,4,17,18,27,55],AND:6,Added:111,And:[0,10,16,23],But:[1,5,10,23],DNS:[16,22,29],For:[0,1,2,3,6,8,9,13,14,15,16,17,18,19,20,22,23,24,29,45,74,78,138,170,177,179],Its:[16,17,29],NOT:[42,152],Not:27,ONE:152,One:[13,17,24,29,66,77,174],RIS:179,TLS:51,That:[2,3,15,27],The:[0,1,3,4,6,7,9,10,11,13,14,17,18,20,23,26,29,32,37,40,41,44,48,51,52,54,55,56,64,66,69,75,77,78,79,82,83,86,88,94,95,96,97,103,106,108,109,110,111,113,114,115,117,120,121,123,124,133,135,136,138,139,140,150,152,157,161,162,163,164,165,167,169,170,172,173],Their:24,Then:[0,7,16,29],There:[1,4,5,6,8,9,16,19,24,27,56],These:[10,24,29],USE:152,Use:[0,3,6,17,26,29,42,46,47,52,54,67,77,94,108,109,110,118,130,156,159,174],Used:[17,29],Useful:[29,55,153,155],Uses:[5,95],Using:16,Will:[153,155,172],With:[0,9,14,18,24],__a:29,__acl:[17,31],__addifnosuchlin:26,__apach:20,__apt_default_releas:[17,32],__apt_kei:[17,33],__apt_key_uri:[17,34],__apt_mark:[17,35],__apt_norecommend:[17,36],__apt_ppa:[17,37],__apt_sourc:[17,38],__apt_update_index:[16,17,39],__archlinux_hostnam:24,__autof:26,__autofs_map:26,__autofs_reload:26,__b:29,__block:[11,17,40],__c:29,__ccollect_sourc:[17,41],__cdist:[17,42],__cdist_log_level:[17,24],__cdist_log_level_nam:17,__cdist_preos_trigg:[17,29,43],__cdistmark:[10,17,44],__check_messag:[17,45],__chroot_mount:[17,46,47],__chroot_umount:[17,46,47],__clean_path:[17,48],__config_fil:[17,49],__consul:[17,50],__consul_ag:[17,51],__consul_check:[17,52],__consul_reload:[17,53],__consul_servic:[17,54],__consul_templ:[17,55],__consul_template_templ:[17,56],__consul_watch_check:[17,57],__consul_watch_ev:[17,58],__consul_watch_kei:[17,59],__consul_watch_keyprefix:[17,60],__consul_watch_nod:[17,61],__consul_watch_servic:[17,62,63],__cron:[17,64],__d:29,__daemontool:[17,65,66,154],__daemontools_servic:[17,66],__debconf_set_select:[17,26,67],__directori:[10,16,17,26,68,93],__docker:[17,69],__docker_compos:[17,70],__docker_config:[17,71],__docker_secret:[17,72],__docker_stack:[17,73],__docker_swarm:[17,74],__dog_vdi:[17,75],__dot_fil:[17,76],__dummy_config:24,__e:29,__example_typ:10,__explor:[4,17],__f:29,__file:[0,10,11,13,15,16,17,20,24,26,50,55,56,76,77,94,133,167],__file__:[16,24],__file_pi:24,__filesystem:[17,78],__firewalld_rul:[17,79],__firewalld_start:[17,80],__g:29,__git:[17,29,81],__global:[11,16,17,24,51],__go_get:[17,82],__golang_from_vendor:[17,82,83,154],__grafana_dashboard:[17,84],__group:[17,85],__h:29,__host:[17,87],__hostnam:[17,86],__init__:24,__install_bootloader_grub:[17,88],__install_chroot_mount:[17,89,90],__install_chroot_umount:[17,90],__install_config:[17,91],__install_coreo:[17,92],__install_directori:17,__install_fil:[17,94],__install_fstab:[17,95],__install_generate_fstab:[17,95,96],__install_mkf:[17,97,98],__install_mount:[17,96,98],__install_nam:24,__install_partition_msdo:[17,99,100],__install_partition_msdos_appli:[17,100],__install_reboot:[17,101],__install_reset_disk:[17,102],__install_stag:[17,103],__install_umount:[17,104],__iptables_appli:[17,105],__iptables_rul:[17,105,106],__issu:[17,24,107],__jail:[17,108],__jail_freebsd10:[17,109],__jail_freebsd9:[17,110],__key_valu:[11,17,111],__keyboard:[17,112],__letsencrypt_cert:[16,17,113],__line:[17,26,114],__link:[10,17,26,115],__local:[17,116],__locale_system:[17,117],__main__:16,__manifest:[0,10,17,23,56,142,153,155,170],__messages_in:[11,17],__messages_out:[11,17],__motd:[17,118],__mount:[17,119],__myfancysingleton:24,__mylin:19,__mysql_databas:[17,120],__name:24,__name__:16,__nginx_vhost:24,__not_in_order_typ:10,__object:[0,4,16,17,24],__object_id:[4,16,17,24,33,34,40,48,52,54,76,119,146,154,177],__object_nam:[17,26],__packag:[0,10,16,17,24,26,121,137],__package_:24,__package_apk:[17,122],__package_apt:[17,26,121,123,124],__package_dpkg:[17,24,124],__package_emerg:[17,121,125,126],__package_emerge_depend:[17,126],__package_luarock:[17,127],__package_opkg:[17,128],__package_pacman:[17,129],__package_pip:[16,17,130],__package_pkg_freebsd:[17,131],__package_pkg_openbsd:[17,132],__package_pkgng_freebsd:[17,133],__package_rubygem:[17,134],__package_update_index:[10,17,135],__package_upgrade_al:[10,17,136],__package_yum:[17,137],__package_zypp:[17,138],__pacman_conf:[17,139],__pacman_conf_integr:[17,140],__pf_appli:[17,141],__pf_ruleset:[17,141,142],__ping:[17,143],__postfix:[17,144],__postfix_mast:[17,145],__postfix_postconf:[17,146],__postfix_postmap:[17,147],__postfix_reload:[17,148],__postgres_databas:[16,17,149],__postgres_extens:[17,150],__postgres_rol:[16,17,151],__process:[17,26,152],__prometheus_alertmanag:[17,153],__prometheus_export:[17,154],__prometheus_serv:[17,155],__pyvenv:[17,156],__qemu_img:[17,157],__rbenv:[17,158],__remote_:91,__remote_copi:[18,24],__remote_exec:[18,24],__removelin:26,__rsync:[17,159],__rvm:[17,160],__rvm_gem:17,__rvm_gemset:[17,26,161,162],__rvm_rubi:[17,26,161,162,163],__sample_typ:10,__self:26,__singleton_typ:26,__some_type_somewher:10,__ssh_authorized_kei:[17,26,29,164,165,166],__ssh_dot_ssh:[17,165,166],__staged_fil:[17,50,167],__start_on_boot:[17,168],__sysctl:[17,169],__systemd_unit:[17,170],__target_fqdn:[10,17],__target_host:[10,16,17,24,86,141,142],__target_host_tag:17,__target_hostnam:[10,17],__timezon:[17,171],__type:[0,10,17,24,49,67,77,94,107,118,124,159],__type_explor:[4,17],__ufw:[17,172],__ufw_rul:[17,173],__ungleich_munin_nod:0,__ungleich_munin_serv:0,__update_altern:[17,174],__user:[10,16,17,26,175],__user_group:[17,26,176],__your_typ:11,__yourtyp:24,__yum_repo:[17,177],__zypper_repo:[17,178],__zypper_servic:[17,179],_bottl:16,_cdist_preo:14,_ip:[108,110],_manag:49,_netdev:119,_preos_nam:14,abl:[15,24],abort:[4,10,23],about:[1,6,9,10,14,17,19,20,24,45,74,76,170],abov:[2,3,6,10,14,15,22,23,85,116,117,135,165,175],absent:[10,26,33,34,37,38,40,41,50,51,52,54,55,56,57,58,59,60,61,62,63,64,68,69,70,71,72,73,74,75,77,79,80,81,85,87,93,94,106,108,109,110,111,113,114,115,116,117,119,121,122,123,124,125,127,128,129,130,131,132,133,134,137,138,139,140,141,142,145,149,150,151,152,156,157,158,160,161,162,163,164,165,166,168,170,172,173,175,176,177,178,179],absolut:115,accept:[6,10,14,17,22,26,29,78,79,106],access:[1,7,10,14,16,17,27,29,51,79,120],access_log:[0,16],accid:11,accomplish:18,accord:17,account:[10,18,21,161,162,163,175],acl:[31,51,52,57,58,59,60,61,62,63],acl_datacent:51,acm:16,across:0,act:[4,17,111],action:72,activ:[7,16,141],actual:[14,16,121],add:[0,1,6,7,9,10,15,27,31,33,34,40,44,54,65,76,84,85,87,108,109,110,114,116,132,139,145,154,165,166,173,175,176],added:[10,26,29,40,64,66,85,108,109,110,114,164,165,175,176],adding:[10,173,179],addit:[0,6,17,27,29,55,78,111],addition:1,addr:51,address:[18,22,24,29,51,55,87,108,109,110],adher:28,adjust:0,admin:[16,17,113,151],administr:13,advantag:[7,170],affect:10,after:[0,2,10,11,14,16,17,24,26,29,40,51,52,53,56,99,114,145,173],afterward:[10,29],again:[6,24,113],against:[44,91,139],age:135,agent:[15,27,51,52,54,57,58,59,60,61,62,63,165],aim:[4,8,15],akp:122,alert:153,alertmanag:153,alertport:155,alia:24,alic:[31,76],alik:[67,174],all:[0,1,2,3,6,8,9,10,11,14,15,17,19,20,23,24,26,27,29,30,55,62,64,68,76,93,99,102,114,136,138,142,151,164,165,173,177,178,179],allen:134,allow:[0,1,11,15,16,17,24,29,37,38,41,42,51,64,68,77,78,79,80,81,82,83,85,88,91,93,94,99,101,104,106,107,111,112,114,115,116,117,118,120,121,123,133,135,136,139,140,149,150,151,152,156,158,159,165,168,171,172,173,175],almost:[4,27,142],along:29,alpin:[12,116,122],alreadi:[6,10,13,26,29,34,72,76,77,94,133,156],also:[0,1,3,4,7,8,10,13,14,15,16,17,19,24,26,27,29,158,178],altern:[1,42,55,108,109,110,145,165,174],although:23,alwai:[6,10,15,17,24,27,129,131,132,133,137,138,178],ambigu:[131,132,133],amd64:[29,132],among:[0,55],amount:[27,55],ander:[31,35,45,48],andi:132,andorra:171,ani:[5,6,7,9,10,11,17,24,26,27,29,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,115,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,157,158,159,164,165,166,167,168,170,172,173,174,175,176,177,178,179],anoth:[1,6,10,24,42,67,77,94,107,108,109,110,114],another_featur:6,anymor:[106,158,166],anyth:[78,103],anywai:2,apache2:[10,48,115,122],api:55,apk:122,app:[16,52,125,126],append:[3,10,11,29,159],apphom:16,appli:[5,10,16,20,24,27,55,78,79,85,100,105,106,141,175],applic:[8,10,173],approach:[15,159],appropri:[0,10,22,29,108,109,110,135,136],apt:[16,24,32,33,34,35,36,38,39,123,135,136,153,155],arch:[29,38,135,136,177],architectur:[5,29,83,124,139],archiv:[3,29,33,38,83,108,109,110,167],archive_shell_function_approach:1,archlinux:[12,24,77,94,129],area:[1,17],arg:14,argpars:8,argument:[0,14,16,18,24,29,40],argv:14,armstrong:[29,33,34,36,37,38,39,40,46,47,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,69,85,86,88,89,90,91,95,96,97,98,99,100,101,102,103,104,111,114,117,119,121,144,145,146,147,148,149,151,164,165,167,169,175,176,177],asc:34,ascii:[153,155],ask:11,associ:[108,109,110],assum:[1,6,15,17,24,26,55,56,156],assumpt:76,assur:[0,16],attempt:[51,113],attent:[10,178],attribut:[14,26,77,94],auth:[55,114],authent:[0,15,33,51,55],author:[6,14],authorit:51,authorized_kei:[164,165],auto:[0,139],automat:[0,10,15,16,29,33,51,76,113,135,136,154,172],autorequir:10,autorized_kei:164,avail:[0,1,5,10,14,15,17,23,24,115,133,135,138,139,154,159,164,165,171,178],avoid:[131,132,133],awai:[6,152],awk:[27,114],axyzaab3nzac1yc2:165,azxyaab3nzac1yc2:165,back:[6,11,20,24,26,27],backport:[153,155],backup:[1,41,47,165],bandwidth:177,banner:26,bar:[59,71,72,113,124,164],bar_1:124,bare:1,base:[0,1,6,9,17,29,108,109,110,111,121,124,135,136,159,162,164],basearch:177,baseurl:177,bash:[0,7,16,64,132,133],bashrc:[77,94],basi:0,basic:[0,55,174],bastian:158,batch:55,batteri:5,baz:[59,124],baz_1:124,becaus:[6,10,15,16,19,24,29,115,152],becom:[0,16],been:[24,26,77,159,167,168],befor:[1,6,7,10,11,16,23,24,40,55,56,85,88,91,111,114,179],began:158,begin:[16,19,159],behav:[3,17,18,24,29],behavior:51,behaviour:[5,17,24,68,93],being:[0,27,28,44,52,54,73,166],believ:6,belong:138,below:[0,4,10,11,17,24,29],benedikt:120,benediktkoeppel:120,benefit:6,besid:17,best:1,beta:[3,9,17,24,29,159],better:[0,3,6,27,159],between:[10,11,16,17,27,40,111,153,155],big:0,bill:161,billi:160,bin:[0,2,7,10,14,15,16,17,19,23,24,27,29,43,50,52,54,57,58,59,60,61,62,63,64,66,130,156,159,167,174,175],binari:[50,55,70,124,152],bind:[51,108,109,110,146],bintrai:[50,167],binutil:138,bit:[17,37],biz:[78,125,126,138,178,179],bla:151,blackbox:154,blank:[16,144,147,148],block:[0,6,10,11,40,97,173],block_smtp:173,blockdevic:78,bob:[31,76],bodi:16,bogatov:[76,87],boot:[14,29,43,65,80,84,98,108,109,110,168,172],bootabl:[29,99],bootload:88,bootstat:80,bootstrap:[14,29,51],both:[3,4,9,16,29],bottle_pgsql:16,bound:[19,52],box:42,br0:79,bracket:[18,24,29],brain:6,branch:[0,6,7,24,26,29,42,81],branchnam:7,british:116,broken:20,brought:6,browser:6,bsd:[141,142,168],btrf:78,bug:[5,21],bugfix:[6,7],build:[0,6,10,26,42,97,154,158],built:[7,9,14],bulletin:51,buster:32,bzip2:29,c99:158,ca_fil:51,cach:[3,15,17,19,23,30,51,135,139],cache_path_pattern:[2,3,29],calcul:29,call:[0,4,5,10,14,16,17,20,23,24,26,27,38,68,78,93,107,108,109,110,169],can:[0,1,2,3,4,5,6,7,8,9,10,11,13,14,15,16,17,18,19,20,21,22,23,26,27,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,113,115,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,157,158,159,164,165,166,167,168,170,172,173,174,175,176,177,178,179],cannot:[24,29,71,72],canon:38,canonical_partn:38,care:[6,17,123],carlo:[112,117],carri:[23,172],cat:[0,4,5,9,11,16,19,23,24,51,164,165,167],catalina:[135,136],catalog:52,categori:117,caus:[4,17],cbrg:0,ccollect:41,ccollect_conf:41,ccollectconf:41,cconfig:20,cdist:[1,2,3,4,5,10,11,12,13,14,15,17,18,19,20,21,22],cdist__ssh_authorized_kei:164,cdist_beta:[9,17,29],cdist_cache_path_pattern:[2,17,29],cdist_config_fil:[3,29],cdist_inventory_dir:[17,29],cdist_local_shel:[17,24,29],cdist_mark:44,cdist_order_depend:[10,17,29],cdist_overrid:[10,17,29],cdist_param:29,cdist_path:[8,17,29],cdist_remote_copi:[17,29],cdist_remote_exec:[17,29],cdist_remote_shel:[17,29],cdisttesthost:29,cdit:[29,112,119],cento:[11,12,31,172],central:[0,5,17,171],ceph:154,cert:[16,51,55,113],cert_fil:51,certbot:113,certif:[51,55,103,113],certifict:113,cfengin:138,cfg:[3,29],chain:[45,79],challeng:16,chang:[0,1,5,6,11,16,17,20,24,26,39,40,45,49,53,59,60,62,68,71,73,76,77,85,86,93,94,108,109,110,111,113,114,145,146,159,165,167,170,179],channel:13,chapter:14,charact:[3,16,29],charl:162,charset:48,chase:134,chdir:16,check:[0,4,16,20,24,45,51,52,54,57,62,77,81,103,139],check_redi:[52,54],checkout:[0,1,6,7,26,42,81],checksum:167,chgrp:[68,77,81,93,94,156,159],chmod:[16,68,77,81,93,94,156],chosen:[121,123,138],chown:[68,77,81,93,94,156,159],christian:127,chroot:[46,47,88,89,90,91,145],circual:0,circular:[0,10],cksum:167,classifi:114,classmethod:14,clean:136,cleaner:0,cleanli:5,clear:5,clearli:23,client:[7,14,22,24,29,51,55],client_max_body_s:16,clone:[0,1,6,7,15,23,42,81],cloud:9,cls:14,cluster:51,cmd:[79,82],code:[0,2,5,7,10,13,15,17,18,19,22,23,24,26,29,30,42,48,49,68,77,81,93,94,111,114,120,158,167],codenam:[32,38],collabor:1,collect:[20,98],collis:24,colon:[17,24,29,55,56,150],colour:[24,116],com:[6,33,34,38,44,50,55,56,71,72,73,74,81,82,84,92,108,109,110,113,114,131,132,133,134,135,136,139,140,141,142,146,156,165,167,170,171,172,173],combin:[0,10,31,108,109,110],come:[7,9],comma:[17,29,119],command:[1,3,7,9,10,16,17,19,22,23,29,43,45,46,52,54,55,56,64,66,79,89,94,97,106,113,143,145,154,164,167,173],commandlin:14,comment:[6,29,111,145,164,165,175],commit:[0,1,26],common:[0,10,24,44,174],commun:[11,15,17,51,55,69],compani:[0,1],company_a:0,company_b:0,compar:27,compat:[1,27,29,48,65,66,75,154,157],complet:[5,20,24,29],complex:[0,167],complic:0,compon:[3,24,29,38],compos:[70,73],compress:[29,103],comput:[5,27],concept:14,concret:156,condit:[10,27],condition:10,conf:[0,2,3,6,10,13,15,17,19,24,26,29,46,47,48,49,56,108,109,110,111,114,133,139,140,141,142,152,169,177],conf_dir:[3,29],conf_path:24,confdir:17,config:[0,1,9,13,15,16,17,19,22,26,49,51,55,71,76,91,92,111,113,124,153,155,170],config_fil:[3,29],configur:[2,5,6,7,8,10,11,13,14,15,17,19,20,22,24,26,30,32,36,42,43,44,51,53,55,56,67,76,77,79,87,94,105,108,109,110,116,139,145,146,148,153,154,155,168,171,172,174],configure_hosts_simpl:8,conflict:[1,20,29,56,57],conform:140,confus:[137,173],conifgur:3,connect:[13,14,27,29,43,51,55,143],consid:[1,6,40,52,54],consist:[5,17,24,26,44,150],constraint:159,consul:[49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,154,167],consult:0,consumpt:66,contact:[160,161,162,163],contain:[0,1,2,6,9,10,16,17,20,24,27,29,32,52,55,108,109,110,164,165,167],content:[2,9,10,11,14,16,17,24,29,44,46,47,49,51,56,77,94,159,170],context:[9,19],continu:[15,16,23,26,29],contrib:16,control:[0,7,11,13,18,24,29,51],controlmast:0,controlpath:0,controlpersist:0,controlsocket:13,convent:[0,124],convention:[3,29],convert:140,cool:6,copi:[1,3,6,11,15,17,20,24],copyright:[29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,172,173,174,175,176,177,178,179],core:[5,6,17,24,27],coreo:[92,170],correct:[78,108,109,110,111],correctli:[10,29,68,93],correspond:[6,151],cost:177,could:[0,4,15,16,24,29],count:29,cours:13,cpu:[3,29],cpu_cor:17,cpu_count:13,cpu_socket:17,creat:[0,1,2,6,7,11,14,15,17,19,20,24,26,29,41,42,43,44,50,51,55,66,68,71,72,75,76,77,78,81,85,93,94,99,100,108,109,110,111,113,115,149,150,151,153,154,155,156,157,164,165,171,175,178],createdb:[16,151],createextens:150,createrol:151,creation:[0,5,10,29,85],croatia:[9,29],cron:[64,113],cronjob:64,crontab:64,crypt:85,ctmpl:56,cumbersom:0,cup:152,cupsd:152,curl:[0,14,29,43,52,103,167],currag:135,current:[0,1,2,3,10,14,16,17,20,24,26,29,46,51,108,109,110,142,150,151,154],current_valu:85,custom:[0,7,16,17,18,23,26,29,91],customerx:1,customlist:139,customlist_serv:139,cwarden:127,d886d4b7e4425a102a54bfaff4d2288b:13,daemon:16,daemontool:[65,66,154],dai:[118,153,155],daili:[27,113],daniel:[44,78,138,178,179],darko:[9,19,29,30,43,50,80,113,156],dash:[0,7,40,49,51,56,71,72,73,77,94,170],data:[2,3,13,17,19,23,24,29,30,57,58,59,60,61,62,63,78,98,113,153,155],databas:[1,10,17,20,26,29,120,149,150],datacent:[51,57,58,59,60,61,62,63],date:[3,29,44,64,81],datetim:29,day_of_month:64,day_of_week:64,dbcustom:151,dbname:[16,150],dc1:51,de_ch:[116,117],deal:172,dear:6,deb:[38,124],debconf:67,debian9:19,debian:[11,12,14,24,31,38,67,121,123,124,135,136,174],debootstrap:29,debug:[0,2,3,4,5,17,24,29,30,55,114],decad:27,decid:[1,3,10,17,20],decis:1,declar:[10,24],dedic:0,deduc:76,def:[14,16,24,111],default_incom:172,default_outgo:172,default_rout:172,defin:[0,5,11,16,17,20,29,31,64,70,73,100,142,152],definit:[52,54,56,57,58,59,60,61,62,63,96,133],deinstal:26,del:9,delai:0,deleg:0,delet:[9,29,41,77,94,108,109,110,139,173,175],delimit:[16,17,24,29,30,38,111],deni:[51,172,173],dep:29,depend:[11,13,16,17,29,45,51,55,121,126,156],deploi:[17,26,49,50,52,54,55,56,57,58,59,60,61,62,63,73,105,106,167],deploy:127,depth:10,deriv:17,dervi:[22,29],describ:[1,6,10,11,14],design:[5,51],desir:[8,14,20,171],destin:[24,41,44,56,96,114,115,159,165],detail:[0,6,13,16,17,24,29,31,35,48,124],detect:[16,24,29,73],determin:[2,44,121,135,136],dev:[0,4,16,24,29,49,78,88,92,97,98,99,102,119],dev_sdb:78,devel:125,develop:[1,4,5,6,7,11,26],devf:[108,109,110],devic:[1,78,88,92,96,97,98,99,119],devuan:[12,14,16,153,155],dhcp:14,diagnost:[20,24],diagram:0,did:[6,15,47,90],die:24,diff:[6,26],differ:[1,4,5,10,11,16,17,20,24,27,29,44,78,118,123,152,153,155,175],dig:1,dir:[16,29,30,66,98,119,159,167,179],direct:[29,50,79],directli:[7,17,24,44,50,113,146,151,169],directori:[0,2,3,6,7,8,9,10,14,15,17,19,23,24,26,29,30,41,48,55,65,66,68,76,77,93,94,104,115,153,154,155,159,165,166,167],dirnam:[16,24],disabl:[3,13,19,29,30,37,51,80,108,109,110,141,142,165,168,170,178],disablegroup:177,disallow:[108,109,110],discard:179,discov:19,discoverd:78,discoveri:154,disk:[17,55,56,78,88,102,157],dispatch:121,displai:[29,62,137],dist:[7,136],distinguish:[0,10],distrib_codenam:38,distribut:[0,3,7,14,15,16,17,29,38,55,106,125,126,129,137,138,156,172,178],distutil:7,django:9,djangoenv:156,djb:65,dmitri:[76,87],dns1:8,dns2:8,dns3:8,dns:8,dnsmasq:128,doc:[7,24,26,29,41,51,52,54,57,58,59,60,61,62,63,150,151,153,154,155],docker:[52,69,70,71,72,73,74],docker_compos:70,documen:24,document:[0,1,5,15,16,24,45,51,52,54,55,56,57,58,59,60,61,62,63,150,151,153,154,155],documentation_cleanup:6,doe:[2,11,14,16,17,23,24,27,29,51,52,68,71,72,73,77,78,91,93,94,103,108,109,110,113,146,158,166],doesn:[77,94,111],dog:75,dokuwiki:81,domain:[16,17,113,119],dominiqu:[70,139,140],don:[1,6,24,116,123,129,131,132,133,137,138,145,165],done:[0,2,6,10,11,16,24,40,77,94],dos:100,dot:[31,45,48,171],dot_cdist_path:7,dotman:7,doubl:17,down:51,download:[34,50,55,103,167],dpkg:[4,24,124],dport:106,drive:29,drop:[6,13,26,29,106,149,150,151,175,178,179],dry:[29,159],dsl:27,due:[0,51,153,155],dumb:24,dummi:24,dummyconfig:24,dummypi:24,dummypy2:24,dummysh:24,dump:119,durat:24,dure:[2,19,20,26,29,95,96],dynam:[2,9,29],dynamicli:27,each:[0,1,2,4,9,10,13,16,19,24,29],earli:[1,4],eas:8,easi:[1,15,26,27,73],easier:0,easili:[42,78,107,118],eat:26,echo:[0,6,11,15,16,23,24,167],eckert:[124,135,152],edit:[0,15,16,64,69,76],editor:174,egg:16,egress:[172,173],either:[3,7,10,11,13,17,24,26,27,29,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,71,72,73,74,75,77,79,80,81,82,83,84,85,86,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,113,115,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,170,172,173,174,175,176,177,178,179],els:[4,10,11,16,24,64],elswher:165,em0:[108,109,110],email:[16,113],emerg:24,emit:[11,50],empti:[1,4,10,17,24,29,38,68,77,93,94,124],emul:[2,29],en_gb:116,en_u:117,enabl:[1,3,13,16,17,29,30,37,38,48,51,55,80,108,109,110,111,115,142,153,155,168,170,172,177,178],enablegroup:177,enclos:[18,24,29],encod:[51,164],encor:65,encount:[10,13,24,29],encrypt:[51,113],end:[0,19,29,40],enforc:51,engin:27,english:116,ensur:[0,6,10,15,16,17,24,26,68,78,79,93,106,111,114,122,123,125,126,127,128,129,131,132,133,134,137,138,143,152,156,165,166,168,178,179],enter:[1,15,29],enterpris:[28,177],entranc:79,entri:[0,2,10,16,17,31,38,64,87,114,119,145,164,165,169],env:[9,16,29],environ:[2,3,5,10,11,16,23,28,130,156,160,161,162,163,164],eof:[0,11,16,24,67],epel:[137,172,177],eprotex:[110,131,133,141,142],equal:[0,9,16,77,94],err:55,error:[3,4,5,8,10,16,17,19,20,22,24,29,55,77,133,137],error_log:0,esac:[10,11,16,24],especi:4,essenti:[0,10,79,106,123],establish:106,etc:[0,3,6,10,11,15,16,21,24,29,38,41,44,45,46,47,48,49,56,64,68,77,87,93,94,95,96,98,107,111,114,115,118,119,133,146,147,152,153,154,155,159,165,169,170,171],eth0:173,eth:0,ethz:[0,1,29],europ:[9,29,171],eval:15,evax:[160,161,162,163],eve:76,even:[6,10,27,159],event:58,ever:[24,27],everi:[0,6,10,15,20,23,24,26,29,51,52,54,73,135],everyth:[0,6,15,16,17,40,64,143],evil:0,exact_delimit:111,exactli:[4,10,77,94,111,173],exampl:[0,1,15,16,19,20,22,23,24],except:[6,8,29,77],exclud:[41,48,159,177],exec:[6,26,29,51,66,91],execut:[2,3,4,7,8,11,14,16,17,18,19,23,24,29,30,43,45,51,146,152,154,159,167,169],exist:[3,5,6,13,14,15,16,17,20,24,26,29,30,40,51,68,71,72,73,76,77,93,94,111,113,133,165,175,179],exit:[4,11,14,16,19,20,23,24,30],expans:24,expect:[4,10,29,51,103,167,173],expicit:165,explain:29,explicit:[24,33,75,97,116,117,164,165,168,175],explicitli:[86,108,109,110],explor:[0,2,11,13,16,20,26,27,29,30,31,51,121,135,136],explorer_nam:4,express:[45,114],ext3:78,extend:[5,24,45,51,99],extens:[64,150],extern:1,extra:[10,177],facil:55,factor:5,fail:[2,4,13,15,19,20,23,29,71],failovermethod:177,failur:23,fals:[3,24,29,99],familiar:5,fanci:[24,111,165],far:6,fast:5,fdisk:99,fead:16,featur:[1,2,6,7,10,27,165],fed:9,fedora:[12,137],fedoraproject:177,feed:[0,24],fetch:[0,1,6,26,33,103,167],fetchal:16,field:[64,119],file1:0,file2:0,file3:0,file:[0,2,6,9,10,11,13,15,16,17,18,19,24,40,43,44,45,46,47,48,49,50,51,55,56,66,67,71,72,73,76,77,87,94,95,96,97,103,107,111,114,117,118,124,136,139,142,147,153,155,159,164,165,167,170],filenam:[9,30,44,67,124,139,155,167],filepi:24,filesystem:[17,78,97,98,108,109,110,119],filter:[57,62,79],find:[5,8,10,14,15,24,26,47,48],fine:[1,6,159],finish:[2,10,13,14,16,29],firewal:[79,141,142,172,173],firewalld:[79,80],first:[0,1,3,6,7,8,10,14,15,16,24,29,86,108,109,110],fix:[6,17,26],fixm:6,fixthingsbecausequalityassurancefoundissuesinourpatch:6,fixtur:29,flag:[9,23,24,66],flaggi:126,flavor:[131,132,133],flexibl:26,flow:10,focu:5,folder:[24,167],follow:[0,1,2,3,6,7,10,13,14,15,16,17,19,20,22,24,26,29,50,124,126,129,131,132,133,137,138,150,156,173,178],foo:[17,59,60,71,72,73,113,124,130,156,164],foo_0:124,foobar:[10,68,85,88,93,103,167,170,175],foobarexampl:10,fooenv:156,forc:[29,38,78,121,135,136,138],form:150,format:[2,6,7,14,17,26,44,56,78,167],forward:[76,79,106,111,165],forward_direct:79,found:[3,6,7,10,24,29,78,108,109,110,178,179],foundat:[31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,71,72,73,74,75,77,79,80,81,82,83,84,85,86,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,113,115,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,157,158,159,164,165,166,167,168,170,172,173,174,175,176,177,178,179],fqdn:[55,108,109,110],framework:16,free:[29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179],freebsd:[12,14,17,31,108,109,110,131,133],freedom:14,freeli:17,fresh:1,frodo:[77,94],from:[0,2,3,5,6,8,9,11,13,14,16,17,20,21,23,27,29,30,33,34,38,40,41,42,48,50,55,65,67,71,72,76,77,78,79,81,82,83,85,86,87,94,96,103,107,111,113,114,117,118,123,124,130,131,132,133,139,152,153,154,155,159,164,165,167,173,176,178],front:[79,106],frontend:29,fstab:[95,96,98,119],fstype:78,ftp:137,fulfil:27,full:[7,17,27,124,172,173],fullchain:16,fulli:[17,31,168],fun:26,funni:87,further:[14,19,26],furthermor:[24,27],fuse:119,futur:2,fwd:106,g640b7f9:13,gain:11,garden:26,gatewai:0,gcc:125,gem:161,gemset:[161,162],gencod:[0,2,6,11,17,19,20,26,30],gener:[2,4,7,10,11,13,15,17,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179],gentoo:[12,24,121,125,126,168],gentoolkit:[125,126],get:[0,6,7,9,10,13,14,15,24,26,33,39,81,82,113,123,135,153,154,155],get_explor:24,get_explorer_fil:24,get_paramet:24,getaddrinfo:17,getfacl:31,getfqdn:17,gethostbyaddr:17,gid:[16,85,175],giel:128,git:[0,1,15,23,42,67,81,154],git_dir:1,github:[7,55,56,81,82],gitlab:6,gitolit:67,gitus:67,give:[4,6,7,15,159],given:[6,10,24,27,29,44,49,54,56,58,64,67,88,92,104,114,115,117,119,123,124,133,147,160,162,163,164,165,167,169,174],giveng:159,global:[2,3,10,11,13,16,17,24,26,29,30,55,56,172],gmail:[44,50,71,72,73,74,92,113,135,136,139,140,156,170],gnu:[16,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179],gnuin:171,goal:16,gobin:66,goe:[77,94],golang:[82,83,154],good:[6,24,76],googlegroup:6,gossip:51,got:2,gpg:7,gpgcakei:177,gpgcheck:177,gpgkei:177,gplv3:[29,30,69,70,76,78,87,112,114,116,117,132,156,160,161,162,163,169,171],gracefulli:51,grade:28,grafana:84,grant:[29,30,69,70,76,78,87,112,114,116,117,132,156,160,161,162,163,169,171],green:[6,24],grep:[6,11,27,45,139,140],group:[16,17,21,24,26,29,31,49,51,68,76,77,81,85,93,94,156,159,167,176],groupadd:85,groupmod:85,grub2:88,grub:[88,91],guarante:24,guest:[108,109,110],guffei:[108,109,110,131,133,141,142],guid:[24,26],gzip:[29,103],hack:24,hacker:6,hand:[8,11,26],handi:55,handl:[27,29,111],handler:[57,58,59,60,61,62,63],happen:[13,23,26,29],happi:87,hard:115,hardware_typ:26,has:[0,1,2,3,7,9,10,11,13,14,17,19,20,24,26,27,29,64,78,124,159,166,167,168,178],hash:[10,29],hashicorp:[55,56],hat:[135,136],have:[0,1,7,9,10,11,14,15,16,17,21,24,26,29,39,77,78,108,109,110,120,138,178],haven:6,hda:[78,138,178,179],head:[0,1],header:[6,23],health:52,healthi:[52,54],heavili:170,help:[0,10,14,17,24,29,30,42,153,155],helper:[7,8,30],her:[16,42],here:[0,5,7,15,16,23,24,27,40,77,94],heul:[78,138,178,179],hidden:19,high:[24,27,172],higher:[3,29],highest:29,hint:4,his:[16,76],hold:35,home:[0,1,2,10,16,17,19,29,42,68,76,77,81,93,94,115,156,157,158,159,164,166,175],homedir:175,honor:17,hook:[16,113],hose:16,host1:26,host2:26,host:[0,1,2,3,4,5,8,10,13,14,15,17,18,19,20,22,24,26,27,30,41,42,43,50,52,55,62,77,87,91,94,96,108,109,110,114,118,125,143,159,167,179],host_max:29,hostabc:0,hostdir:29,hostnam:[4,9,16,17,24,29,51,86,87,108,109,110],hour:[64,135],how:[1,4,10,15,18,52,54,153,155],howev:73,html:[5,16,29,51,52,54,57,58,59,60,61,62,63,150,151],http:[6,7,29,34,38,43,50,51,52,54,55,56,57,58,59,60,61,62,63,83,84,103,106,132,137,150,151,153,154,155,167,177,178,179],http_cach:177,http_port:29,human:[33,52],i386:137,id_rsa:[14,29,159,164,165],idea:[9,76],idempot:[27,73],ident:15,identifi:40,ifconfig:[108,109,110],ignit:92,ignor:[10,29,51,55,64,87,98,114,119,167],ikq02:29,ikq03:29,ikq04:29,ikq05:29,imag:[75,157],img:157,immedi:[7,10],implement:[0,6,18,19,20,24,64,168],impli:141,improv:6,inaccess:178,inact:170,inc:127,includ:[0,1,3,5,6,10,14,16,19,23,29,38,68,93,113,114,124,130,155,158,173],includepkg:177,inclus:17,incom:51,incompat:26,increas:[29,30],increment:29,indent:6,independ:[0,10,106],index:[7,10,16,38,39,135],indic:[1,20,44],inet:145,influenc:[17,29,68,93],info:[2,3,9,13,14,17,19,23,24,29,34,55],inform:[6,17,19,24,29,45,51,74,96,145,170],ing:66,ingress:[172,173],inherit:[76,151],ini:[3,16,29],init1:0,init2:0,init:[0,1,2,6,8,10,11,13,14,15,17,19,23,24,29,65,105,152,156],init_manifest:[3,29],initi:[0,1,3,8,11,13,14,17,22,24,29,46,47,52,74],input:[16,67,71,72,73,106],input_direct:79,insecur:103,insert:[16,78,87,111,114],insid:[46,47,52],instal:[0,1,4,8,10,14,17,22,34,36,42,50,55,64,65,66,69,70,76,82,83,84,88,89,91,92,94,95,96,98,113,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,144,153,154,155,156,158,159,160,161,162,163,170,172,173,178,179],install_hosts_simpl:8,instanc:[0,7,10,17,20,29,55],instanti:10,instantli:5,instead:[0,10,17,23,26,29,55,64,96,107,130,136,159,164,165,173,178],integr:[0,140],intend:7,intens:[15,168],intent:[16,17],intention:[144,147,148],interact:[8,18,29,52],interest:117,interfac:[17,18,52,108,109,110,159,173],interfav:54,interfer:11,intermedi:[68,93],intern:[0,10,26,29,37,38,52,179],internal_sles11_sp3:179,interpret:114,interv:[52,54],introduc:[6,27],introduct:[24,154,155],inventori:[3,17],inventory_dir:[3,29],invit:6,invoc:156,invok:[17,24,38,57,58,59,60,61,62,63,73],involv:10,ip_forward:[111,169],iptabl:[105,106],ipv4:[29,79,111,169],ipv6:[18,24,29],ish:54,iso:92,issu:[6,10,24,51,77,94,107],item:[0,16],iter:8,its:[2,8,9,13,14,16,20,24,29,56,108,109,110,114,148,170],itself:[24,70,76,146,159,165],jail:[17,108,109,110],jail_:[108,110],jail_list:[108,109,110],jailbas:[108,109,110],jaildir:[108,109,110],jailrul:[108,109,110],jake:[108,109,110,131,133,141,142],jame:134,jargon:10,jfs:97,jimenezrick:[135,136],job:[3,13,29,64,113],john:[162,163],join:[21,24,51,150],jointheirstm:[108,109],journal:97,json:[49,51,92],jun:9,just:[8,9,10,15,16,24,50,55,173],kaction:87,kamila:[65,66,82,83,84,113,153,154,155],keep:[5,75,81,124,155,175],keepal:[11,177],keepaliv:11,keepassx:0,kei:[0,7,14,15,26,29,33,34,51,59,60,61,63,111,139,146,164,165,169],kept:1,kernel:111,kernel_nam:17,key_fil:51,keyboard:112,keyfil:29,keygen:[0,15],keyid:33,keyprefix:60,keyr:34,keyserv:33,keytyp:164,keyword:[3,29],kill:[6,152],kind:17,kisrqlpw:19,kiss:[5,9,28],know:[5,6,10,12,24],known:[4,16,24,46,47,50,51,55],koeppel:120,kooijman:32,ksp:[65,66,82,83,84,113,153,154,155],kucera:[71,72,73,74,92,113,170],kvlt:[31,35,45,48],kvm:[10,68,93,157],label:[78,102],lack:1,lang:117,languag:[5,10,24,134,160,161,162,163],last:[16,23,24,29,135,167],lastet:26,later:[1,10,20,24,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,164,165,166,167,168,169,170,172,173,174,175,176,177,178,179],latest:[0,1,6,26,50,55,69,133,154],layout:112,lc_all:117,lc_messag:117,lead:[10,17,23,29,51,78,152],leader:55,leak:0,learn:[15,27],least:[12,45,51],leav:[51,74],left:[74,144,147,148,165],legaci:168,legacy_kei:111,legacy_timezon:114,length:111,less:[5,6],let:[0,1,10,77,94,113],letsencrypt:[16,113],level:[3,8,17,27,29,51,55,172],lib:[8,119],libc:116,libexec:114,libpq:16,librari:29,libreoffic:0,licens:[29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179],life:[11,15,26],lighttpd:10,like:[0,1,3,4,5,6,7,9,10,11,15,16,17,18,19,22,23,24,29,64,66,79,113,116,123,124,139,178],limit:[13,27,29,173],line:[0,3,4,9,10,14,15,16,23,24,29,30,45,79,106,108,110,111,114,173],liner:4,link:[17,21,45,115],linux:[12,16,31,78,97,99,111,135,136,177],list:[1,3,6,9,10,14,17,24,33,38,50,55,83,138],listen:[0,16,29],liter:17,littl:27,live:[16,51],load:142,loadbalanc:[9,29],local0:55,local:[0,1,3,8,10,11,16,17,19,20,23,24,29,30,50,52,54,56,68,93,103,114,116,117,121,123,124,136,138,156,159,167,173],local_shel:[3,29],localbranchnam:7,localch:1,localedef:[116,117],localhost:[9,10,15,29,55],localrepo:139,localrepo_serv:139,localtim:171,locat:[3,4,16,17,26,55,108,109,110,130,165],loch:1,log:[0,3,15,16,17,29,51,55,66,114,172],logdirectori:24,login:[15,16,111,151,165],loglevel:[24,29],longer:87,look:[0,1,4,6,10,15,16,19,24,26,48,138],lookup:[22,29],loop:[16,27],loos:27,lose:5,loss:78,lost:19,lot:[5,17],lotsofopt:[108,109,110],low:172,lower:[3,29],lowercas:14,lowest:29,lsb:38,lsb_codenam:17,lsb_descript:17,lsb_id:17,lsb_releas:17,lsblk:78,lsof:128,lua:127,luarock:127,luasocket:127,lubomir:[71,72,73,74,92,113,170],lvm:102,lzma:29,mac:12,machin:[0,1,7,14,17,22,26,27,44,50,55,95,101,167,172,173],machine_typ:17,made:[20,26,109],magic:[5,10],maher:44,mai:[0,1,4,7,10,13,17,20,24,26,29,55,159,164,165],mail:6,mailinglist:6,mailto:64,main:[5,24,38,66,146,172],maintain:[7,9,17,26],major:27,make:[0,5,6,7,10,16,24,26,27,31,51,76,77,78,87,94,146,153,154,155,161,162,163,178],man:[2,6,10,17,26,138],manag:[0,6,10,15,22,24,26,29,33,37,38,40,41,42,44,46,47,51,52,54,55,56,57,58,59,60,61,62,63,64,66,68,69,71,72,73,74,75,77,79,85,87,93,94,106,107,108,109,110,114,115,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,141,142,150,151,153,155,157,158,160,161,162,163,164,165,166,167,168,169,170,175,176,177,178,179],mandatori:87,mani:[0,6,10,16,111,154],manifest:[0,2,3,6,8,11,13,14,15,17,19,22,26,29,45,156,159],manifestentri:24,manipul:27,manner:106,manpag:[5,6,10,17,24,26,31,179],manpath:[7,10,26],manual:[14,26,87,119,132],map:[15,17,20,151],mapper:78,mark:[24,35,99,172,173],markasoftwar:[172,173],marker:[2,44],mask:[31,170],mass:26,master:[1,5,6,7,24,26,42,51,54,81,145],match:[45,48,51,114,152,173],matter:27,matthij:32,max:[55,135,178],maxag:135,maxdepth:48,maximum:[0,3,13,29,55,56,111,172],maxproc:145,maxsess:[0,13,29],maxstartup:[13,29],md5sum:24,mdadm:102,mean:[2,3,9,10,13,16,20,22,24,27,29,68,69,73,93,108,109,110],meaning:5,meant:76,measur:24,medium:172,meet:6,member:16,membership:[68,77,93,94],memori:17,merg:[0,1,6,17,20,26],messag:[2,3,4,5,14,16,17,20,24,26,29,30,45,118,137],metadata_expir:177,metalink:177,method:[5,14,24,50],mfsmaster:119,mfsmount:119,mfssubfold:119,micro:16,might:[6,167],migrat:26,mindepth:48,minim:[14,29],minimum:[55,56],minor:99,minut:64,mirror:[6,7,29,132,137,139,159,177],mirrorcatalog:132,mirrorlist:[139,177],mirrorlist_expir:177,miss:[24,37],mistak:9,mitchellh:[50,167],mkdir:[0,16,24,68,93],mkf:[78,97],mkfsoption:78,mktemp:24,mnt:[29,88,91,95,103],mod:[85,175],mode:[0,5,13,15,16,22,24,29,49,51,68,74,76,77,81,93,94,103,113,156,167],model:27,modern:[5,172],modif:[108,109,110],modifi:[31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,71,72,73,74,75,77,79,80,81,82,83,84,85,86,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,115,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,157,158,159,164,165,166,167,168,170,172,173,174,175,176,177,178,179],modul:[8,127],mondai:64,monitor:154,month:64,more:[0,1,2,6,9,10,13,14,15,17,19,23,24,26,29,31,45,48,55,74,75,77,94,116,117,145,167,168,170,176],morti:128,mosh:173,most:[6,27,44,172,174],motd:118,motiv:27,mount:[46,47,78,89,90,98,104,108,109,110,119],move:7,msdo:99,much:[1,16],multi:4,multilog:66,multipath:78,multipl:[1,10,24,29,45,51,54,55,133,145,164,165,176,177],multiplex:[0,13,29],multiprocess:13,munin:[0,10,45,106],musl:116,must:[6,9,10,18,20,24,29,31,48,51,56,65,66,79,82,87,108,109,110,111,114,124,154,165,167],muttrc:76,mux_client_request_sess:13,my_program:66,mycloud:9,mycompani:1,mydbnam:149,mydbusernam:149,mydomain:146,myfancyissu:107,mylin:19,myoldvm:157,mypwd:120,myrepo:133,myrol:151,myservic:85,myset:[161,162],mysql:120,mystuff:159,myuser:120,myvmnam:157,n566pqut:19,name:[0,1,2,4,5,6,9,10,14,16,17,19,22,24],namespac:23,nat:79,natur:0,nblock:40,nearbi:6,necessari:10,need:[0,1,5,6,10,15,16,20,24,26,27,38,73,76,82,108,109,110,111,113,125,133,142,150,153,155,158,166,178],nest:17,net:[9,10,111,132,169],netbsd:[12,14,31],netmask:[108,109,110],network:[0,13,27,29,173],never:24,new_valu:85,newer:[1,153,155],newli:20,newlin:[16,24],next:[10,15],nfs:[68,93],nginx:[0,56,113,123,152,176],nicer:16,nico:[0,29,41,42,67,68,75,77,79,81,93,94,105,106,107,113,115,116,117,118,122,123,129,130,137,138,152,157,158,159,166,168,174],no_x11:[131,132,133],noarch:137,noatim:98,node:[0,22,45,51,61,154],nofil:165,nofstab:119,nologin:10,non:[0,4,20,24,48,68,93,165],none:[3,8,24,29,32,33,36,37,39,43,44,46,47,49,50,51,52,53,54,55,65,66,68,69,70,77,80,82,83,84,85,86,88,89,90,91,93,94,95,96,100,101,102,104,105,107,114,118,119,120,121,122,123,125,126,127,128,129,130,131,132,133,134,135,136,137,138,140,141,143,144,147,148,154,156,159,168,170,171,175,177,178],nonempti:119,nopar:165,nopasswd:0,nor:[6,29],noreload:145,normal:[0,10,15,24,44,78,140],notat:78,note:[0,2,3,7,15,17,24,50,52,55,66,96,142,146,153,155,165],notebook:[1,27],noth:[26,77,78,94,137],notic:[18,24],now:[1,6,7,9,10,16,19,26,87],nslcd:67,ntext:40,number:[0,3,13,29,30,97,99,178],numer:[56,99],nut:[108,109,110],nutzer:1,nutzung:29,nvm:99,nvme0n1:99,nvme0n1p2:99,object:[0,4,5,10,11,13,14,16,19,24,26,29,35,52,66,82,113,115,117,120,122,123,124,125,127,128,129,130,131,132,133,134,137,138,150,152,159,173,178,179],object_id:[29,40,78,87,88,97,98,99,104,108,109,110,111,114,121,165,169,176],object_mark:2,obsolet:[123,128,129,131,132,133,137],obtain:[3,29,113],obviou:0,obvious:5,occur:[20,133],oettli:[125,126],off:[3,17,24,29,172],offic:29,offici:[1,29],offlin:0,old:[9,26,29,79],older:26,oliv:143,olliv:143,omit:[24,33,55,56,167],onboot:[108,109,110],onc:[6,24,71,72],onchang:[48,49,77,111,114],one:[0,1,2,3,4,5,6,10,11,13,14,15,17,20,27,29,45,51,55,77,94,114,119,123,140,164,165,171,173,176,179],ones:[26,27],onli:[0,1,2,3,5,6,7,9,10,11,15,16,19,20,26,27,29,30,31,42,51,55,58,62,70,77,78,80,85,94,99,111,123,133,135,153,155,159,168,173,175,178],onto:[118,142],open:[6,13,24,27,29,173],openbsd:[12,31,132],opennebula:[11,19],openssh:0,openwrt:128,oper:[3,5,13,16,24,29,51,83,85,86,103,111,159,168,175],opkg:128,opposit:[6,173],opt:[7,115,159],option:[0,2,3,8,9,13,14,17,18,19,24,29,45,67,174],optional_multipl:24,options_architectur:139,order:[0,2,3,11,16,17,27,29,45],org:[0,20,29,41,42,67,68,75,77,79,81,83,87,93,94,105,106,107,108,109,113,115,116,118,122,123,127,129,130,137,150,151,152,157,158,159,166,168,174,177],orient:10,origin:[6,7,10,26,29,65],ornett:163,ortigoza:[112,117],os_releas:17,os_vers:17,osx:31,other:[1,4,6,7,8,10,11,13,16,17,19,20,22,23,24,26,27,29,31,33,42,64,68,78,93,151,179],otherstuff:159,otherwis:[7,10,14,17,24,29,77,111,114,124,139],otho:[125,126],our:[10,16,23,171],out:[0,1,10,15,16,17,26,29,81,106,136,173],out_path:[3,29],outgo:51,output:[0,2,3,4,6,13,16,17,20,24,29,30,55,106,108,109,110,138,167],over:[0,11,15,56],overrid:[18,57,58,59,60,61,62,63],overridden:76,overview:[19,74,153,154,155],overwrit:[3,11,17,29],overwritten:76,own:[1,2,7,9,13,24,55,149,158,165],owner:[16,24,29,49,68,76,77,81,93,94,149,156,158,159,165,167],ownership:165,ozagkg54:29,packag:[0,4,10,24,33,35,36,39,65,69,70,82,84,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,153,155,156,159,177],package2:159,packagenam:138,packages_to_instal:16,packet:[111,172],pacman:[24,129,135,136,139,140],page:[2,7,14],pair:[0,15],pam:114,pam_exec:114,panter:0,paradigm:5,parallel:[3,6,24,27,29],param:29,paramet:[0,2,4,6,8,10,14,17,20,22,26,29,30],parent:[10,26,48,68,76,93],parit:99,part:[79,91],partial:[31,51],particular:[2,3,132,133,154],particularli:170,partit:[99,100,102],partner:38,pass:[11,17,18,20,29,44,45,48,57,62,97,98,113,119,123,145,150,156,172],passingonli:62,password:[0,10,15,16,29,55,85,114,120,151,175,177],past:15,patch:[21,138],path:[0,2,3,7,8,13,16,19,24,40,41,44,46,47,48,49,51,55,56,64,67,71,72,73,78,89,90,92,96,103,113,119,124,130,153,155,164,167,170,174,178,179],pattern:[2,3,17,45,48,114,138,155],pci:78,peer:[13,51],pem:[16,51],peopl:[0,1,6,15],per:[0,3,13,17,24,29,55,76,108],percentag:99,peril:[10,17],permament:169,perman:169,permiss:[51,68,77,81,93,94,156,165,166],permit:[13,29],permit_sasl_authent:145,permitrootlogin:[0,11,15],person:29,pgrep:152,pgsql:16,phrawzti:44,physic:[108,109,110],pick:7,pip3:16,pip:[7,16,26,130],pkg:[133,139],pkg_path:132,pkg_state:124,pkgsite:131,place4:79,place:[0,7,17,24,118,142],plain:[24,139],plain_file_filenam:139,plan:[0,26],pleas:[18,26,159],plone:115,plugin:[14,16,17,29],point:[6,7,10,11,15,17,27,104,119],pointer:[6,10],polici:[51,106,172],poljak:[30,43,50,80,113,156],poll:55,polyakov:[172,173],pong:143,popular:27,port:[16,27,29,43,52,54,55,145,173],portabl:24,portag:[125,126],posit:[3,6,14,16,29,114],posix:[3,5,7,27,29,48],pospisek:[124,150],possibl:[0,1,3,11,17,18,29,31,111,146],postconf:146,poster:29,postfix:[144,145,146,147,148],postgr:[149,150,151],postgres_serv:16,postgresql:[150,151],postmap:147,power:11,ppa:37,practic:1,practis:[4,27],pre:77,preced:[3,29,56],predefin:24,prefer:65,prefix:[6,24,30,40,60,91,95,98,99,111],preo:[17,43],prepar:[13,29,46,89,167],prepend:98,preprocess:167,prese:[26,67],present:[0,2,9,10,16,24,26,29,33,34,37,38,40,41,49,50,51,52,54,55,56,57,58,59,60,61,62,63,64,66,68,69,70,71,72,73,74,75,76,77,79,80,81,82,85,87,92,93,94,106,108,109,110,111,113,114,115,116,117,119,121,122,123,124,125,127,128,129,130,131,132,133,134,137,138,139,140,141,142,145,149,150,151,152,156,157,158,160,161,162,163,164,165,166,167,168,170,172,173,175,176,177,178,179],pretti:[0,1,24],prevent:[23,24],previou:[14,20,23,51,135],previous:[0,10,87],primari:[17,29,51],principl:28,print:[14,16,20,24,29],printf:[16,167],prior:[68,93,133,179],prioriti:[79,177],privat:[0,6,51,75,145],privileg:0,privkei:16,probabl:[6,24,26,27,117],problem:159,proc:41,proce:10,procedur:26,process:[3,13,16,19,29,152],produc:19,product:[0,54,62,138],program:[5,10,27,66,75,134,157,160,161,162,163,174],prohibit:13,project:[3,16,31],projectnam:16,prometheu:[66,82,153,154,155],promport:155,proper:[14,24],properti:[85,111],propos:6,protocol:[5,79],provid:[10,17,18,24,48,51,57,58,59,60,61,62,63,76,77,83,94,124],proxi:[16,177],proxy_password:177,proxy_usernam:177,psql:16,psycopg2:16,ptype:138,pub:[14,29,164,165],pubkei:[0,15],publish:[31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,71,72,73,74,75,77,79,80,81,82,83,84,85,86,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,113,115,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,157,158,159,164,165,166,167,168,170,172,173,174,175,176,177,178,179],pull:[6,11,26],punnar:[31,35,45,48],puppet:[123,129,131,132,133,137,168],pure:24,purg:[123,124],purpos:[0,4,9,14,16],push:[1,5,6],put:[76,153,155],pwd:[7,26],pxe:[14,29],pxe_boot_dir:29,py3k:29,pyhton:24,pypi:7,pyro:130,python2:[129,131,132,133,137,138],python3:[9,16],python:[5,6,8,29,129,130,131,132,133,137,138,156],pythontyp:24,pythonx:[129,131,132,133,137,138],pyvenv:156,qemu:[75,157],quagga:35,qualifi:17,qualiti:159,queri:[55,124],question:[21,44],quickstart:1,quiet:29,quit:0,quot:[0,11],rabbitmq:[34,38],rail:[0,134,161],rails_test:150,rais:[8,24,77],ramon:171,rang:173,rather:29,raw:64,raw_command:64,rbenv:158,rc4:70,reach:[13,29,54,135],reachabl:1,react:[11,27],read:[1,3,9,10,13,15,16,24,29,67,71,72,73,159],readabl:[33,52],readi:[14,16],real:[0,11,15,17],realis:[0,10],realli:10,realpath:24,reason:1,reboot:[64,101],receive_messag:24,recent:[1,6,44,82,154],recogn:[3,29],recognis:23,recommend:[0,1,15,24,36],recommended_mutt_config:76,recreat:71,recurs:[26,31,48,68,93,104,159],red:[135,136],redefin:10,redhat:[11,12],redi:[52,54,62],redirect:66,redistribut:[31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,71,72,73,74,75,77,79,80,81,82,83,84,85,86,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,113,115,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,157,158,159,164,165,166,167,168,170,172,173,174,175,176,177,178,179],redund:6,ref:[0,1],refer:[10,13,16,24,29],referenc:[11,17],reflect:1,refus:[13,29,78],regex:[48,111,114],regexp:152,regist:[14,172],regular:[27,45,76,77,94,114],reiserf:97,reject:[145,172,173],rejoin:51,rel:[17,29,115],relat:[45,106],releas:[7,32,34,38,51,55,123,137],releasev:177,relev:0,reli:1,reliabl:11,reload:[16,49,53,113,145,148],remain:[18,99],rememb:16,remot:[0,1,2,3,6,11,13,17,19,24,26,29,41,51,81,91,108,109,110,143,159,161,162,163,165,173],remote_copi:[3,29],remote_exec:[3,29],remote_out_path:[3,29],remote_shel:[3,29],remov:[17,19,26,29,31,40,48,64,68,69,70,71,72,73,75,77,85,87,93,94,102,108,109,110,111,113,114,115,116,117,122,123,124,125,127,128,129,131,132,133,134,137,138,141,142,156,157,160,161,162,163,164,165,166,170,173,175,176,179],renam:26,render:[0,55,56],renew:[16,113],repeat:[6,29],replac:[15,16,24,26,77,94,111,167],repo:[1,6,133,135,177,178,179],repo_desc:178,repo_gpgcheck:177,repo_id:178,report:[19,21,26,41],repositori:[1,6,7,37,38,81,84,131,133,136,139,172,177,178],repositoryid:177,repres:[8,10,24],request:[6,11,13,14,21,22,29,51],request_uri:16,requir:[0,5,6,8,10,15,16,17,18,24,26,27,29,75,157],required_multipl:24,reserv:17,reset:102,resolv:[0,10,22,29,46,47,87],resourc:[0,27],respect:[18,24],respons:[22,29,153,155],rest:99,restart:[11,16,45,48,56,170],restor:[46,47],restrict:[58,172],restructur:6,restructuredtext:17,result:[0,1,4,10,17,20,24,27,29,133],retain:153,retent:[153,155],retri:[51,55,177],retriev:[96,123,136,167],retry_interv:51,reus:[0,4,5,20],reusabl:16,revers:[16,22,29],ricardo:[135,136],rid:33,right:[0,166],ris:[178,179],rock:0,role:[149,151],root:[0,10,13,15,16,18,24,29,49,64,68,77,93,94,113,115,130,158,159,165,166,167],root_password:29,rout:[16,172],router:111,roux4:[139,140],roux:[70,139,140],rpc:152,rpcstatd:152,rpm:137,rsa:165,rsalvado:171,rst:[6,17],rsync:159,rubi:[24,134,158,160,161,162,163],rubygem:134,rule:[17,29,51,79,105,106,155,164,173],rule_fil:155,ruleset:[106,108,109,110,141,142],run:[0,2,4,5,6,7,11,12,13,14,16,17,19,22,23,26,27,29,39,44,46,48,49,50,51,52,54,55,56,64,66,68,73,77,88,89,91,93,94,96,101,103,111,113,114,118,130,135,143,145,146,147,152,159,167,172],run_loc:24,run_remot:24,runa:130,runlevel:[17,168],runtim:169,rvm:[160,161,162,163],rwx:31,safe:76,sai:10,same:[0,4,10,20,22,24,27,29,33,37,68,77,78,79,85,93,94,97,98,111,116,117,121,135,145,159,161,162,165,167,168,175],sampl:[16,24],san:[0,37,78],satisfi:14,saturdai:64,sausag:16,save:[2,3,24,29,46,47,66,153,155,167],save_output_stream:[3,29],sbin:152,scalabl:5,scan:[14,65],scenario:[0,27],schijndel:128,schinagl:143,schotteliu:[0,29,41,42,67,68,75,77,79,81,93,94,105,106,107,113,115,116,117,118,122,123,129,130,137,138,152,157,158,159,166,168,174],scp:[3,17,18,24,29],screen:[29,30],script:[0,4,5,7,9,10,11,16,17,20,29,30,52,54,64,65,105,164],scsi:78,sda1:[97,98,99],sda2:[97,98,99],sda3:99,sda5:[97,98,99],sda6:99,sda7:99,sda:[88,92],sdb:[29,78,102],sdc3:119,sdx:78,search:[3,29,45,114,178],second:[13,14,52,135],secondli:1,secret:[72,151],section:[2,3,15,16,29,139],secur:[5,27,48,51,55],sed:[26,27],see:[0,1,2,6,9,10,11,13,14,16,17,18,19,22,23,24,26,29,31,35,45,48,50,74,83,85,119,170,177,179],seen:24,segment:[86,167],select:[1,7,9,10,16,29,42,67,161,171],self:24,self_path:24,send:[0,11,21,24,55,113],send_messag:24,sens:24,sent:55,separ:[3,5,6,10,13,17,24,29,55,56,111,119],sequenti:[13,29],serv:[16,55],server:[0,5,7,10,13,14,15,22,27,29,50,51,55,84,96,103,108,109,110,113,139,165,167],server_alia:24,server_nam:[0,16],servernam:[0,24],servername_access:0,servername_error:0,servic:[0,10,16,45,48,49,52,54,55,56,57,62,63,65,66,68,71,73,81,93,106,113,115,145,154,156,157,170,178,179],service_desc:179,servicedir:[65,66],session:[0,13,29,114],set:[1,3,5,8,9,10,14,16,17,23,29,31,32,33,35,38,51,55,65,67,77,84,85,86,94,100,111,112,113,116,117,139,162,163,164,165,169,171,172,173,175,178],setfacl:31,setuidgid:66,setup:[7,10,15,16,17,26,29,42,67,68,93,107,116,118,172,174,179],sever:27,sfs:[78,125,126,138,178,179],shadow:[77,94,115],shall:[29,164,165],share:[0,171],shareabl:1,shebang:[23,24],sheepdog:75,shell1:9,shell2:9,shell:[3,4,5,7,8,9,10,15,16,17,23,24,52,54,64,175],shinken_virtualenv:130,ship:15,shorten:24,should:[1,3,6,10,14,15,16,17,18,20,21,24,26,29,37,52,54,56,78,99,108,109,110,111,114,120,158,164,165,166,168,171,176],show:[1,14,15,16,19,29,30,77],show_index:16,sign:[7,33,34,111],signific:[4,153,155],sigterm:51,silent:87,silli:[68,93],similar:0,similarli:6,simpl:[4,5,9,10,11,18,22,29,143],simpli:[6,27],simplic:5,sinatra:134,sinc:[0,14,19,23,24,71,72,73,76,135],singl:[0,27,164,167,173],singleton:[0,26,83,84],site:[0,7,16,17,115,156],situat:[10,23],size:[55,75,99,157,167],skel:[77,94],skip:[24,29,135],skip_if_unavail:177,sky:75,slash:[10,17,98,152,159],sles11:179,slightli:137,slow:0,small:[4,5,28],smtp:145,smtp_bind_address:146,smtpd:145,smtpd_client_restrict:145,smtpd_enforce_tl:145,smtpd_sasl_auth_en:145,snapshot:132,snippet:[0,26],snmpd:168,sock:16,socket:[16,17],softwar:[29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179],solari:[31,48],solid:0,solut:[0,23],solv:[1,5,159],some:[0,6,7,9,10,11,16,17,18,19,24,27,29,31,40,46,47,51,52,57,58,59,60,61,62,63,64,77,86,94,106,108,110,119,154,164,165,172],some_fancy_hash:10,some_other_hash:10,somecommandthatdoesnotexist:23,somedomain:146,somefil:[77,111],someth:[2,6,10,11,15,23,45,68,93,154],sometim:0,somewher:[10,82,91],soon:[6,15],sophist:[1,15],sorri:48,sourc:[0,2,3,10,16,17,19,23,24,26,27,29,38,39,41,42,49,51,56,71,72,76,77,81,94,107,115,118,124,141,142,153,155,159,167,170],sourcepol:[124,150],sp3:179,space:[6,10,38,99,114,144,147,148],spam:16,spawn:29,special:[0,10,23,69,146],specif:[0,4,7,10,17,20,24,38,50,55,57,69,85,97,99,121,125,130,131,133,135,136,156],specifi:[0,2,3,8,9,13,14,16,17,18,22,24,29,30,41,43,51,52,54,55,62,64,66,72,77,78,81,94,99,111,113,114,115,130,132,137,139,145,159,164,165,172,176,177],sped:0,spezifi:78,sphinx:7,split:26,splitbrain:81,sql:[150,151],sqlite3:9,squar:[18,24,29],src:38,srcpackag:138,srv:31,ssh:[1,3,5,7,11,13,14,15,17,18,24,27,29,106,164,165,166],ssh_config:0,sshd:[0,11,13,29,152,164,165],sshd_conf:159,sshd_config:[0,13,15,29],ssl:[16,24,51,55,103,113],ssl_certif:16,ssl_certificate_kei:16,ssl_check_cert_permiss:177,sslcacert:177,sslclientcert:177,sslclientkei:177,sslverifi:177,stabl:[0,1,8,29,32],stack:73,staff:27,stage:[4,10,103,113,167],stai:[7,10,26,79,81],stale:55,standalon:113,standard:[0,5,9,17,24,29,71,72,73,165,179],start:[14,15,16,19,20,22,24,26,29,40,43,65,80,84,108,109,110,114,152,168,170,172],starter:1,startstat:80,startup:[14,22],stash:6,statd:152,state:[0,1,2,5,16,19,20,24,26,29,33,34,35,37,38,40,41,49,50,51,52,54,55,56,57,58,59,60,61,62,63,64,68,69,70,71,72,73,74,75,76,77,79,81,85,87,93,94,106,108,109,110,111,113,114,115,116,117,119,121,122,123,124,125,127,128,129,130,131,132,133,134,137,138,139,140,141,142,145,149,150,151,152,156,157,158,160,161,162,163,164,165,166,167,168,170,172,173,175,176,177,178,179],statement:10,staticmethod:14,statu:[4,49,52,54],stderr:[2,4,16,19,20,24,30,55,66],stdin:[0,2,9,16,17,29,32,40,49,51,56,67,77,94,170],stdintest:0,stdout:[0,2,4,19,20,24,30,55,167],step:[1,14,15,16,29],steven:[29,33,34,36,37,38,39,40,46,47,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,69,85,86,88,89,90,91,95,96,97,98,99,100,101,102,103,104,111,114,117,119,121,144,145,146,147,148,149,151,164,165,167,169,175,176,177],stick:5,still:[9,24],stop:[16,26,80,108,109,110,152,170],storag:[9,17,153,155],store:[0,1,2,4,9,10,17,20,23,24,96,167],str:16,straightforward:5,stream:[2,3,24,29],stretch:32,strftime:29,string:[8,24,27,29,38,46,47,67,85,99,119,164,165,167],strip:[17,29,152],strong:13,structur:66,structuru:2,stu:135,stuff:[0,1,7,24,168],stupid:5,style:[108,109,110],sub:[15,29],subcommand:[14,29],subdirectori:[2,17,24,29],subfold:[0,42],subject:6,submiss:[6,145],submit:24,subsequ:16,substitut:29,subtyp:108,success:[0,13,19,22,29,143],successfulli:[15,16],sudo:0,sudoer:0,suffici:82,suffix:[10,40,46,47,56,99],suggest:[24,36],suit:29,suitabl:[68,77,81,93,94,156],superblock:102,superus:151,supplementari:17,suppli:[35,68,77,93,94,107,111,114,118,122,123,125,127,128,129,130,131,132,133,134,137,138,139,142,178,179],support:[3,13,14,16,18,22,24,26,27,29,31,50,51,55,79,83,108,109,110,116,153,154,155,159,168,173],suppos:[0,125],suppress:29,sure:[10,16,77,78,94,153,155,178],surpris:5,suse:[11,138,178,179],svc:[66,154],swap:[98,99],swarm:74,swellpath:127,symbol:[10,26,31,115],symlink:[26,77,94,171],symobl:115,sync:0,synchronis:1,syntax:[24,26,173],sys:[14,41,125],sys_uid_max:111,sysadmin:[10,27],sysctl:[111,169],syslog:[51,55,152],system:[0,1,3,4,6,14,15,24,27,28,29,42,44,51,66,67,82,83,85,86,97,103,111,116,117,121,123,124,127,134,135,141,142,154,156,157,168,170,174,175,179],systemd:[43,170],tabl:[16,79,102],tag:[7,9,17,54,62],tagfil:29,taglist:29,take:[7,18,24,26,40,49,51,52,56,64,68,72,77,86,93,94,159,170],taken:[0,159],talk:55,tar:[3,29,103,167],tarbal:103,target:[2,3,4,5,10,13,15,16,17,18,24,27,29,38,42,50,55,56,66,68,77,78,85,88,91,93,94,95,96,98,103,104,118,121,123,125,135,136,153,155,159,167,174,175,179],target_dir:29,target_host:2,target_runlevel:168,task:10,tbz2:[3,29],tcp:[52,106],technic:142,tell:[0,10,73,148],temp:[29,68,93],tempfil:[24,29],templat:[17,55,56],temporari:[1,11,17,19,24,29],temporarili:142,term:[29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179],termin:51,test:[6,9,12,16,17,19,29,31,32,34,38,113,114,115,159,168],testdir:159,testdisk1:78,testdisk2:78,testdisk3:78,tester:159,testfil:10,testjail:[108,109,110],testrepo2:178,testrepo3:178,testrepo4:178,testrepo:178,text:[0,6,40],textual:145,tftp:[14,103],tgz:[3,29,103,108,109,110],than:[0,6,10,24,68,93],thei:[0,6,7,10,20,24,77,94,133,155],theloni:163,them:[0,3,6,9,10,11,13,18,24,105,164],thi:[0,1,2,3,4,6,7,8,9,10,11,13,14,15,16,17,18,19,20,22,23,24,27,29,30,32,34,37,38,39,41,42,44,45,46,47,48,51,52,54,55,56,57,58,59,60,61,62,63,64,68,69,70,71,72,73,74,76,77,78,79,80,81,82,83,84,85,87,88,91,92,93,94,96,97,99,101,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,123,124,125,126,131,132,133,135,136,141,142,144,146,147,148,149,150,151,152,154,155,156,158,159,160,161,162,163,164,165,166,168,169,170,171,172,173,174,175,176,178],thing:[0,6,33,77,78,94,97],think:[1,6,24],third:[0,23],thisjail:[108,109,110],thoma:[124,125,126,135,152],those:[0,2,13,15,29],thought:[17,29],thread:16,three:[0,23],throguh:14,throttl:177,through:[9,16,20,52,54,108,109,110,161,162,163,172],thu:[1,6,10,11,17,23,24,26,133],tick:5,time:[0,1,3,5,13,17,29,44,51,54,55,56,64,71,73,135,145,159,164,165,176,177],timeout:[52,177],timestamp:[3,10,29,44],timezon:[114,171],tld:119,tmp:[0,10,13,19,24,29,44,68,77,93,94,98,114,124,159,167],tmpdir:[0,24,29],tmpf:98,tmpow6cwemh:19,tmpuah6fw_t:13,tmpzomy0wi:19,togeth:[13,45,52,54],token:[51,52,55,57,58,59,60,61,62,63],tom:[124,135,152],toma:[124,150],tool:[5,9,10,24,126,154],topmost:79,total:[9,13,18],touch:[6,10,16,24],tour:6,tpo_deb:[124,150],trace:[3,17,24,29],track:[0,1],traffic:[79,173],trail:[17,29,51,164,165],transfer:[13,20,24],translat:10,transport:[5,15],treat:111,tree:[1,16,20,24,26],tri:[71,143],trigger:[43,55,56,105],trigger_command:29,try_fil:16,ttl:[51,52,54],tutori:[1,15],twice:6,two:[0,7,9,10,11,13,18,20,23,24,165],txt:177,txz:[3,29],type:[1,2,4,5,7,11,19,20,26,27,29,30,37,38,39,41,42,44,45,46,48,49,50,55,56,57,58,59,60,61,62,63,64,67,68,71,72,73,74,76,77,78,79,80,81,82,83,84,85,87,88,91,92,93,94,97,98,99,101,104,105,106,107,108,109,110,111,112,114,115,116,117,118,119,120,121,124,125,126,131,132,133,135,136,139,140,141,142,143,145,146,149,150,151,152,154,156,158,159,164,165,166,167,168,170,171,172,173,175,179],type__acl:[17,25],type__apt_default_releas:[17,25],type__apt_kei:[17,25],type__apt_key_uri:[17,25],type__apt_mark:[17,25],type__apt_norecommend:[17,25],type__apt_ppa:[17,25],type__apt_sourc:[17,25],type__apt_update_index:[17,25],type__block:[17,25],type__ccollect_sourc:[17,25],type__cdist:[17,25],type__cdist_preos_trigg:[17,25],type__cdistmark:[17,25],type__check_messag:[17,25],type__chroot_mount:[17,25,47],type__chroot_umount:[17,25],type__clean_path:[17,25],type__config_fil:[17,25],type__consul:[17,25],type__consul_ag:[17,25,52,54,57,58,59,60,61,62,63],type__consul_check:[17,25],type__consul_reload:[17,25],type__consul_servic:[17,25],type__consul_templ:[17,25,56],type__consul_template_config:56,type__consul_template_templ:[17,25],type__consul_watch_check:[17,25],type__consul_watch_ev:[17,25],type__consul_watch_kei:[17,25],type__consul_watch_keyprefix:[17,25],type__consul_watch_nod:[17,25],type__consul_watch_servic:[17,25],type__cron:[17,25],type__daemontool:[17,25,66,154],type__daemontools_servic:[17,25,65],type__debconf_set_select:[17,25,174],type__directori:[17,25],type__dock:[17,25],type__docker_compos:[17,25],type__docker_config:[17,25],type__docker_secret:[17,25],type__docker_stack:[17,25],type__docker_swarm:[17,25],type__dog_vdi:[17,25],type__dot_fil:[17,25],type__fil:[17,25,49,76,167],type__filesystem:[17,25],type__firewalld_rul:[17,25],type__firewalld_start:[17,25],type__git:[17,25],type__go_get:[17,25],type__golang_from_vendor:[17,25,154],type__grafana_dashboard:[17,25,153,155],type__group:[17,25],type__host:[17,25],type__hostnam:[17,25],type__install_bootloader_grub:[17,25],type__install_chroot_mount:[17,25,90],type__install_chroot_umount:[17,25],type__install_config:[17,25],type__install_coreo:[17,25],type__install_directori:17,type__install_fil:[17,25],type__install_fstab:[17,25],type__install_generate_fstab:[17,25,95],type__install_mkf:[17,25,98],type__install_mount:[17,25,95],type__install_mount_appli:98,type__install_partition_msdo:[17,25],type__install_partition_msdos_appli:[17,25],type__install_reboot:[17,25],type__install_reset_disk:[17,25],type__install_stag:[17,25],type__install_umount:[17,25],type__iptables_appli:[17,25,106],type__iptables_rul:[17,25,79,105],type__issu:[17,25],type__jail:[17,25],type__jail_freebsd10:[17,25],type__jail_freebsd9:[17,25],type__jail_freeebsd10:109,type__key_valu:[17,25],type__keyboard:[17,25],type__letsencrypt_cert:[17,25],type__lin:[17,25],type__link:[17,25],type__local:[17,25,117],type__locale_system:[17,25,116],type__motd:[17,25],type__mount:[17,25],type__mysql_databas:[17,25],type__nam:6,type__p:[17,25],type__packag:[17,25,122,123,124,125,126,127,128,129,130,131,132,133,134,137,138],type__package_akp:25,type__package_apk:17,type__package_apt:[17,25],type__package_dpkg:[17,25],type__package_emerg:[17,25,126],type__package_emerge_depend:[17,25,125],type__package_luarock:[17,25],type__package_opkg:[17,25],type__package_pacman:[17,25],type__package_pip:[17,25],type__package_pkg:25,type__package_pkg_freebsd:[17,25],type__package_pkg_openbsd:17,type__package_pkgng_freebsd:[17,25],type__package_rubygem:[17,25],type__package_update_index:[17,25],type__package_upgrade_al:[17,25],type__package_yum:[17,25],type__package_zypp:[17,25],type__pacman_conf:[17,25],type__pacman_conf_integr:[17,25],type__pf_appli:[17,25],type__pf_ruleset:[17,25,141],type__postfix:[17,25],type__postfix_mast:[17,25],type__postfix_postconf:[17,25],type__postfix_postmap:[17,25],type__postfix_reload:[17,25],type__postgre_databas:150,type__postgres_databas:[17,25,151],type__postgres_extens:[17,25],type__postgres_rol:[17,25,149],type__process:[17,25,168],type__prometheus_alertmanag:[17,25,155],type__prometheus_export:[17,25],type__prometheus_serv:[17,25,153,154],type__pyvenv:[17,25],type__qemu_img:[17,25],type__rbenv:[17,25],type__rsync:[17,25],type__rvm:[17,25,161,162,163],type__rvm_gem:[17,160,162,163],type__rvm_gemset:[17,25,160,163],type__rvm_rubi:[17,25,160,161,162],type__ssh_authorized_kei:[17,25,166],type__ssh_dot_ssh:[17,25],type__staged_fil:[17,25],type__start_on_boot:[17,25,152],type__sysctl:[17,25],type__systemd_unit:[17,25],type__timezon:[17,25],type__ufw:[17,25],type__ufw_rul:[17,25],type__update_altern:[17,25,67],type__update_index:135,type__us:[17,25],type__user_group:[17,25],type__yum_repo:[17,25],type__zypper_repo:[17,25],type__zypper_servic:[17,25],type_gencod:24,type_manifest:24,typeord:2,typic:[0,15],ubuntu:[11,12,14,24,33,37,38,123,124],ubuntuarchivekei:33,ufw:[172,173],ugprad:133,uid:[16,175],umount:104,unacc:150,unaffect:87,unclean:23,uncompl:172,undefin:[10,31],under:[2,9,24,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179],underlai:50,underscor:24,understand:[15,173],understood:[1,15,103],undo:[47,90],undocu:177,ungleich:[0,6,7,8,11,15,16,19,21,29,30,41,42,43,70,75,79,80,81,112,117],unhold:35,uninsta:26,uninstal:[121,124,125,170],union:2,uniqu:[5,17,51],unit:[43,56,75,157,170],unix:[5,9,16,24,27,68,77,81,93,94,156],unknown:137,unless:[11,50],unlik:[24,76],unmount:[46,47,90],unpack:103,unpriv:145,unset:[0,10,24],unstabl:32,unsupport:[11,16],untest:26,until:[10,15,16,51],unzip:167,updat:[0,5,6,10,16,38,39,40,51,52,54,57,58,59,60,61,62,63,71,72,73,114,135,174],upgrad:[5,10,133,136],upgrade_cdist:26,upload:[51,56,77,94,95],upon:[0,10,19,24],upstream:[0,17],uri:[16,34,38,103,178,179],url:[0,1,52,54,137,167,178],usabl:[6,17,29],usag:[14,15,29],use:[0,1,2,3,4,6,7,8,9,10,11,13,15,16,17,20,23,26,29,30,35,38,42,51,52,54,55,69,70,76,78,79,87,96,97,107,108,109,110,111,112,113,114,116,117,121,122,123,125,127,128,129,130,131,132,133,134,135,136,137,138,142,152,155,156,159,160,161,162,163,167,169,171,173,178,179],use_ssl:24,used:[0,2,3,7,8,9,10,13,15,17,18,20,22,23,24,26,27,28,29,30,33,34,44,46,47,50,51,55,64,66,67,71,75,97,98,99,105,108,109,110,113,114,122,123,124,125,126,128,129,130,131,132,133,137,138,141,142,154,157,164,166,167,168,174,178,179],useful:[24,29,45,152,170],useless:142,user:[0,1,3,6,7,10,15,17,18,26,29,31,42,48,51,64,68,76,77,81,93,94,111,120,130,156,158,159,160,161,162,163,164,165,166,175,176],useradd:175,userdel:175,usermod:175,usernam:[42,55,177],uses:[15,24,27,165],using:[0,2,3,5,10,13,16,17,20,22,24,27,29,31,32,40,45,49,50,51,55,56,79,91,92,103,113,117,123,124,130,132,145,152,154,156,159,167],usr:[14,16,29,43,50,52,54,57,58,59,60,61,62,63,108,109,110,114,152,156,159,167,171,174],usual:[0,1,4,6,15,17,27,68,82,93,106,117,122,123,125,126,128,129,131,132,133,137,138,152,173,178,179],utf:[116,117],utilis:[10,27],uuid:96,uwsgi_param:16,uwsgi_pass:16,vacuum:16,valid:[3,29,55,112,153,155],valu:[0,2,3,4,8,9,10,16,17,24,26,27,29,32,46,47,55,56,69,85,111,117,119,139,146,167,169,179],van:128,vanish:[7,159],varchar:16,variabl:[0,2,3,10,11,15,16,26,29,64,108,109,110,121,135,136],variant:[123,124],variou:[0,86,174],vault:55,vdi:75,venv:16,venvparam:156,verbos:[3,8,15,17,22,24,29,30,41],verbose_info:8,verbose_trac:8,veri:[4,5,27,151],verifi:[6,51,55],verify_incom:55,versa:140,version:[0,1,6,13,19,24,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179],vfstype:119,via:[0,1,6,15,29,87,108,109,110,119,178],vice:140,view:[27,57,58,59,60,61,62,63],vim:[121,131,132,133,174],virtual:156,virtualenv:[130,156],vmware:78,vrrp:11,vvv:29,vvvv:29,wai:[2,4,6,10,11,13,16,17,18,24,27,73,76,79],wait:[29,55,56],wakeup:145,walkthrough:16,want:[0,1,6,7,9,10,11,15,16,17,24,45,96,123,125,129,131,132,133,137,138],warden:127,warn:[3,6,8,17,24,29,55,68,76,78,79,93,159,168],watch:[57,58,59,60,61,62,63],watch_foo:49,wathev:111,web1:[9,29],web2:[9,29],web3:[9,29],web:[9,16,29,52,58],webapp:54,webroot:[16,113],webserv:[10,113,123],webuser1:176,webuser2:176,well:[0,1,5,10,11,15,16,51,55,68,93,152,154,169],went:15,were:48,what:[0,5,15,20,24,26,40,47,49,51,56,77,90,94,170,173],whatev:[64,68,77,93,94,97],when:[0,1,2,6,10,11,13,14,17,18,20,22,24,27,29,34,38,46,47,51,55,57,58,59,60,61,62,63,77,98,107,113,123,124,133,152],whenev:[1,11,39],where:[0,1,9,13,18,19,24,29,56,71,72,73,74,76,77,88,91,94,96,98,103,113,119,153,155,159,167,170],wherea:24,whether:[20,41,68,73,93,108,109,110],which:[0,1,4,6,7,8,9,10,14,16,17,20,23,24,27,29,33,34,40,41,42,44,48,50,51,52,54,55,56,78,87,91,92,95,103,111,113,114,123,126,138,139,143,152,154,158,164,165,167,168,170,171,172,176,178],white:10,whitespac:[29,111],who:[1,6,15,64,76,120],whole:99,wide:[3,27,29,117,159],win:[3,24,29],window:[3,29],wish:10,within:[1,10,13,17,24,29,46,89,108,109,110],without:[0,15,20,29,51,52,54,79,106,142,159],won:1,word:[6,20,24],work:[4,6,10,16,18,24,26,27,51,55,99,121,126,143,165,178],world:[0,6,15],would:[0,9,10,11,16,17,20,23,24,77,173],wrapper:[0,97],write:[0,6,16,23,159,173],written:[5,24,29,40,49,51,56,77,94,170],wrong:[111,115],wrongsourc:115,wsgi:16,www:[0,11,16,20,34,38,51,52,54,57,58,59,60,61,62,63,108,109,110,114,115,150,151],x11:138,xdg_config_hom:[3,29],xenial:29,xenserv:12,xeru:127,xfs:[78,119],xmonad:76,xxx:78,xxxx:78,xxxxxxxxxx:24,xyz:[0,10],yearli:64,yes:[3,10,15,26,29,145],yet:[8,135],yield:24,yml:[73,153,155],you:[0,1,4,6,7,9,10,11,13,14,15,16,17,18,21,23,24,26,27,29,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,164,165,166,167,168,170,172,173,174,175,176,177,178,179],your:[0,1,5,6,7,9,10,15,16,17,24,26,27,29,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,71,72,73,74,75,77,79,80,81,82,83,84,85,86,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,113,115,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,164,165,166,167,168,170,172,173,174,175,176,177,178,179],yourself:[24,111],yourusernam:6,yum:[135,136,137,177],yyyymmddhhmmss:[3,29],z12y12l12:135,zero:[4,20,24],zhao:135,zip:167,zone:79,zoneinfo:171,zsh:[7,122,123,129,131,132,133,137,138,175],zypper:[138,178,179]},titles:["24. Best practice","11. Bootstrap","26. Local cache overview","12. Configuration","16. Explorer","2. Features","29. Hacking","4. How to install cdist","22. cdist integration / using cdist as library","19. Inventory","13. Manifest","17. Messaging","3. Supported operating systems","18. Parallelization","21. PreOS","7. Quickstart","8. Dive into real world cdist","23. Reference","28. Remote exec and copy commands","27. Saving output streams","25. Execution stages","6. Support","20. Trigger","30. Troubleshooting","14. cdist type","15. cdist types","5. How to upgrade cdist","1. Why should I use cdist?","cdist - usable configuration management","9. cdist(1)","10. cdist-dump(1)","15.1. cdist-type__acl(7)","15.2. cdist-type__apt_default_release(7)","15.3. cdist-type__apt_key(7)","15.4. cdist-type__apt_key_uri(7)","15.5. cdist-type__apt_mark(7)","15.6. cdist-type__apt_norecommends(7)","15.7. cdist-type__apt_ppa(7)","15.8. cdist-type__apt_source(7)","15.9. cdist-type__apt_update_index(7)","15.10. cdist-type__block(7)","15.11. cdist-type__ccollect_source(7)","15.12. cdist-type__cdist(7)","15.13. cdist-type__cdist_preos_trigger(7)","15.14. cdist-type__cdistmarker(7)","15.15. cdist-type__check_messages(7)","15.16. cdist-type__chroot_mount(7)","15.17. cdist-type__chroot_umount(7)","15.18. cdist-type__clean_path(7)","15.19. cdist-type__config_file(7)","15.20. cdist-type__consul(7)","15.21. cdist-type__consul_agent(7)","15.22. cdist-type__consul_check(7)","15.23. cdist-type__consul_reload(7)","15.24. cdist-type__consul_service(7)","15.25. cdist-type__consul_template(7)","15.26. cdist-type__consul_template_template(7)","15.27. cdist-type__consul_watch_checks(7)","15.28. cdist-type__consul_watch_event(7)","15.29. cdist-type__consul_watch_key(7)","15.30. cdist-type__consul_watch_keyprefix(7)","15.31. cdist-type__consul_watch_nodes(7)","15.32. cdist-type__consul_watch_service(7)","15.33. cdist-type__consul_watch_services(7)","15.34. cdist-type__cron(7)","15.35. cdist-type__daemontools(7)","15.36. cdist-type__daemontools_service(7)","15.37. cdist-type__debconf_set_selections(7)","15.38. cdist-type__directory(7)","15.39. cdist-type__docker(7)","15.40. cdist-type__docker_compose(7)","15.41. cdist-type__docker_config(7)","15.42. cdist-type__docker_secret(7)","15.43. cdist-type__docker_stack(7)","15.44. cdist-type__docker_swarm(7)","15.45. cdist-type__dog_vdi(7)","15.46. cdist-type__dot_file(7)","15.47. cdist-type__file(7)","15.48. cdist-type__filesystem(7)","15.49. cdist-type__firewalld_rule(7)","15.50. cdist-type__firewalld_start(7)","15.51. cdist-type__git(7)","15.52. cdist-type__go_get(7)","15.53. cdist-type__golang_from_vendor(7)","15.54. cdist-type__grafana_dashboard(7)","15.55. cdist-type__group(7)","15.56. cdist-type__hostname(7)","15.57. cdist-type__hosts(7)","15.58. cdist-type__install_bootloader_grub(7)","15.59. cdist-type__install_chroot_mount(7)","15.60. cdist-type__install_chroot_umount(7)","15.61. cdist-type__install_config(7)","15.62. cdist-type__install_coreos(7)","15.63. cdist-type__directory(7)","15.64. cdist-type__install_file(7)","15.65. cdist-type__install_fstab(7)","15.66. cdist-type__install_generate_fstab(7)","15.67. cdist-type__install_mkfs(7)","15.68. cdist-type__install_mount(7)","15.69. cdist-type__install_partition_msdos(7)","15.70. cdist-type__install_partition_msdos_apply(7)","15.71. cdist-type__install_reboot(7)","15.72. cdist-type__install_reset_disk(7)","15.73. cdist-type__install_stage(7)","15.74. cdist-type__install_umount(7)","15.75. cdist-type__iptables_apply(7)","15.76. cdist-type__iptables_rule(7)","15.77. cdist-type__issue(7)","15.78. cdist-type__jail(7)","15.79. cdist-type__jail_freebsd10(7)","15.80. cdist-type__jail_freebsd9(7)","15.81. cdist-type__key_value(7)","15.82. cdist-type__keyboard(7)","15.83. cdist-type__letsencrypt_cert(7)","15.84. cdist-type__line(7)","15.85. cdist-type__link(7)","15.86. cdist-type__locale(7)","15.87. cdist-type__locale_system(7)","15.88. cdist-type__motd(7)","15.89. cdist-type__mount(7)","15.90. cdist-type__mysql_database(7)","15.91. cdist-type__package(7)","15.92. cdist-type__package_akp(7)","15.93. cdist-type__package_apt(7)","15.94. cdist-type__package_dpkg(7)","15.95. cdist-type__package_emerge(7)","15.96. cdist-type__package_emerge_dependencies(7)","15.97. cdist-type__package_luarocks(7)","15.98. cdist-type__package_opkg(7)","15.99. cdist-type__package_pacman(7)","15.100. cdist-type__package_pip(7)","15.101. cdist-type__package_pkg_freebsd(7)","15.102. cdist-type__package_pkg(7)","15.103. cdist-type__package_pkgng_freebsd(7)","15.104. cdist-type__package_rubygem(7)","15.105. cdist-type__package_update_index(7)","15.106. cdist-type__package_upgrade_all(7)","15.107. cdist-type__package_yum(7)","15.108. cdist-type__package_zypper(7)","15.109. cdist-type__pacman_conf(7)","15.110. cdist-type__pacman_conf_integrate(7)","15.111. cdist-type__pf_apply(7)","15.112. cdist-type__pf_ruleset(7)","15.113. cdist-type__ping(7)","15.114. cdist-type__postfix(7)","15.115. cdist-type__postfix_master(7)","15.116. cdist-type__postfix_postconf(7)","15.117. cdist-type__postfix_postmap(7)","15.118. cdist-type__postfix_reload(7)","15.119. cdist-type__postgres_database(7)","15.120. cdist-type__postgres_extension(7)","15.121. cdist-type__postgres_role(7)","15.122. cdist-type__process(7)","15.123. cdist-type__prometheus_alertmanager(7)","15.124. cdist-type__prometheus_exporter(7)","15.125. cdist-type__prometheus_server(7)","15.126. cdist-type__pyvenv(7)","15.127. cdist-type__qemu_img(7)","15.128. cdist-type__rbenv(7)","15.129. cdist-type__rsync(7)","15.130. cdist-type__rvm(7)","15.131. cdist-type__rvm_gemset(7)","15.132. cdist-type__rvm_gemset(7)","15.133. cdist-type__rvm_ruby(7)","15.134. cdist-type__ssh_authorized_key(7)","15.135. cdist-type__ssh_authorized_keys(7)","15.136. cdist-type__ssh_dot_ssh(7)","15.137. cdist-type__staged_file(7)","15.138. cdist-type__start_on_boot(7)","15.139. cdist-type__sysctl(7)","15.140. cdist-type__systemd_unit(7)","15.141. cdist-type__timezone(7)","15.142. cdist-type__ufw(7)","15.143. cdist-type__ufw_rule(7)","15.144. cdist-type__update_alternatives(7)","15.145. cdist-type__user(7)","15.146. cdist-type__user_groups(7)","15.147. cdist-type__yum_repo(7)","15.148. cdist-type__zypper_repo(7)","15.149. cdist-type__zypper_service(7)"],titleterms:{"":16,"boolean":[31,38,41,46,47,50,51,55,62,65,66,68,69,70,78,85,93,96,103,108,109,110,111,113,114,119,123,124,133,136,145,151,153,154,155,162,163,165,170,175,177,179],"case":14,"class":14,"new":[0,6,14,24,26],The:24,Using:[9,23,24],__sample_bottle_host:16,__sample_nginx_http_letsencrypt_and_ssl_redirect:16,access:24,add:29,also:[30,41,47,49,51,52,54,55,56,57,58,59,60,61,62,63,64,65,66,67,75,76,79,80,87,90,95,97,98,100,105,106,108,109,110,114,116,117,122,123,124,125,126,127,128,129,130,131,132,133,134,137,138,139,140,141,142,145,146,149,150,151,152,153,154,155,157,159,160,161,162,163,164,165,166,167,168,172,173,174,175],applic:16,author:[29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179],avail:[7,11],banner:29,base:[14,27],best:0,bootstrap:1,bottl:16,branch:1,bug:6,build:7,cach:[2,20,29],can:24,caus:0,caveat:[13,29,71,72,108,109,110,133],cdist:[0,6,7,8,9,16,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179],cdist_order_depend:0,certif:16,chat:21,code:[6,20],command:[14,18,24],commerci:21,complet:16,config:[3,24,29],configur:[0,1,3,9,16,27,28,29],connect:0,consid:23,content:0,convent:6,copi:[18,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179],creat:[10,16],creation:[14,16],cycl:0,databas:[9,16],debian:29,debug:23,defin:[10,24],del:29,depend:[0,10,27],descript:[2,3,4,8,9,10,11,13,14,19,20,22,24,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179],develop:0,devuan:29,differ:0,directori:[1,16],distribut:27,dive:16,document:7,dummi:14,dump:[23,30],easili:0,encrypt:16,environ:[0,17,24,29],error:23,everywher:6,exampl:[4,6,8,9,10,11,13,14,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179],exec:18,execut:[0,10,20],exit:29,explor:[4,17,24,124],extern:9,featur:5,file:[3,29],format:[3,29],from:[1,7,10,24,26],gencod:[16,24],gener:[20,24,26,29],git:[6,7,26],group:0,hack:6,helper:23,highli:27,hint:24,host:[7,9,16,29],hostfil:29,how:[6,7,24,26],html:7,http:16,idiom:24,implement:14,includ:24,inclus:6,inform:[20,111],init:16,initi:[10,20],input:24,instal:[7,16,24,26,29],instanc:24,instruct:26,integr:8,interfac:9,introduct:[9,16],inventori:[9,29],kill:0,known:27,languag:27,layout:16,let:16,level:24,librari:8,linkedin:21,list:[16,21,29],local:2,locat:1,log:24,mail:21,maintain:0,man:7,manag:[27,28],manifest:[10,16,20,23,24],manipul:9,master:0,messag:[11,40,50,68,76,77,78,85,86,93,94,108,109,110,111,113,114,115,124,133,135,152,159,164,170,175],modul:14,more:[27,111],multi:0,multipl:[0,31,41,113,159],name:[29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179],next:16,nginx:16,nonparallel:24,note:29,object:[2,17,20],one:24,onli:24,open:16,oper:12,option:[30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,161,164,165,166,167,168,170,171,172,173,175,176,177,178,179],order:10,origin:1,other:0,output:19,overrid:10,overview:2,packag:[7,16,26],parallel:[0,13],paramet:[16,24,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179],passwordless:0,path:[17,29],pattern:29,peril:0,postgresql:16,power:27,practic:0,preo:[14,29],prepar:16,publish:1,push:27,python:[7,16,24,26],quickstart:15,read:17,real:16,redirect:16,refer:17,remot:[16,18],report:6,repositori:0,requir:[7,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,76,77,78,79,80,81,82,83,84,85,86,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,153,154,155,156,159,160,161,162,163,164,165,167,168,169,170,171,174,175,176,177,178,179],retriev:20,run:[20,24],safe:26,save:19,scalabl:27,script:[23,24,27],see:[30,41,47,49,51,52,54,55,56,57,58,59,60,61,62,63,64,65,66,67,75,76,79,80,87,90,95,97,98,100,105,106,108,109,110,114,116,117,122,123,124,125,126,127,128,129,130,131,132,133,134,137,138,139,140,141,142,145,146,149,150,151,152,153,154,155,157,159,160,161,162,163,164,165,166,167,168,172,173,174,175],separ:0,server:16,setup:[0,1],shell:[0,27,29],should:27,simpl:14,singleton:24,sourc:7,speed:0,split:10,ssh:0,stage:20,state:10,statu:29,stdin:24,stream:19,stuff:6,sub:14,submit:6,summari:20,support:[12,21],synopsi:[24,29,30],system:12,tag:29,target:[7,20],templat:0,test:0,than:27,time:24,tipic:14,trigger:[14,22,29],troubleshoot:23,trust:0,type:[0,6,10,16,17,24,25],type__acl:31,type__apt_default_releas:32,type__apt_kei:33,type__apt_key_uri:34,type__apt_mark:35,type__apt_norecommend:36,type__apt_ppa:37,type__apt_sourc:38,type__apt_update_index:39,type__block:40,type__ccollect_sourc:41,type__cdist:42,type__cdist_preos_trigg:43,type__cdistmark:44,type__check_messag:45,type__chroot_mount:46,type__chroot_umount:47,type__clean_path:48,type__config_fil:49,type__consul:50,type__consul_ag:51,type__consul_check:52,type__consul_reload:53,type__consul_servic:54,type__consul_templ:55,type__consul_template_templ:56,type__consul_watch_check:57,type__consul_watch_ev:58,type__consul_watch_kei:59,type__consul_watch_keyprefix:60,type__consul_watch_nod:61,type__consul_watch_servic:[62,63],type__cron:64,type__daemontool:65,type__daemontools_servic:66,type__debconf_set_select:67,type__directori:[68,93],type__dock:69,type__docker_compos:70,type__docker_config:71,type__docker_secret:72,type__docker_stack:73,type__docker_swarm:74,type__dog_vdi:75,type__dot_fil:76,type__fil:77,type__filesystem:78,type__firewalld_rul:79,type__firewalld_start:80,type__git:81,type__go_get:82,type__golang_from_vendor:83,type__grafana_dashboard:84,type__group:85,type__host:87,type__hostnam:86,type__install_bootloader_grub:88,type__install_chroot_mount:89,type__install_chroot_umount:90,type__install_config:91,type__install_coreo:92,type__install_fil:94,type__install_fstab:95,type__install_generate_fstab:96,type__install_mkf:97,type__install_mount:98,type__install_partition_msdo:99,type__install_partition_msdos_appli:100,type__install_reboot:101,type__install_reset_disk:102,type__install_stag:103,type__install_umount:104,type__iptables_appli:105,type__iptables_rul:106,type__issu:107,type__jail:108,type__jail_freebsd10:109,type__jail_freebsd9:110,type__key_valu:111,type__keyboard:112,type__letsencrypt_cert:113,type__lin:114,type__link:115,type__local:116,type__locale_system:117,type__motd:118,type__mount:119,type__mysql_databas:120,type__p:143,type__packag:121,type__package_akp:122,type__package_apt:123,type__package_dpkg:124,type__package_emerg:125,type__package_emerge_depend:126,type__package_luarock:127,type__package_opkg:128,type__package_pacman:129,type__package_pip:130,type__package_pkg:132,type__package_pkg_freebsd:131,type__package_pkgng_freebsd:133,type__package_rubygem:134,type__package_update_index:135,type__package_upgrade_al:136,type__package_yum:137,type__package_zypp:138,type__pacman_conf:139,type__pacman_conf_integr:140,type__pf_appli:141,type__pf_ruleset:142,type__postfix:144,type__postfix_mast:145,type__postfix_postconf:146,type__postfix_postmap:147,type__postfix_reload:148,type__postgres_databas:149,type__postgres_extens:150,type__postgres_rol:151,type__process:152,type__prometheus_alertmanag:153,type__prometheus_export:154,type__prometheus_serv:155,type__pyvenv:156,type__qemu_img:157,type__rbenv:158,type__rsync:159,type__rvm:160,type__rvm_gemset:[161,162],type__rvm_rubi:163,type__ssh_authorized_kei:[164,165],type__ssh_dot_ssh:166,type__staged_fil:167,type__start_on_boot:168,type__sysctl:169,type__systemd_unit:170,type__timezon:171,type__ufw:172,type__ufw_rul:173,type__update_altern:174,type__us:175,type__user_group:176,type__yum_repo:177,type__zypper_repo:178,type__zypper_servic:179,typewrit:24,ubuntu:29,unobvi:0,updat:[1,26],upgrad:26,upstream:[6,16,24],usabl:28,usag:24,use:[14,24,27],user:16,using:[7,8,9,14],uwsgi:16,variabl:[17,24],version:[7,26],welcom:6,what:16,why:27,work:[0,1],workflow:6,world:16,write:[14,17,24],zero:27}}) \ No newline at end of file