diff --git a/src/extra/manual/beta/_sources/cdist-support.rst.txt b/src/extra/manual/beta/_sources/cdist-support.rst.txt index 19afde2f..f9f61f01 100644 --- a/src/extra/manual/beta/_sources/cdist-support.rst.txt +++ b/src/extra/manual/beta/_sources/cdist-support.rst.txt @@ -3,7 +3,7 @@ Support Chat ~~~~ -Chat with us: `ungleich chat `_. +Chat with us on `#cdist:ungleich.ch `_. Mailing list ~~~~~~~~~~~~ diff --git a/src/extra/manual/beta/_sources/man7/cdist-type__cron.rst.txt b/src/extra/manual/beta/_sources/man7/cdist-type__cron.rst.txt index d0694738..e39bfb5c 100644 --- a/src/extra/manual/beta/_sources/man7/cdist-type__cron.rst.txt +++ b/src/extra/manual/beta/_sources/man7/cdist-type__cron.rst.txt @@ -21,6 +21,11 @@ command OPTIONAL PARAMETERS ------------------- +**NOTE**: All time-related parameters (``--minute``, ``--hour``, ``--day_of_month`` +``--month`` and ``--day_of_week``) defaults to ``*``, which means to execute it +**always**. If you set ``--hour 0`` to execute the cronjob only at midnight, it +will execute **every** minute in the first hour of the morning all days. + state Either present or absent. Defaults to present. minute diff --git a/src/extra/manual/beta/_sources/man7/cdist-type__file_old.rst.txt b/src/extra/manual/beta/_sources/man7/cdist-type__file_old.rst.txt index 7a0603bb..2f3b9e69 100644 --- a/src/extra/manual/beta/_sources/man7/cdist-type__file_old.rst.txt +++ b/src/extra/manual/beta/_sources/man7/cdist-type__file_old.rst.txt @@ -50,13 +50,13 @@ state create or modify it group - Group to chgrp to. + Group to chgrp to. Defaults to ``root``. mode - Unix permissions, suitable for chmod. + Unix permissions, suitable for chmod. Defaults to a very secure ``0600``. owner - User to chown to. + User to chown to. Defaults to ``root``. source If supplied, copy this file from the host running cdist to the target. diff --git a/src/extra/manual/beta/_sources/man7/cdist-type__link.rst.txt b/src/extra/manual/beta/_sources/man7/cdist-type__link.rst.txt index fe0ce425..2e81aea9 100644 --- a/src/extra/manual/beta/_sources/man7/cdist-type__link.rst.txt +++ b/src/extra/manual/beta/_sources/man7/cdist-type__link.rst.txt @@ -18,7 +18,7 @@ source Specifies the link source. type - Specifies the link type: Either hard or symoblic. + Specifies the link type: Either hard or symbolic. OPTIONAL PARAMETERS diff --git a/src/extra/manual/beta/_sources/man7/cdist-type__pyvenv.rst.txt b/src/extra/manual/beta/_sources/man7/cdist-type__pyvenv.rst.txt index d7de92fa..8085ff12 100644 --- a/src/extra/manual/beta/_sources/man7/cdist-type__pyvenv.rst.txt +++ b/src/extra/manual/beta/_sources/man7/cdist-type__pyvenv.rst.txt @@ -9,7 +9,7 @@ cdist-type__pyvenv - Create or remove python virtual environment DESCRIPTION ----------- This cdist type allows you to create or remove python virtual -environment using pyvenv. +environment using pyvenv on python3 -m venv. It assumes pyvenv is already installed. Concrete package depends on concrete OS and/or OS version/distribution. Ensure this for e.g. in your init manifest as in the following example: @@ -57,7 +57,7 @@ EXAMPLES __pyvenv /home/services/djangoenv - # Use specific pyvenv + # Use specific pyvenv __pyvenv /home/foo/fooenv --pyvenv /usr/local/bin/pyvenv-3.4 # Create python virtualenv for user foo. @@ -76,4 +76,3 @@ COPYING ------- Copyright \(C) 2016 Darko Poljak. Free use of this software is granted under the terms of the GNU General Public License v3 or later (GPLv3+). - diff --git a/src/extra/manual/beta/_sources/man7/cdist-type__ssh_authorized_key.rst.txt b/src/extra/manual/beta/_sources/man7/cdist-type__ssh_authorized_key.rst.txt index 087a3dae..5bae02aa 100644 --- a/src/extra/manual/beta/_sources/man7/cdist-type__ssh_authorized_key.rst.txt +++ b/src/extra/manual/beta/_sources/man7/cdist-type__ssh_authorized_key.rst.txt @@ -15,25 +15,27 @@ This type was created to be used by the __ssh_authorized_keys type. REQUIRED PARAMETERS ------------------- file - the authorized_keys file to which the given key should be added + The authorized_keys file where the given key should be managed. key - a string containing the ssh keytype, base 64 encoded key and optional - trailing comment which shall be added to the given authorized_keys file. + The ssh key which shall be managed in this authorized_keys file. + Must be a string containing the ssh keytype, base 64 encoded key and + optional trailing comment which shall be added to the given + authorized_keys file. OPTIONAL PARAMETERS ------------------- comment - explicit comment instead of the one which may be trailing the given key + Use this comment instead of the one which may be trailing in the key. option - an option to set for this authorized_key entry. + An option to set for this authorized_key entry. Can be specified multiple times. See sshd(8) for available options. state - if the given keys should be 'present' or 'absent', defaults to 'present'. + If the managed key should be 'present' or 'absent', defaults to 'present'. MESSAGES @@ -64,7 +66,7 @@ EXAMPLES SEE ALSO -------- -:strong:`cdist__ssh_authorized_keys`\ (7), :strong:`sshd`\ (8) +:strong:`cdist-type__ssh_authorized_keys`\ (7), :strong:`sshd`\ (8) AUTHORS diff --git a/src/extra/manual/beta/_sources/man7/cdist-type__ssh_authorized_keys.rst.txt b/src/extra/manual/beta/_sources/man7/cdist-type__ssh_authorized_keys.rst.txt index ba310ff9..93357b1d 100644 --- a/src/extra/manual/beta/_sources/man7/cdist-type__ssh_authorized_keys.rst.txt +++ b/src/extra/manual/beta/_sources/man7/cdist-type__ssh_authorized_keys.rst.txt @@ -20,42 +20,45 @@ then left to the user to ensure that the file exists and that ownership and permissions work with ssh. -REQUIRED PARAMETERS -------------------- +REQUIRED MULTIPLE PARAMETERS +---------------------------- key - the ssh key which shall be added to this authorized_keys file. - Must be a string and can be specified multiple times. + An ssh key which shall be managed in this authorized_keys file. + Must be a string containing the ssh keytype, base 64 encoded key and + optional trailing comment which shall be added to the given + authorized_keys file. + Can be specified multiple times. OPTIONAL PARAMETERS ------------------- comment - explicit comment instead of the one which may be trailing the given key + Use this comment instead of the one which may be trailing in each key. file - an alternative destination file, defaults to ~$owner/.ssh/authorized_keys + An alternative destination file, defaults to ~$owner/.ssh/authorized_keys. option - an option to set for all created authorized_key entries. + An option to set for all authorized_key entries in the key parameter. Can be specified multiple times. See sshd(8) for available options. owner - the user owning the authorized_keys file, defaults to object_id. + The user owning the authorized_keys file, defaults to object_id. state - if the given keys should be 'present' or 'absent', defaults to 'present'. + If the given keys should be 'present' or 'absent', defaults to 'present'. BOOLEAN PARAMETERS ------------------ noparent - don't create or change ownership and permissions of the directory containing - the authorized_keys file + Don't create or change ownership and permissions of the directory containing + the authorized_keys file. nofile - don't manage existence, ownership and permissions of the the authorized_keys - file + Don't manage existence, ownership and permissions of the the authorized_keys + file. EXAMPLES diff --git a/src/extra/manual/beta/cdist-best-practice.html b/src/extra/manual/beta/cdist-best-practice.html index d02f0ccc..7fd401eb 100644 --- a/src/extra/manual/beta/cdist-best-practice.html +++ b/src/extra/manual/beta/cdist-best-practice.html @@ -8,7 +8,7 @@ - 25. Best practice — cdist 6.5.5 documentation + 25. Best practice — cdist 6.5.6 documentation @@ -23,7 +23,7 @@