diff --git a/.mention-bot b/.mention-bot index c07f85b9fc8..3e132f3f113 100644 --- a/.mention-bot +++ b/.mention-bot @@ -14,4 +14,3 @@ "skipTitle": "Merge forward", "userBlacklist": ["cvrebert", "markusgattol", "olliewalsh", "basepi"] } - diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 9393f0c6f66..bef60a29890 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,9 +1,50 @@ +--- default_language_version: python: python3 exclude: ^(doc/_static/.*|doc/_themes/.*)$ repos: + - repo: https://github.com/pre-commit/pre-commit-hooks + rev: v4.4.0 + hooks: + - id: check-merge-conflict # Check for files that contain merge conflict strings. + - id: trailing-whitespace # Trims trailing whitespace. + args: + - --markdown-linebreak-ext=md + exclude: > + (?x)^( + pkg/macos/pkg-resources/.*\.rtf + )$ + + - id: mixed-line-ending # Replaces or checks mixed line ending. + args: + - --fix=lf + - id: end-of-file-fixer # Makes sure files end in a newline and only a newline. + - id: check-ast # Simply check whether files parse as valid python. + exclude: > + (?x)^( + templates/.* + )$ + - id: check-case-conflict # Check for files with names that would conflict on a + # case-insensitive filesystem like MacOS HFS+ or Windows FAT. + - id: check-json # Attempts to load all json files to verify syntax. + - id: check-symlinks # Checks for symlinks which do not point to anything. + - id: debug-statements # Check for debugger imports and py37+ breakpoint() calls in python source. + exclude: > + (?x)^( + templates/.* + )$ + - id: fix-byte-order-marker # removes UTF-8 byte order marker + - id: forbid-submodules # forbids any submodules in the repository. + - id: fix-encoding-pragma # Remove `# -*- coding: utf-8 -*-` from the top of python files. + args: + - --remove + exclude: > + (?x)^( + salt/ext/.* + )$ + - repo: https://github.com/s0undt3ch/python-tools-scripts rev: "0.10.1" hooks: diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index 3154eedb723..91b09c73752 100644 --- a/CONTRIBUTING.rst +++ b/CONTRIBUTING.rst @@ -272,7 +272,7 @@ contributions! But your PR will be labeled ``Needs Testcase`` and ``Help Wanted`` until someone can get to write the tests/documentation. Of course, if you have a desire but just lack the skill we are more than happy to collaborate and help out! There's the `documentation working -group `__ +group `__ and the `testing working group `__. We also regularly stream our test clinic `live on Twitch `__ every Tuesday afternoon @@ -289,7 +289,7 @@ the ``salt/doc`` folder for documentation. Sphinx is used to generate the documentation, and does require ``imagemagick``. See `Set up imagemagick`_ for more information. -Before submitting a documentation PR, it helps to first build the Salt docs +Before submitting a documentation PR, it helps to first build the Salt docs locally on your machine and preview them. Local previews helps you: - Debug potential documentation output errors before submitting a PR. @@ -297,30 +297,30 @@ locally on your machine and preview them. Local previews helps you: more than 30 minutes to run on a PR. - Ensures the final output looks the way you intended it to look. -To set up your local environment to preview the core Salt and module +To set up your local environment to preview the core Salt and module documentation: #. Install the documentation dependencies. For example, on Ubuntu: :: - + sudo apt-get update sudo apt-get install -y enchant-2 git gcc imagemagick make zlib1g-dev libc-dev libffi-dev g++ libxml2 libxml2-dev libxslt-dev libcurl4-openssl-dev libssl-dev libgnutls28-dev xz-utils inkscape -#. Navigate to the folder where you store your Salt repository and remove any +#. Navigate to the folder where you store your Salt repository and remove any `.nox` directories that might be in that folder: :: - + rm -rf .nox -#. Install `pyenv` for the version of Python needed to run the docs. As of the +#. Install `pyenv` for the version of Python needed to run the docs. As of the time of writing, the Salt docs theme is not compatible with Python 3.10, so you'll need to run 3.9 or earlier. For example: :: - + pyenv install 3.7.15 pyenv virtualenv 3.7.15 salt-docs echo 'salt-docs' > .python-version @@ -328,14 +328,14 @@ documentation: #. Activate `pyenv` if it's not auto-activated: :: - + pyenv exec pip install -U pip setuptools wheel #. Install `nox` into your pyenv environment, which is the utility that will build the Salt documentation: :: - + pyenv exec pip install nox @@ -346,7 +346,7 @@ with this one-liner: python -m nox -e 'docs-html(compress=False, clean=False)'; cd doc/_build/html; python -m webbrowser http://localhost:8000/contents.html; python -m http.server -The first time you build the docs, it will take a while because there are a +The first time you build the docs, it will take a while because there are a *lot* of modules. Maybe you should go grab some dessert if you already finished that sandwich. But once nox and Sphinx are done building the docs, python should launch your default browser with the URL @@ -581,7 +581,7 @@ When you open your PR, a reviewer will get automatically assigned. If your PR is submitted during the week you should be able to expect some kind of communication within that business day. If your tests are passing and we're not in a code freeze, ideally your code will be merged -that week or month. If you haven't heard from your assigned reviewer, ping them +that week or month. If you haven't heard from your assigned reviewer, ping them on GitHub, `irc `__, or Community Slack. It's likely that your reviewer will leave some comments that need diff --git a/README.rst b/README.rst index 43b31c23574..f5121f1a74d 100644 --- a/README.rst +++ b/README.rst @@ -41,54 +41,54 @@ About Salt ========== -Built on Python, Salt is an event-driven automation tool and framework to -deploy, configure, and manage complex IT systems. Use Salt to automate common -infrastructure administration tasks and ensure that all the components of your +Built on Python, Salt is an event-driven automation tool and framework to +deploy, configure, and manage complex IT systems. Use Salt to automate common +infrastructure administration tasks and ensure that all the components of your infrastructure are operating in a consistent desired state. Salt has many possible uses, including configuration management, which involves: * Managing operating system deployment and configuration. * Installing and configuring software applications and services. -* Managing servers, virtual machines, containers, databases, web servers, +* Managing servers, virtual machines, containers, databases, web servers, network devices, and more. * Ensuring consistent configuration and preventing configuration drift. -Salt is ideal for configuration management because it is pluggable, -customizable, and plays well with many existing technologies. Salt enables you -to deploy and manage applications that use any tech stack running on nearly any -`operating system `_, -including different types of network devices such as switches and routers from a +Salt is ideal for configuration management because it is pluggable, +customizable, and plays well with many existing technologies. Salt enables you +to deploy and manage applications that use any tech stack running on nearly any +`operating system `_, +including different types of network devices such as switches and routers from a variety of vendors. In addition to configuration management Salt can also: -* Automate and orchestrate routine IT processes, such as common required tasks +* Automate and orchestrate routine IT processes, such as common required tasks for scheduled server downtimes or upgrading operating systems or applications. -* Create self-aware, self-healing systems that can automatically respond to +* Create self-aware, self-healing systems that can automatically respond to outages, common administration problems, or other important events. About our sponsors ================== -Salt powers VMware's `vRealize Automation SaltStack Config`_, and can be found -under the hood of products from Juniper, Cisco, Cloudflare, Nutanix, SUSE, and +Salt powers VMware's `vRealize Automation SaltStack Config`_, and can be found +under the hood of products from Juniper, Cisco, Cloudflare, Nutanix, SUSE, and Tieto, to name a few. The original sponsor of our community, SaltStack, was `acquired by VMware in 2020 `_. The Salt Project remains an open source ecosystem that VMware supports and -contributes to. VMware ensures the code integrity and quality of the Salt -modules by acting as the official sponsor and manager of the Salt project. Many -of the core Salt Project contributors are also VMware employees. This team -carefully reviews and enhances the Salt modules to ensure speed, quality, and +contributes to. VMware ensures the code integrity and quality of the Salt +modules by acting as the official sponsor and manager of the Salt project. Many +of the core Salt Project contributors are also VMware employees. This team +carefully reviews and enhances the Salt modules to ensure speed, quality, and security. Download and install Salt ========================= Salt is tested and packaged to run on CentOS, Debian, RHEL, Ubuntu, MacOS, -Windows, and more. Download Salt and get started now. See -`supported operating systems `_ +Windows, and more. Download Salt and get started now. See +`supported operating systems `_ for more information. To download and install Salt, see: @@ -100,8 +100,8 @@ Technical support ================= Report bugs or problems using Salt by opening an issue: ``_ -To join our community forum where you can exchange ideas, best practices, -discuss technical support questions, and talk to project maintainers, join our +To join our community forum where you can exchange ideas, best practices, +discuss technical support questions, and talk to project maintainers, join our Slack workspace: `Salt Project Community Slack`_ @@ -137,11 +137,11 @@ refer to the `SECURITY.md`_ file found in this repository. Join our community ================== -Salt is built by the Salt Project community, which includes more than 3,000 -contributors working in roles just like yours. This well-known and trusted -community works together to improve the underlying technology and extend Salt by -creating a variety of execution and state modules to accomplish the most common -tasks or solve the most important problems that people in your role are likely +Salt is built by the Salt Project community, which includes more than 3,000 +contributors working in roles just like yours. This well-known and trusted +community works together to improve the underlying technology and extend Salt by +creating a variety of execution and state modules to accomplish the most common +tasks or solve the most important problems that people in your role are likely to face. If you want to help extend Salt or solve a problem with Salt, you can join our diff --git a/SUPPORT.rst b/SUPPORT.rst index 85673191059..bfe9d1cbeae 100644 --- a/SUPPORT.rst +++ b/SUPPORT.rst @@ -30,4 +30,3 @@ guidelines for filing bug reports: **SaltStack Support** - If you need dedicated, prioritized support, please consider a SaltStack Support package that fits your needs: ``_ - diff --git a/changelog/59439.changed b/changelog/59439.changed index 6653fb5334c..282c55a658f 100644 --- a/changelog/59439.changed +++ b/changelog/59439.changed @@ -1 +1 @@ -Improve support for listing macOS brew casks \ No newline at end of file +Improve support for listing macOS brew casks diff --git a/changelog/59917.removed b/changelog/59917.removed index b795ffdceb7..a91e76d6acd 100644 --- a/changelog/59917.removed +++ b/changelog/59917.removed @@ -1 +1 @@ -Remove and deprecate the __orchestration__ key from salt.runner and salt.wheel return data. To get it back, set features.enable_deprecated_orchestration_flag master configuration option to True. The flag will be completely removed in Salt 3008 Argon. \ No newline at end of file +Remove and deprecate the __orchestration__ key from salt.runner and salt.wheel return data. To get it back, set features.enable_deprecated_orchestration_flag master configuration option to True. The flag will be completely removed in Salt 3008 Argon. diff --git a/changelog/60430.added b/changelog/60430.added index 2836571c583..cee2d275854 100644 --- a/changelog/60430.added +++ b/changelog/60430.added @@ -1 +1 @@ -Added ability for `salt.wait_for_event` to handle `event_id`s that have a list value. \ No newline at end of file +Added ability for `salt.wait_for_event` to handle `event_id`s that have a list value. diff --git a/changelog/60722.added b/changelog/60722.added index 626ecacdd2f..183fbc8b8e9 100644 --- a/changelog/60722.added +++ b/changelog/60722.added @@ -1 +1 @@ -Added .0 back to our versioning scheme for future versions (e.g. 3006.0) \ No newline at end of file +Added .0 back to our versioning scheme for future versions (e.g. 3006.0) diff --git a/changelog/60915.fixed b/changelog/60915.fixed index 37d9515e41c..f3c2644c723 100644 --- a/changelog/60915.fixed +++ b/changelog/60915.fixed @@ -1 +1 @@ -Fixed parsing new format of terraform states in roster.terraform \ No newline at end of file +Fixed parsing new format of terraform states in roster.terraform diff --git a/changelog/61727.fixed b/changelog/61727.fixed index 44538b9043d..296c6528e0a 100644 --- a/changelog/61727.fixed +++ b/changelog/61727.fixed @@ -1 +1 @@ -Fix SoftLayer configuration not raising an exception when a domain is missing \ No newline at end of file +Fix SoftLayer configuration not raising an exception when a domain is missing diff --git a/changelog/62220.fixed b/changelog/62220.fixed index 979912b2f6f..ab3eec5d151 100644 --- a/changelog/62220.fixed +++ b/changelog/62220.fixed @@ -1 +1 @@ -Added EndeavourOS to the Arch os_family. \ No newline at end of file +Added EndeavourOS to the Arch os_family. diff --git a/changelog/62281.fixed b/changelog/62281.fixed index 60135ec4280..f8bf23a7ec7 100644 --- a/changelog/62281.fixed +++ b/changelog/62281.fixed @@ -1 +1 @@ -Fix Salt Package Manager (SPM) exception when calling spm create_repo . \ No newline at end of file +Fix Salt Package Manager (SPM) exception when calling spm create_repo . diff --git a/changelog/62578.added b/changelog/62578.added index 6320ff71f27..1439da3da17 100644 --- a/changelog/62578.added +++ b/changelog/62578.added @@ -1,2 +1 @@ Adds __env__substitution to ext_pillar.stack; followup of #61531, improved exception handling for stacked template (jinja) template rendering and yaml parsing in ext_pillar.stack - diff --git a/changelog/62624.fixed b/changelog/62624.fixed index ef3b1fd79e8..661f97e3b46 100644 --- a/changelog/62624.fixed +++ b/changelog/62624.fixed @@ -1 +1 @@ -updated rest_cherry/app to properly detect arg sent as a string as curl will do when only one arg is supplied. +updated rest_cherry/app to properly detect arg sent as a string as curl will do when only one arg is supplied. diff --git a/changelog/62761.added b/changelog/62761.added index 29944baaf8b..b0cd0d4a3cb 100644 --- a/changelog/62761.added +++ b/changelog/62761.added @@ -1 +1 @@ -Added "connected_devices" feature to netbox pillar module. It contains extra information about devices connected to the minion \ No newline at end of file +Added "connected_devices" feature to netbox pillar module. It contains extra information about devices connected to the minion diff --git a/changelog/63050.changed b/changelog/63050.changed index 64712d17c54..c8323b39ab8 100644 --- a/changelog/63050.changed +++ b/changelog/63050.changed @@ -1,5 +1,5 @@ netapi_enable_clients option to allow enabling/disabling of clients in salt-api. By default all clients will now be disabled. Users of salt-api will need to update their master config to enable the clients that they use. Not adding -the netapi_enable_clients option with required clients to the master config will +the netapi_enable_clients option with required clients to the master config will disable salt-api. diff --git a/changelog/63067.added b/changelog/63067.added index becc2cc337a..bd99632107b 100644 --- a/changelog/63067.added +++ b/changelog/63067.added @@ -1 +1 @@ -salt-cloud support IMDSv2 tokens when using 'use-instance-role-credentials' \ No newline at end of file +salt-cloud support IMDSv2 tokens when using 'use-instance-role-credentials' diff --git a/cicd/golden-images.json b/cicd/golden-images.json index bfdb1dcd0b5..5b1e5936e3c 100644 --- a/cicd/golden-images.json +++ b/cicd/golden-images.json @@ -219,4 +219,4 @@ "is_windows": "true", "ssh_username": "Administrator" } -} \ No newline at end of file +} diff --git a/cicd/kitchen_template.yml b/cicd/kitchen_template.yml index 99aad6f59cc..5f67437c3e0 100644 --- a/cicd/kitchen_template.yml +++ b/cicd/kitchen_template.yml @@ -47,4 +47,3 @@ - artifacts/ - .kitchen/ expire_in: 6 months - diff --git a/conf/roster b/conf/roster index e5a83183844..3eac2fa0706 100644 --- a/conf/roster +++ b/conf/roster @@ -6,4 +6,3 @@ # sudo: True # Whether to sudo to root, not enabled by default #web2: # host: 192.168.42.2 - diff --git a/conf/suse/master b/conf/suse/master index 24c38973163..7168441dc41 100644 --- a/conf/suse/master +++ b/conf/suse/master @@ -538,8 +538,8 @@ syndic_user: salt # variable_end_string: '}}' # comment_start_string: '{#' # comment_end_string: '#}' -# line_statement_prefix: -# line_comment_prefix: +# line_statement_prefix: +# line_comment_prefix: # trim_blocks: False # lstrip_blocks: False # newline_sequence: '\n' @@ -553,8 +553,8 @@ syndic_user: salt # variable_end_string: '}}' # comment_start_string: '{#' # comment_end_string: '#}' -# line_statement_prefix: -# line_comment_prefix: +# line_statement_prefix: +# line_comment_prefix: # trim_blocks: False # lstrip_blocks: False # newline_sequence: '\n' diff --git a/doc/_incl/extend_with_require_watch.rst b/doc/_incl/extend_with_require_watch.rst index 9491b727129..3f22ebada94 100644 --- a/doc/_incl/extend_with_require_watch.rst +++ b/doc/_incl/extend_with_require_watch.rst @@ -1,4 +1,4 @@ .. admonition:: Using extend with require or watch The ``extend`` statement works differently for ``require`` or ``watch``. - It appends to, rather than replacing the requisite component. \ No newline at end of file + It appends to, rather than replacing the requisite component. diff --git a/doc/_incl/grains_passwords.rst b/doc/_incl/grains_passwords.rst index 3958683431e..5548ca03757 100644 --- a/doc/_incl/grains_passwords.rst +++ b/doc/_incl/grains_passwords.rst @@ -3,4 +3,4 @@ Grains can be set by users that have access to the minion configuration files on the local system, making them less secure than other identifiers in Salt. Avoid storing sensitive data, such as passwords or keys, on minions. Instead, make - use of :ref:`pillar` and/or :ref:`sdb`. \ No newline at end of file + use of :ref:`pillar` and/or :ref:`sdb`. diff --git a/doc/_incl/jinja_security.rst b/doc/_incl/jinja_security.rst index e9ecf7542a0..e8edd635e04 100644 --- a/doc/_incl/jinja_security.rst +++ b/doc/_incl/jinja_security.rst @@ -3,4 +3,4 @@ :ref:`Jinja ` supports a `secure, sandboxed template execution environment `__ that Salt takes advantage of. Other text :ref:`renderers` do not support this - functionality, so Salt highly recommends usage of ``jinja`` / ``jinja|yaml``. \ No newline at end of file + functionality, so Salt highly recommends usage of ``jinja`` / ``jinja|yaml``. diff --git a/doc/_incl/requisite_incl.rst b/doc/_incl/requisite_incl.rst index a8c78dc4904..b478527d6b1 100644 --- a/doc/_incl/requisite_incl.rst +++ b/doc/_incl/requisite_incl.rst @@ -1,10 +1,10 @@ **Before continuing** make sure you have a working Salt installation by -following the instructions in the +following the instructions in the `Salt install guide `_. .. admonition:: Stuck? - The Salt Project community can help offer advice and help troubleshoot + The Salt Project community can help offer advice and help troubleshoot technical issues as you're learning about Salt. One of the best places to - talk to the community is on the + talk to the community is on the `Salt Project Slack workspace `_. diff --git a/doc/_templates/autosummary.rst.tmpl b/doc/_templates/autosummary.rst.tmpl index 32ee30879c0..e70b361fdd0 100644 --- a/doc/_templates/autosummary.rst.tmpl +++ b/doc/_templates/autosummary.rst.tmpl @@ -3,4 +3,4 @@ {{ underline }} .. automodule:: {{ fullname }} - :members: \ No newline at end of file + :members: diff --git a/doc/cheatsheet/salt.tex b/doc/cheatsheet/salt.tex index fc1ea6a7abd..9e85ebf14e2 100644 --- a/doc/cheatsheet/salt.tex +++ b/doc/cheatsheet/salt.tex @@ -283,4 +283,3 @@ vm.swappiness: \end{multicols} \end{document} - diff --git a/doc/gen_gource b/doc/gen_gource index 727ee7ebf3e..5631136cf4c 100644 --- a/doc/gen_gource +++ b/doc/gen_gource @@ -4,4 +4,3 @@ # # gource -1280x720 -s 0.5 --stop-at-end --hide filenames --highlight-all-users --file-filter po -a 5 --camera-mode overview --disable-progress --disable-bloom --output-ppm-stream - --output-framerate 30 -o - | ffmpeg -y -r 60 -f image2pipe -vcodec ppm -i - -vcodec libvpx -b 10000K gource.webm - diff --git a/doc/glossary.rst b/doc/glossary.rst index 0cb0fc20376..612acef1c0e 100644 --- a/doc/glossary.rst +++ b/doc/glossary.rst @@ -99,7 +99,7 @@ Glossary `. Job Cache - A storage location for job results, which may then be queried by a + A storage location for job results, which may then be queried by a salt runner or an external system. May be local to a salt master or stored externally. @@ -272,4 +272,3 @@ Glossary A master process which can send notices and receive replies from minions. *See also*: :conf_master:`worker_threads`. - diff --git a/doc/man/salt.7 b/doc/man/salt.7 index 5b46f8fecbc..6bdaf8ec858 100644 --- a/doc/man/salt.7 +++ b/doc/man/salt.7 @@ -123947,7 +123947,7 @@ salt \(aq*\(aq bcache.cache_make sdb reserved=10% block_size=4096 .B Parameters .INDENT 7.0 .IP \(bu 2 -\fBreserved\fP \-\- +\fBreserved\fP \-\- .sp if dev is a full device, create a partition table with this size empty. .sp @@ -127020,7 +127020,7 @@ the following characters: a\-z (lowercase), 0\-9, and \- (hyphen). \fBelasticsearch_version\fP (\fI\%str\fP) \-\- String of format X.Y to specify version for the Elasticsearch domain eg. "1.5" or "2.3". .IP \(bu 2 -\fBelasticsearch_cluster_config\fP (\fI\%dict\fP) \-\- +\fBelasticsearch_cluster_config\fP (\fI\%dict\fP) \-\- .sp Dictionary specifying the configuration options for an Elasticsearch domain. Keys (case sensitive) in here are: @@ -127055,7 +127055,7 @@ active and on standby, for the cluster. .UNINDENT .IP \(bu 2 -\fBebs_options\fP (\fI\%dict\fP) \-\- +\fBebs_options\fP (\fI\%dict\fP) \-\- .sp Dict specifying the options to enable or disable and specifying the type and size of EBS storage volumes. @@ -127074,7 +127074,7 @@ Iops (int): Specifies the IOPD for a Provisioned IOPS EBS volume (SSD). .IP \(bu 2 \fBaccess_policies\fP (\fI\%str\fP\fI or \fP\fI\%dict\fP) \-\- Dict or JSON string with the IAM access policy. .IP \(bu 2 -\fBsnapshot_options\fP (\fI\%dict\fP) \-\- +\fBsnapshot_options\fP (\fI\%dict\fP) \-\- .sp Dict specifying the snapshot options. Keys (case sensitive) in here are: @@ -127086,7 +127086,7 @@ Elasticsearch domain. Default value is 0 hours. .UNINDENT .IP \(bu 2 -\fBvpc_options\fP (\fI\%dict\fP) \-\- +\fBvpc_options\fP (\fI\%dict\fP) \-\- .sp Dict with the options to specify the subnets and security groups for the VPC endpoint. @@ -127099,7 +127099,7 @@ SecurityGroupIds (list): The list of security groups for the VPC endpoint. .UNINDENT .IP \(bu 2 -\fBcognito_options\fP (\fI\%dict\fP) \-\- +\fBcognito_options\fP (\fI\%dict\fP) \-\- .sp Dict with options to specify the cognito user and identity pools for Kibana authentication. @@ -127117,7 +127117,7 @@ for accessing Cognito resources. .UNINDENT .IP \(bu 2 -\fBencryption_at_rest_options\fP (\fI\%dict\fP) \-\- +\fBencryption_at_rest_options\fP (\fI\%dict\fP) \-\- .sp Dict specifying the encryption at rest options. Keys (case sensitive) in here are: @@ -127129,7 +127129,7 @@ KmsKeyId (str): Specifies the KMS Key ID for Encryption At Rest options. .UNINDENT .IP \(bu 2 -\fBnode_to_node_encryption_options\fP (\fI\%dict\fP) \-\- +\fBnode_to_node_encryption_options\fP (\fI\%dict\fP) \-\- .sp Dict specifying the node to node encryption options. Keys (case sensitive) in here are: @@ -127145,7 +127145,7 @@ sub\-resources. By default, the value is True. See \fI\%http://docs.aws.amazon.com/elasticsearch\-service/latest/developerguide\fP /es\-createupdatedomains.html#es\-createdomain\-configure\-advanced\-options for more information. .IP \(bu 2 -\fBlog_publishing_options\fP (\fI\%dict\fP) \-\- +\fBlog_publishing_options\fP (\fI\%dict\fP) \-\- .sp Dict with options for various type of logs. The keys denote the type of log file and can be one of the following: @@ -127723,7 +127723,7 @@ Domain names are unique across the domains owned by an account within an AWS region. Domain names must start with a letter or number and can contain the following characters: a\-z (lowercase), 0\-9, and \- (hyphen). .IP \(bu 2 -\fBelasticsearch_cluster_config\fP (\fI\%dict\fP) \-\- +\fBelasticsearch_cluster_config\fP (\fI\%dict\fP) \-\- .sp Dictionary specifying the configuration options for an Elasticsearch domain. Keys (case sensitive) in here are: @@ -127756,7 +127756,7 @@ active and on standby, for the cluster. .UNINDENT .IP \(bu 2 -\fBebs_options\fP (\fI\%dict\fP) \-\- +\fBebs_options\fP (\fI\%dict\fP) \-\- .sp Dict specifying the options to enable or disable and specifying the type and size of EBS storage volumes. @@ -127773,7 +127773,7 @@ Iops (int): Specifies the IOPD for a Provisioned IOPS EBS volume (SSD). .UNINDENT .IP \(bu 2 -\fBsnapshot_options\fP (\fI\%dict\fP) \-\- +\fBsnapshot_options\fP (\fI\%dict\fP) \-\- .sp Dict specifying the snapshot options. Keys (case sensitive) in here are: @@ -127785,7 +127785,7 @@ Elasticsearch domain. Default value is 0 hours. .UNINDENT .IP \(bu 2 -\fBvpc_options\fP (\fI\%dict\fP) \-\- +\fBvpc_options\fP (\fI\%dict\fP) \-\- .sp Dict with the options to specify the subnets and security groups for the VPC endpoint. @@ -127798,7 +127798,7 @@ SecurityGroupIds (list): The list of security groups for the VPC endpoint. .UNINDENT .IP \(bu 2 -\fBcognito_options\fP (\fI\%dict\fP) \-\- +\fBcognito_options\fP (\fI\%dict\fP) \-\- .sp Dict with options to specify the cognito user and identity pools for Kibana authentication. @@ -127824,7 +127824,7 @@ for more information. .IP \(bu 2 \fBaccess_policies\fP (\fIstr/dict\fP) \-\- Dict or JSON string with the IAM access policy. .IP \(bu 2 -\fBlog_publishing_options\fP (\fI\%dict\fP) \-\- +\fBlog_publishing_options\fP (\fI\%dict\fP) \-\- .sp Dict with options for various type of logs. The keys denote the type of log file and can be one of the following: @@ -147502,7 +147502,7 @@ be a problem on Windows versions 2012/8 and later .IP \(bu 2 \fBforce\fP (\fI\%bool\fP) \-\- Run the bootstrap process even if Chocolatey is found in the path. .IP \(bu 2 -\fBsource\fP (\fI\%str\fP) \-\- +\fBsource\fP (\fI\%str\fP) \-\- .sp The location of the \fB\&.nupkg\fP file or \fB\&.ps1\fP file to run from an alternate location. This can be one of the following types of URLs: @@ -147625,7 +147625,7 @@ argument. Required. \fBversion\fP (\fI\%str\fP) \-\- Install a specific version of the package. Defaults to latest version. Default is None. .IP \(bu 2 -\fBsource\fP (\fI\%str\fP) \-\- +\fBsource\fP (\fI\%str\fP) \-\- .sp Chocolatey repository (directory, share or remote URL feed) the package comes from. Defaults to the official Chocolatey feed. @@ -147663,7 +147663,7 @@ default arguments. Default is None. .IP \(bu 2 \fBpackage_args\fP (\fI\%str\fP) \-\- Arguments you want to pass to the package. Default is None. .IP \(bu 2 -\fBallow_multiple\fP (\fI\%bool\fP) \-\- +\fBallow_multiple\fP (\fI\%bool\fP) \-\- .sp Allow multiple versions of the package to be installed. Do not use with \fBforce\fP\&. Does not work with all packages. Default is False. @@ -147672,7 +147672,7 @@ New in version 2017.7.0. .IP \(bu 2 -\fBexecution_timeout\fP (\fI\%str\fP) \-\- +\fBexecution_timeout\fP (\fI\%str\fP) \-\- .sp Chocolatey execution timeout value you want to pass to the installation process. Default is None. @@ -147927,7 +147927,7 @@ None is passed. Default is None. .IP \(bu 2 \fBlocal_only\fP (\fI\%bool\fP) \-\- Display packages only installed locally. Default is False. .IP \(bu 2 -\fBexact\fP (\fI\%bool\fP) \-\- +\fBexact\fP (\fI\%bool\fP) \-\- .sp Display only packages that match \fBnarrow\fP exactly. Default is False. @@ -149085,7 +149085,7 @@ Note: CIMC Mounted vMedia is enabled through BIOS configuration. .IP \(bu 2 \fBremote_share\fP (\fI\%str\fP) \-\- The file share link that will be used to mount the share. This can be NFS, CIFS, or WWW. This .IP \(bu 2 -\fBbe the directory path and not the full path to the remote file.\fP (\fImust\fP) \-\- +\fBbe the directory path and not the full path to the remote file.\fP (\fImust\fP) \-\- .IP \(bu 2 \fBremote_file\fP (\fI\%str\fP) \-\- The name of the remote file to mount. It must reside within remote_share. .IP \(bu 2 @@ -149093,11 +149093,11 @@ Note: CIMC Mounted vMedia is enabled through BIOS configuration. .IP \(bu 2 \fBusername\fP (\fI\%str\fP) \-\- An optional requirement to pass credentials to the remote share. If not provided, an .IP \(bu 2 -\fBconnection attempt will be made.\fP (\fIunauthenticated\fP) \-\- +\fBconnection attempt will be made.\fP (\fIunauthenticated\fP) \-\- .IP \(bu 2 \fBpassword\fP (\fI\%str\fP) \-\- An optional requirement to pass a password to the remote share. If not provided, an .IP \(bu 2 -\fBconnection attempt will be made.\fP \-\- +\fBconnection attempt will be made.\fP \-\- .UNINDENT .UNINDENT .sp @@ -149237,7 +149237,7 @@ New in version 2019.2.0. .IP \(bu 2 \fBpolicy\fP (\fI\%str\fP) \-\- The action to be taken when chassis power is restored after .IP \(bu 2 -\fBunexpected power loss. This can be one of the following\fP (\fIan\fP) \-\- +\fBunexpected power loss. This can be one of the following\fP (\fIan\fP) \-\- .sp reset: The server is allowed to boot up normally when power is restored. The server can restart immediately or, optionally, after a @@ -149251,7 +149251,7 @@ any processes that were running before power was lost. .IP \(bu 2 \fBdelayType\fP (\fI\%str\fP) \-\- If the selected policy is reset, the restart can be .IP \(bu 2 -\fBwith this option. This can be one of the following\fP (\fIdelayed\fP) \-\- +\fBwith this option. This can be one of the following\fP (\fIdelayed\fP) \-\- .sp fixed: The server restarts after a fixed delay. .sp @@ -149260,13 +149260,13 @@ random: The server restarts after a random delay. .IP \(bu 2 \fBdelayValue\fP (\fI\%int\fP) \-\- If a fixed delay is selected, once chassis power is .IP \(bu 2 -\fBand the Cisco IMC has finished rebooting\fP (\fIrestored\fP) \-\- +\fBand the Cisco IMC has finished rebooting\fP (\fIrestored\fP) \-\- .IP \(bu 2 -\fBsystem waits for\fP (\fIthe\fP) \-\- +\fBsystem waits for\fP (\fIthe\fP) \-\- .IP \(bu 2 -\fBspecified number of seconds before restarting the server. Enter an\fP (\fIthe\fP) \-\- +\fBspecified number of seconds before restarting the server. Enter an\fP (\fIthe\fP) \-\- .IP \(bu 2 -\fBbetween 0 and 240.\fP (\fIinteger\fP) \-\- +\fBbetween 0 and 240.\fP (\fIinteger\fP) \-\- .UNINDENT .UNINDENT .sp @@ -150548,7 +150548,7 @@ behavior is to run as the user under which Salt is running. If running on a Windows minion you must also use the \fBpassword\fP argument, and the target user account must be in the Administrators group. .IP \(bu 2 -\fBpassword\fP (\fI\%str\fP) \-\- +\fBpassword\fP (\fI\%str\fP) \-\- .sp Windows only. Required when specifying \fBrunas\fP\&. This parameter will be ignored on non\-Windows platforms. @@ -150564,7 +150564,7 @@ also use "pwsh" for powershell core if present on the system arguments. Set to True to use shell features, such as pipes or redirection. .IP \(bu 2 -\fBenv\fP (\fI\%dict\fP) \-\- +\fBenv\fP (\fI\%dict\fP) \-\- .sp Environment variables to be set prior to execution. .sp @@ -150609,7 +150609,7 @@ returned. .IP \(bu 2 \fBumask\fP (\fI\%str\fP) \-\- The umask (in octal) to use when running the command. .IP \(bu 2 -\fBoutput_encoding\fP (\fI\%str\fP) \-\- +\fBoutput_encoding\fP (\fI\%str\fP) \-\- .sp Control the encoding used to decode the command\(aqs output. @@ -150632,7 +150632,7 @@ New in version 2018.3.0. .IP \(bu 2 -\fBoutput_loglevel\fP (\fI\%str\fP) \-\- +\fBoutput_loglevel\fP (\fI\%str\fP) \-\- .sp Control the loglevel at which the output from the command is logged to the minion log. @@ -150653,7 +150653,7 @@ programs use the return code for signaling and a nonzero exit code doesn\(aqt necessarily mean failure. Pass this argument as \fBTrue\fP to skip logging the output if the command has a nonzero exit code. .IP \(bu 2 -\fBhide_output\fP (\fI\%bool\fP) \-\- +\fBhide_output\fP (\fI\%bool\fP) \-\- .sp If \fBTrue\fP, suppress stdout and stderr in the return data. @@ -150679,7 +150679,7 @@ more interactively to the console and the logs. This is experimental. .IP \(bu 2 \fBsaltenv\fP (\fI\%str\fP) \-\- The salt environment to use. Default is \(aqbase\(aq .IP \(bu 2 -\fBdepth\fP (\fI\%int\fP) \-\- +\fBdepth\fP (\fI\%int\fP) \-\- .sp The number of levels of contained objects to be included. Default is 2. Values greater than 4 seem to greatly increase the time @@ -150907,7 +150907,7 @@ also use "pwsh" for powershell core if present on the system arguments. Set to True to use shell features, such as pipes or redirection. .IP \(bu 2 -\fBenv\fP (\fI\%dict\fP) \-\- +\fBenv\fP (\fI\%dict\fP) \-\- .sp Environment variables to be set prior to execution. .sp @@ -150952,7 +150952,7 @@ returned. .IP \(bu 2 \fBumask\fP (\fI\%str\fP) \-\- The umask (in octal) to use when running the command. .IP \(bu 2 -\fBoutput_encoding\fP (\fI\%str\fP) \-\- +\fBoutput_encoding\fP (\fI\%str\fP) \-\- .sp Control the encoding used to decode the command\(aqs output. @@ -150975,7 +150975,7 @@ New in version 2018.3.0. .IP \(bu 2 -\fBoutput_loglevel\fP (\fI\%str\fP) \-\- +\fBoutput_loglevel\fP (\fI\%str\fP) \-\- .sp Control the loglevel at which the output from the command is logged to the minion log. @@ -151144,7 +151144,7 @@ under which Salt is running if \fBrunas\fP is not specified). command to be run using the \fBstdin\fP parameter. This can be useful in cases where sensitive information must be read from standard input. .IP \(bu 2 -\fBrunas\fP (\fI\%str\fP) \-\- +\fBrunas\fP (\fI\%str\fP) \-\- .sp Specify an alternate user to run the command. The default behavior is to run as the user under which Salt is running. If running @@ -151173,7 +151173,7 @@ cmd.retcode \(aqecho \(aq\e\(aq\(aqh=\e"baz\e"\(aq\e\(aq\(aq\(aq runas=macuser .UNINDENT .IP \(bu 2 -\fBpassword\fP (\fI\%str\fP) \-\- +\fBpassword\fP (\fI\%str\fP) \-\- .sp Windows only. Required when specifying \fBrunas\fP\&. This parameter will be ignored on non\-Windows platforms. @@ -151192,7 +151192,7 @@ default shell. arguments. Set to True to use shell features, such as pipes or redirection. .IP \(bu 2 -\fBenv\fP (\fI\%dict\fP) \-\- +\fBenv\fP (\fI\%dict\fP) \-\- .sp Environment variables to be set prior to execution. .sp @@ -151237,7 +151237,7 @@ returned. .IP \(bu 2 \fBumask\fP (\fI\%str\fP) \-\- The umask (in octal) to use when running the command. .IP \(bu 2 -\fBoutput_encoding\fP (\fI\%str\fP) \-\- +\fBoutput_encoding\fP (\fI\%str\fP) \-\- .sp Control the encoding used to decode the command\(aqs output. @@ -151260,7 +151260,7 @@ New in version 2018.3.0. .IP \(bu 2 -\fBoutput_loglevel\fP (\fI\%str\fP) \-\- +\fBoutput_loglevel\fP (\fI\%str\fP) \-\- .sp Control the loglevel at which the output from the command is logged to the minion log. @@ -151403,7 +151403,7 @@ under which Salt is running if \fBrunas\fP is not specified). command to be run using the \fBstdin\fP parameter. This can be useful in cases where sensitive information must be read from standard input. .IP \(bu 2 -\fBrunas\fP (\fI\%str\fP) \-\- +\fBrunas\fP (\fI\%str\fP) \-\- .sp Specify an alternate user to run the command. The default behavior is to run as the user under which Salt is running. @@ -151433,7 +151433,7 @@ cmd.run \(aqecho \(aq\e\(aq\(aqh=\e"baz\e"\(aq\e\(aq\(aq\(aq runas=macuser \fBgroup\fP (\fI\%str\fP) \-\- Group to run command as. Not currently supported on Windows. .IP \(bu 2 -\fBpassword\fP (\fI\%str\fP) \-\- +\fBpassword\fP (\fI\%str\fP) \-\- .sp Windows only. Required when specifying \fBrunas\fP\&. This parameter will be ignored on non\-Windows platforms. @@ -151449,7 +151449,7 @@ default shell. arguments. Set to \fBTrue\fP to use shell features, such as pipes or redirection. .IP \(bu 2 -\fBbg\fP (\fI\%bool\fP) \-\- +\fBbg\fP (\fI\%bool\fP) \-\- .sp If \fBTrue\fP, run command in background and do not await or deliver its results @@ -151458,7 +151458,7 @@ New in version 2016.3.0. .IP \(bu 2 -\fBenv\fP (\fI\%dict\fP) \-\- +\fBenv\fP (\fI\%dict\fP) \-\- .sp Environment variables to be set prior to execution. .sp @@ -151494,7 +151494,7 @@ systems. variables and set only those provided in the \(aqenv\(aq argument to this function. .IP \(bu 2 -\fBprepend_path\fP (\fI\%str\fP) \-\- +\fBprepend_path\fP (\fI\%str\fP) \-\- .sp $PATH segment to prepend (trailing \(aq:\(aq not necessary) to $PATH @@ -151512,7 +151512,7 @@ returned. .IP \(bu 2 \fBumask\fP (\fI\%str\fP) \-\- The umask (in octal) to use when running the command. .IP \(bu 2 -\fBoutput_encoding\fP (\fI\%str\fP) \-\- +\fBoutput_encoding\fP (\fI\%str\fP) \-\- .sp Control the encoding used to decode the command\(aqs output. @@ -151535,7 +151535,7 @@ New in version 2018.3.0. .IP \(bu 2 -\fBoutput_loglevel\fP (\fI\%str\fP) \-\- +\fBoutput_loglevel\fP (\fI\%str\fP) \-\- .sp Control the loglevel at which the output from the command is logged to the minion log. @@ -151556,7 +151556,7 @@ programs use the return code for signaling and a nonzero exit code doesn\(aqt necessarily mean failure. Pass this argument as \fBTrue\fP to skip logging the output if the command has a nonzero exit code. .IP \(bu 2 -\fBhide_output\fP (\fI\%bool\fP) \-\- +\fBhide_output\fP (\fI\%bool\fP) \-\- .sp If \fBTrue\fP, suppress stdout and stderr in the return data. @@ -151578,7 +151578,7 @@ New in version 2018.3.0. \fBuse_vt\fP (\fI\%bool\fP) \-\- Use VT utils (saltstack) to stream the command output more interactively to the console and the logs. This is experimental. .IP \(bu 2 -\fBencoded_cmd\fP (\fI\%bool\fP) \-\- +\fBencoded_cmd\fP (\fI\%bool\fP) \-\- .sp Specify if the supplied command is encoded. Only applies to shell \(aqpowershell\(aq and \(aqpwsh\(aq. @@ -151784,7 +151784,7 @@ under which Salt is running if \fBrunas\fP is not specified). command to be run using the \fBstdin\fP parameter. This can be useful in cases where sensitive information must be read from standard input. .IP \(bu 2 -\fBrunas\fP (\fI\%str\fP) \-\- +\fBrunas\fP (\fI\%str\fP) \-\- .sp Specify an alternate user to run the command. The default behavior is to run as the user under which Salt is running. If running @@ -151813,7 +151813,7 @@ cmd.run_all \(aqecho \(aq\e\(aq\(aqh=\e"baz\e"\(aq\e\(aq\(aq\(aq runas=macuser .UNINDENT .IP \(bu 2 -\fBpassword\fP (\fI\%str\fP) \-\- +\fBpassword\fP (\fI\%str\fP) \-\- .sp Windows only. Required when specifying \fBrunas\fP\&. This parameter will be ignored on non\-Windows platforms. @@ -151832,7 +151832,7 @@ default shell. arguments. Set to True to use shell features, such as pipes or redirection. .IP \(bu 2 -\fBenv\fP (\fI\%dict\fP) \-\- +\fBenv\fP (\fI\%dict\fP) \-\- .sp Environment variables to be set prior to execution. .sp @@ -151868,7 +151868,7 @@ systems. variables and set only those provided in the \(aqenv\(aq argument to this function. .IP \(bu 2 -\fBprepend_path\fP (\fI\%str\fP) \-\- +\fBprepend_path\fP (\fI\%str\fP) \-\- .sp $PATH segment to prepend (trailing \(aq:\(aq not necessary) to $PATH @@ -151886,7 +151886,7 @@ returned. .IP \(bu 2 \fBumask\fP (\fI\%str\fP) \-\- The umask (in octal) to use when running the command. .IP \(bu 2 -\fBoutput_encoding\fP (\fI\%str\fP) \-\- +\fBoutput_encoding\fP (\fI\%str\fP) \-\- .sp Control the encoding used to decode the command\(aqs output. @@ -151909,7 +151909,7 @@ New in version 2018.3.0. .IP \(bu 2 -\fBoutput_loglevel\fP (\fI\%str\fP) \-\- +\fBoutput_loglevel\fP (\fI\%str\fP) \-\- .sp Control the loglevel at which the output from the command is logged to the minion log. @@ -151930,7 +151930,7 @@ programs use the return code for signaling and a nonzero exit code doesn\(aqt necessarily mean failure. Pass this argument as \fBTrue\fP to skip logging the output if the command has a nonzero exit code. .IP \(bu 2 -\fBhide_output\fP (\fI\%bool\fP) \-\- +\fBhide_output\fP (\fI\%bool\fP) \-\- .sp If \fBTrue\fP, suppress stdout and stderr in the return data. @@ -151953,7 +151953,7 @@ return. \fBuse_vt\fP (\fI\%bool\fP) \-\- Use VT utils (saltstack) to stream the command output more interactively to the console and the logs. This is experimental. .IP \(bu 2 -\fBencoded_cmd\fP (\fI\%bool\fP) \-\- +\fBencoded_cmd\fP (\fI\%bool\fP) \-\- .sp Specify if the supplied command is encoded. Only applies to shell \(aqpowershell\(aq and \(aqpwsh\(aq. @@ -151987,7 +151987,7 @@ Write\-Output $Encoded .UNINDENT .IP \(bu 2 -\fBredirect_stderr\fP (\fI\%bool\fP) \-\- +\fBredirect_stderr\fP (\fI\%bool\fP) \-\- .sp If set to \fBTrue\fP, then stderr will be redirected to stdout. This is helpful for cases where obtaining both @@ -151998,7 +151998,7 @@ New in version 2015.8.2. .IP \(bu 2 -\fBpassword\fP \-\- +\fBpassword\fP \-\- .sp Windows only. Required when specifying \fBrunas\fP\&. This parameter will be ignored on non\-Windows platforms. @@ -152010,7 +152010,7 @@ New in version 2016.3.0. .UNINDENT .IP \(bu 2 -\fBbg\fP (\fI\%bool\fP) \-\- +\fBbg\fP (\fI\%bool\fP) \-\- .sp If \fBTrue\fP, run command in background and do not await or deliver its results @@ -152143,7 +152143,7 @@ on Windows. \fBshell\fP (\fI\%str\fP) \-\- Shell to execute under. Defaults to the system default shell. .IP \(bu 2 -\fBoutput_encoding\fP (\fI\%str\fP) \-\- +\fBoutput_encoding\fP (\fI\%str\fP) \-\- .sp Control the encoding used to decode the command\(aqs output. @@ -152166,7 +152166,7 @@ New in version 2018.3.0. .IP \(bu 2 -\fBoutput_loglevel\fP (\fI\%str\fP) \-\- +\fBoutput_loglevel\fP (\fI\%str\fP) \-\- .sp Control the loglevel at which the output from the command is logged to the minion log. @@ -152187,7 +152187,7 @@ programs use the return code for signaling and a nonzero exit code doesn\(aqt necessarily mean failure. Pass this argument as \fBTrue\fP to skip logging the output if the command has a nonzero exit code. .IP \(bu 2 -\fBrunas\fP (\fI\%str\fP) \-\- +\fBrunas\fP (\fI\%str\fP) \-\- .sp Specify an alternate user to run the command. The default behavior is to run as the user under which Salt is running. If running @@ -152216,7 +152216,7 @@ cmd.run_bg \(aqecho \(aq\e\(aq\(aqh=\e"baz\e"\(aq\e\(aq\(aq\(aq runas=macuser .UNINDENT .IP \(bu 2 -\fBpassword\fP (\fI\%str\fP) \-\- +\fBpassword\fP (\fI\%str\fP) \-\- .sp Windows only. Required when specifying \fBrunas\fP\&. This parameter will be ignored on non\-Windows platforms. @@ -152232,7 +152232,7 @@ default shell. arguments. Set to True to use shell features, such as pipes or redirection. .IP \(bu 2 -\fBenv\fP (\fI\%dict\fP) \-\- +\fBenv\fP (\fI\%dict\fP) \-\- .sp Environment variables to be set prior to execution. .sp @@ -152268,7 +152268,7 @@ systems. variables and set only those provided in the \(aqenv\(aq argument to this function. .IP \(bu 2 -\fBprepend_path\fP (\fI\%str\fP) \-\- +\fBprepend_path\fP (\fI\%str\fP) \-\- .sp $PATH segment to prepend (trailing \(aq:\(aq not necessary) to $PATH @@ -152454,7 +152454,7 @@ default shell. arguments. Set to True to use shell features, such as pipes or redirection. .IP \(bu 2 -\fBbinds\fP (\fI\%list\fP) \-\- +\fBbinds\fP (\fI\%list\fP) \-\- .sp List of directories that will be exported inside the chroot with the bind option. @@ -152463,7 +152463,7 @@ New in version 3000. .IP \(bu 2 -\fBenv\fP (\fI\%dict\fP) \-\- +\fBenv\fP (\fI\%dict\fP) \-\- .sp Environment variables to be set prior to execution. .sp @@ -152509,7 +152509,7 @@ before it is returned. \fBumask\fP (\fI\%str\fP) \-\- The umask (in octal) to use when running the command. .IP \(bu 2 -\fBoutput_encoding\fP (\fI\%str\fP) \-\- +\fBoutput_encoding\fP (\fI\%str\fP) \-\- .sp Control the encoding used to decode the command\(aqs output. @@ -152532,7 +152532,7 @@ New in version 2018.3.0. .IP \(bu 2 -\fBoutput_loglevel\fP (\fI\%str\fP) \-\- +\fBoutput_loglevel\fP (\fI\%str\fP) \-\- .sp Control the loglevel at which the output from the command is logged to the minion log. @@ -152553,7 +152553,7 @@ programs use the return code for signaling and a nonzero exit code doesn\(aqt necessarily mean failure. Pass this argument as \fBTrue\fP to skip logging the output if the command has a nonzero exit code. .IP \(bu 2 -\fBhide_output\fP (\fI\%bool\fP) \-\- +\fBhide_output\fP (\fI\%bool\fP) \-\- .sp If \fBTrue\fP, suppress stdout and stderr in the return data. @@ -152649,7 +152649,7 @@ under which Salt is running if \fBrunas\fP is not specified). command to be run using the \fBstdin\fP parameter. This can be useful in cases where sensitive information must be read from standard input. .IP \(bu 2 -\fBrunas\fP (\fI\%str\fP) \-\- +\fBrunas\fP (\fI\%str\fP) \-\- .sp Specify an alternate user to run the command. The default behavior is to run as the user under which Salt is running. If running @@ -152678,7 +152678,7 @@ cmd.run_stderr \(aqecho \(aq\e\(aq\(aqh=\e"baz\e"\(aq\e\(aq\(aq\(aq runas=macuse .UNINDENT .IP \(bu 2 -\fBpassword\fP (\fI\%str\fP) \-\- +\fBpassword\fP (\fI\%str\fP) \-\- .sp Windows only. Required when specifying \fBrunas\fP\&. This parameter will be ignored on non\-Windows platforms. @@ -152697,7 +152697,7 @@ default shell. arguments. Set to True to use shell features, such as pipes or redirection. .IP \(bu 2 -\fBenv\fP (\fI\%dict\fP) \-\- +\fBenv\fP (\fI\%dict\fP) \-\- .sp Environment variables to be set prior to execution. .sp @@ -152733,7 +152733,7 @@ systems. variables and set only those provided in the \(aqenv\(aq argument to this function. .IP \(bu 2 -\fBprepend_path\fP (\fI\%str\fP) \-\- +\fBprepend_path\fP (\fI\%str\fP) \-\- .sp $PATH segment to prepend (trailing \(aq:\(aq not necessary) to $PATH @@ -152751,7 +152751,7 @@ returned. .IP \(bu 2 \fBumask\fP (\fI\%str\fP) \-\- The umask (in octal) to use when running the command. .IP \(bu 2 -\fBoutput_encoding\fP (\fI\%str\fP) \-\- +\fBoutput_encoding\fP (\fI\%str\fP) \-\- .sp Control the encoding used to decode the command\(aqs output. @@ -152774,7 +152774,7 @@ New in version 2018.3.0. .IP \(bu 2 -\fBoutput_loglevel\fP (\fI\%str\fP) \-\- +\fBoutput_loglevel\fP (\fI\%str\fP) \-\- .sp Control the loglevel at which the output from the command is logged to the minion log. @@ -152795,7 +152795,7 @@ programs use the return code for signaling and a nonzero exit code doesn\(aqt necessarily mean failure. Pass this argument as \fBTrue\fP to skip logging the output if the command has a nonzero exit code. .IP \(bu 2 -\fBhide_output\fP (\fI\%bool\fP) \-\- +\fBhide_output\fP (\fI\%bool\fP) \-\- .sp If \fBTrue\fP, suppress stdout and stderr in the return data. @@ -152926,7 +152926,7 @@ under which Salt is running if \fBrunas\fP is not specified). command to be run using the \fBstdin\fP parameter. This can be useful in cases where sensitive information must be read from standard input. .IP \(bu 2 -\fBrunas\fP (\fI\%str\fP) \-\- +\fBrunas\fP (\fI\%str\fP) \-\- .sp Specify an alternate user to run the command. The default behavior is to run as the user under which Salt is running. If running @@ -152955,7 +152955,7 @@ cmd.run_stdout \(aqecho \(aq\e\(aq\(aqh=\e"baz\e"\(aq\e\(aq\(aq\(aq runas=macuse .UNINDENT .IP \(bu 2 -\fBpassword\fP (\fI\%str\fP) \-\- +\fBpassword\fP (\fI\%str\fP) \-\- .sp Windows only. Required when specifying \fBrunas\fP\&. This parameter will be ignored on non\-Windows platforms. @@ -152974,7 +152974,7 @@ default shell. arguments. Set to True to use shell features, such as pipes or redirection. .IP \(bu 2 -\fBenv\fP (\fI\%dict\fP) \-\- +\fBenv\fP (\fI\%dict\fP) \-\- .sp Environment variables to be set prior to execution. .sp @@ -153010,7 +153010,7 @@ systems. variables and set only those provided in the \(aqenv\(aq argument to this function. .IP \(bu 2 -\fBprepend_path\fP (\fI\%str\fP) \-\- +\fBprepend_path\fP (\fI\%str\fP) \-\- .sp $PATH segment to prepend (trailing \(aq:\(aq not necessary) to $PATH @@ -153028,7 +153028,7 @@ returned. .IP \(bu 2 \fBumask\fP (\fI\%str\fP) \-\- The umask (in octal) to use when running the command. .IP \(bu 2 -\fBoutput_encoding\fP (\fI\%str\fP) \-\- +\fBoutput_encoding\fP (\fI\%str\fP) \-\- .sp Control the encoding used to decode the command\(aqs output. @@ -153051,7 +153051,7 @@ New in version 2018.3.0. .IP \(bu 2 -\fBoutput_loglevel\fP (\fI\%str\fP) \-\- +\fBoutput_loglevel\fP (\fI\%str\fP) \-\- .sp Control the loglevel at which the output from the command is logged to the minion log. @@ -153072,7 +153072,7 @@ programs use the return code for signaling and a nonzero exit code doesn\(aqt necessarily mean failure. Pass this argument as \fBTrue\fP to skip logging the output if the command has a nonzero exit code. .IP \(bu 2 -\fBhide_output\fP (\fI\%bool\fP) \-\- +\fBhide_output\fP (\fI\%bool\fP) \-\- .sp If \fBTrue\fP, suppress stdout and stderr in the return data. @@ -153202,7 +153202,7 @@ programming language. located on the master in the directory named spam, and is called eggs, the source string is salt://spam/eggs .IP \(bu 2 -\fBargs\fP (\fI\%str\fP) \-\- +\fBargs\fP (\fI\%str\fP) \-\- .sp String of command line args to pass to the script. Only used if no args are specified as part of the \fIname\fP argument. To pass a @@ -153226,7 +153226,7 @@ to the directory returned from Python\(aqs tempfile.mkstemp. command to be run using the \fBstdin\fP parameter. This can be useful in cases where sensitive information must be read from standard input. .IP \(bu 2 -\fBrunas\fP (\fI\%str\fP) \-\- +\fBrunas\fP (\fI\%str\fP) \-\- .sp Specify an alternate user to run the command. The default behavior is to run as the user under which Salt is running. If running @@ -153259,7 +153259,7 @@ More information <\fI\%https://github.com/saltstack/salt/issues/55080\fP> .UNINDENT .IP \(bu 2 -\fBpassword\fP (\fI\%str\fP) \-\- +\fBpassword\fP (\fI\%str\fP) \-\- .sp Windows only. Required when specifying \fBrunas\fP\&. This parameter will be ignored on non\-Windows platforms. @@ -153281,7 +153281,7 @@ redirection. \fBbg\fP (\fI\%bool\fP) \-\- If True, run script in background and do not await or deliver its results .IP \(bu 2 -\fBenv\fP (\fI\%dict\fP) \-\- +\fBenv\fP (\fI\%dict\fP) \-\- .sp Environment variables to be set prior to execution. .sp @@ -153319,7 +153319,7 @@ mako, and wempy are supported. .IP \(bu 2 \fBumask\fP (\fI\%str\fP) \-\- The umask (in octal) to use when running the command. .IP \(bu 2 -\fBoutput_encoding\fP (\fI\%str\fP) \-\- +\fBoutput_encoding\fP (\fI\%str\fP) \-\- .sp Control the encoding used to decode the command\(aqs output. @@ -153342,7 +153342,7 @@ New in version 2018.3.0. .IP \(bu 2 -\fBoutput_loglevel\fP (\fI\%str\fP) \-\- +\fBoutput_loglevel\fP (\fI\%str\fP) \-\- .sp Control the loglevel at which the output from the command is logged to the minion log. @@ -153363,7 +153363,7 @@ programs use the return code for signaling and a nonzero exit code doesn\(aqt necessarily mean failure. Pass this argument as \fBTrue\fP to skip logging the output if the command has a nonzero exit code. .IP \(bu 2 -\fBhide_output\fP (\fI\%bool\fP) \-\- +\fBhide_output\fP (\fI\%bool\fP) \-\- .sp If \fBTrue\fP, suppress stdout and stderr in the return data. @@ -153500,7 +153500,7 @@ behavior is to run as the user under which Salt is running. If running on a Windows minion you must also use the \fBpassword\fP argument, and the target user account must be in the Administrators group. .IP \(bu 2 -\fBpassword\fP (\fI\%str\fP) \-\- +\fBpassword\fP (\fI\%str\fP) \-\- .sp Windows only. Required when specifying \fBrunas\fP\&. This parameter will be ignored on non\-Windows platforms. @@ -153519,7 +153519,7 @@ default shell. arguments. Set to True to use shell features, such as pipes or redirection. .IP \(bu 2 -\fBenv\fP (\fI\%dict\fP) \-\- +\fBenv\fP (\fI\%dict\fP) \-\- .sp Environment variables to be set prior to execution. .sp @@ -153557,7 +153557,7 @@ mako, and wempy are supported. .IP \(bu 2 \fBumask\fP (\fI\%str\fP) \-\- The umask (in octal) to use when running the command. .IP \(bu 2 -\fBoutput_encoding\fP (\fI\%str\fP) \-\- +\fBoutput_encoding\fP (\fI\%str\fP) \-\- .sp Control the encoding used to decode the command\(aqs output. @@ -153580,7 +153580,7 @@ New in version 2018.3.0. .IP \(bu 2 -\fBoutput_loglevel\fP (\fI\%str\fP) \-\- +\fBoutput_loglevel\fP (\fI\%str\fP) \-\- .sp Control the loglevel at which the output from the command is logged to the minion log. @@ -153707,7 +153707,7 @@ under which Salt is running if \fBrunas\fP is not specified). command to be run using the \fBstdin\fP parameter. This can be useful in cases where sensitive information must be read from standard input. .IP \(bu 2 -\fBrunas\fP (\fI\%str\fP) \-\- +\fBrunas\fP (\fI\%str\fP) \-\- .sp Specify an alternate user to run the command. The default behavior is to run as the user under which Salt is running. If running @@ -153739,7 +153739,7 @@ cmd.shell \(aqecho \(aq\e\(aq\(aqh=\e"baz\e"\(aq\e\(aq\(aq\(aq runas=macuser \fBgroup\fP (\fI\%str\fP) \-\- Group to run command as. Not currently supported on Windows. .IP \(bu 2 -\fBpassword\fP (\fI\%str\fP) \-\- +\fBpassword\fP (\fI\%str\fP) \-\- .sp Windows only. Required when specifying \fBrunas\fP\&. This parameter will be ignored on non\-Windows platforms. @@ -153754,7 +153754,7 @@ shell. \fBbg\fP (\fI\%bool\fP) \-\- If True, run command in background and do not await or deliver its results .IP \(bu 2 -\fBenv\fP (\fI\%dict\fP) \-\- +\fBenv\fP (\fI\%dict\fP) \-\- .sp Environment variables to be set prior to execution. .sp @@ -153790,7 +153790,7 @@ systems. variables and set only those provided in the \(aqenv\(aq argument to this function. .IP \(bu 2 -\fBprepend_path\fP (\fI\%str\fP) \-\- +\fBprepend_path\fP (\fI\%str\fP) \-\- .sp $PATH segment to prepend (trailing \(aq:\(aq not necessary) to $PATH @@ -153808,7 +153808,7 @@ returned. .IP \(bu 2 \fBumask\fP (\fI\%str\fP) \-\- The umask (in octal) to use when running the command. .IP \(bu 2 -\fBoutput_encoding\fP (\fI\%str\fP) \-\- +\fBoutput_encoding\fP (\fI\%str\fP) \-\- .sp Control the encoding used to decode the command\(aqs output. @@ -153831,7 +153831,7 @@ New in version 2018.3.0. .IP \(bu 2 -\fBoutput_loglevel\fP (\fI\%str\fP) \-\- +\fBoutput_loglevel\fP (\fI\%str\fP) \-\- .sp Control the loglevel at which the output from the command is logged to the minion log. @@ -153852,7 +153852,7 @@ programs use the return code for signaling and a nonzero exit code doesn\(aqt necessarily mean failure. Pass this argument as \fBTrue\fP to skip logging the output if the command has a nonzero exit code. .IP \(bu 2 -\fBhide_output\fP (\fI\%bool\fP) \-\- +\fBhide_output\fP (\fI\%bool\fP) \-\- .sp If \fBTrue\fP, suppress stdout and stderr in the return data. @@ -154023,23 +154023,23 @@ languages all return the \fBinstalled\fP, \fBpath\fP, \fBversion\fP, .IP \(bu 2 \fBshell\fP (\fI\%str\fP) \-\- Name of the shell. Support shells/script languages include .IP \(bu 2 -\fBbash\fP \-\- +\fBbash\fP \-\- .IP \(bu 2 -\fBcmd\fP \-\- +\fBcmd\fP \-\- .IP \(bu 2 -\fBperl\fP \-\- +\fBperl\fP \-\- .IP \(bu 2 -\fBphp\fP \-\- +\fBphp\fP \-\- .IP \(bu 2 -\fBpowershell\fP \-\- +\fBpowershell\fP \-\- .IP \(bu 2 -\fBpython\fP \-\- +\fBpython\fP \-\- .IP \(bu 2 -\fBand zsh\fP (\fIruby\fP) \-\- +\fBand zsh\fP (\fIruby\fP) \-\- .IP \(bu 2 \fBlist_modules\fP (\fI\%bool\fP) \-\- True to list modules available to the shell. .IP \(bu 2 -\fBonly lists powershell modules.\fP (\fICurrently\fP) \-\- +\fBonly lists powershell modules.\fP (\fICurrently\fP) \-\- .UNINDENT .TP .B Returns @@ -188750,7 +188750,7 @@ pkg:apache .B Parameters .INDENT 7.0 .IP \(bu 2 -\fBdelimiter\fP \-\- +\fBdelimiter\fP \-\- .sp Specify an alternate delimiter to use when traversing a nested dict. This is useful for when the desired key contains a colon. See CLI @@ -188760,7 +188760,7 @@ New in version 2014.7.0. .IP \(bu 2 -\fBordered\fP \-\- +\fBordered\fP \-\- .sp Outputs an ordered dict if applicable (default: True) .sp @@ -188850,7 +188850,7 @@ Pillar values: .B Parameters .INDENT 7.0 .IP \(bu 2 -\fBlookup_dict\fP \-\- +\fBlookup_dict\fP \-\- .sp A dictionary, keyed by a grain, containing a value or values relevant to systems matching that grain. For example, a key @@ -188874,7 +188874,7 @@ salt \(aq*\(aq grains.filter_by \(aq{salt*: got some salt, default: salt is not .IP \(bu 2 -\fBgrain\fP \-\- +\fBgrain\fP \-\- .sp The name of a grain to match with the current system\(aqs grains. For example, the value of the "os_family" grain for the current @@ -188894,7 +188894,7 @@ values for non\-standard package names such as when using a different Python version from the default Python version provided by the OS (e.g., \fBpython26\-mysql\fP instead of \fBpython\-mysql\fP). .IP \(bu 2 -\fBdefault\fP \-\- +\fBdefault\fP \-\- .sp default lookup_dict\(aqs key used if the grain does not exists or if the grain value has no match on lookup_dict. If unspecified @@ -188904,7 +188904,7 @@ New in version 2014.1.0. .IP \(bu 2 -\fBbase\fP \-\- +\fBbase\fP \-\- .sp A lookup_dict key to use for a base dictionary. The grain\-selected \fBlookup_dict\fP is merged over this and then finally @@ -188971,7 +188971,7 @@ pkg:apache .B Parameters .INDENT 7.0 .IP \(bu 2 -\fBdelimiter\fP \-\- +\fBdelimiter\fP \-\- .sp Specify an alternate delimiter to use when traversing a nested dict. This is useful for when the desired key contains a colon. See CLI @@ -188981,7 +188981,7 @@ New in version 2014.7.0. .IP \(bu 2 -\fBordered\fP \-\- +\fBordered\fP \-\- .sp Outputs an ordered dict if applicable (default: True) .sp @@ -195860,9 +195860,9 @@ Build an image using Kiwi. .B Parameters .INDENT 7.0 .IP \(bu 2 -\fBformat\fP \-\- +\fBformat\fP \-\- .IP \(bu 2 -\fBpath\fP \-\- +\fBpath\fP \-\- .UNINDENT .TP .B Returns @@ -195888,9 +195888,9 @@ Export description for Kiwi. .B Parameters .INDENT 7.0 .IP \(bu 2 -\fBlocal\fP \-\- +\fBlocal\fP \-\- .IP \(bu 2 -\fBpath\fP \-\- +\fBpath\fP \-\- .UNINDENT .TP .B Returns @@ -196075,7 +196075,7 @@ NOTE: This method doesn\(aqt stores anything. .INDENT 7.0 .TP .B Parameters -\fBobj\fP \-\- +\fBobj\fP \-\- .TP .B Returns @@ -196090,15 +196090,15 @@ Delete object from the database. .B Parameters .INDENT 7.0 .IP \(bu 2 -\fBobj\fP \-\- +\fBobj\fP \-\- .IP \(bu 2 -\fBmatches\fP \-\- +\fBmatches\fP \-\- .IP \(bu 2 -\fBmt\fP \-\- +\fBmt\fP \-\- .IP \(bu 2 -\fBlt\fP \-\- +\fBlt\fP \-\- .IP \(bu 2 -\fBeq\fP \-\- +\fBeq\fP \-\- .UNINDENT .TP .B Returns @@ -196112,7 +196112,7 @@ Flush table. .INDENT 7.0 .TP .B Parameters -\fBtable\fP \-\- +\fBtable\fP \-\- .TP .B Returns @@ -196127,7 +196127,7 @@ Get objects from the table. .B Parameters .INDENT 7.0 .IP \(bu 2 -\fBtable_name\fP \-\- +\fBtable_name\fP \-\- .IP \(bu 2 \fBmatches\fP \-\- Regexp. .IP \(bu 2 @@ -196200,7 +196200,7 @@ Purge the database. .INDENT 7.0 .TP .B Parameters -\fBdbid\fP \-\- +\fBdbid\fP \-\- .TP .B Returns @@ -196234,15 +196234,15 @@ Update object(s) in the database. .B Parameters .INDENT 7.0 .IP \(bu 2 -\fBobj\fP \-\- +\fBobj\fP \-\- .IP \(bu 2 -\fBmatches\fP \-\- +\fBmatches\fP \-\- .IP \(bu 2 -\fBmt\fP \-\- +\fBmt\fP \-\- .IP \(bu 2 -\fBlt\fP \-\- +\fBlt\fP \-\- .IP \(bu 2 -\fBeq\fP \-\- +\fBeq\fP \-\- .UNINDENT .TP .B Returns @@ -196277,7 +196277,7 @@ Load data by keys. .INDENT 7.0 .TP .B Parameters -\fBdata\fP \-\- +\fBdata\fP \-\- .TP .B Returns @@ -197707,7 +197707,7 @@ Set channel access .UNINDENT .IP \(bu 2 -\fBalerting\fP \-\- +\fBalerting\fP \-\- .sp PEF Alerting Enable/Disable .INDENT 2.0 @@ -197719,7 +197719,7 @@ False = disable PEF Alerting on this channel .UNINDENT .IP \(bu 2 -\fBper_msg_auth\fP \-\- +\fBper_msg_auth\fP \-\- .sp Per\-message Authentication .INDENT 2.0 @@ -197732,7 +197732,7 @@ used on subsequent packets for the session.] .UNINDENT .IP \(bu 2 -\fBuser_level_auth\fP \-\- +\fBuser_level_auth\fP \-\- .sp User Level Authentication Enable/Disable .INDENT 2.0 @@ -197751,7 +197751,7 @@ Authentication Type that was used for the request. .UNINDENT .IP \(bu 2 -\fBaccess_mode\fP \-\- +\fBaccess_mode\fP \-\- .sp Access Mode for IPMI messaging (PEF Alerting is enabled/disabled separately from IPMI messaging) @@ -197770,7 +197770,7 @@ serial port available for software use. .UNINDENT .IP \(bu 2 -\fBprivilege_update_mode\fP \-\- +\fBprivilege_update_mode\fP \-\- .sp Channel Privilege Level Limit. This value sets the maximum privilege level that can be accepted on the specified channel. @@ -197784,7 +197784,7 @@ volatile = volatile setting of Privilege Level Limit .UNINDENT .IP \(bu 2 -\fBprivilege_level\fP \-\- +\fBprivilege_level\fP \-\- .sp Channel Privilege Level Limit .INDENT 2.0 @@ -197948,7 +197948,7 @@ Set user access .IP \(bu 2 \fBchannel\fP \-\- number [1:7] .IP \(bu 2 -\fBcallback\fP \-\- +\fBcallback\fP \-\- .sp User Restricted to Callback .INDENT 2.0 @@ -197982,7 +197982,7 @@ management, such as Get SOL Configuration Parameters and Close Session are available, but generic IPMI commands such as Get SEL Time are unavailable.) .IP \(bu 2 -\fBprivilege_level\fP \-\- +\fBprivilege_level\fP \-\- .sp User Privilege Limit. (Determines the maximum privilege level that the user is allowed to switch to on the specified channel.) @@ -206514,7 +206514,7 @@ Connect and optionally bind to an LDAP server. .INDENT 7.0 .TP .B Parameters -\fBconnect_spec\fP \-\- +\fBconnect_spec\fP \-\- .sp This can be an LDAP connection object returned by a previous call to \fI\%connect()\fP (in which case the argument is @@ -206808,7 +206808,7 @@ Modify an entry in an LDAP database. .IP \(bu 2 \fBdn\fP \-\- Distinguished name of the entry. .IP \(bu 2 -\fBdirectives\fP \-\- +\fBdirectives\fP \-\- .sp Iterable of directives that indicate how to modify the entry. Each directive is a tuple of the form \fB(op, attr, vals)\fP, @@ -206873,7 +206873,7 @@ Search an LDAP database. .IP \(bu 2 \fBbase\fP \-\- Distinguished name of the entry at which to start the search. .IP \(bu 2 -\fBscope\fP \-\- +\fBscope\fP \-\- .sp One of the following: .INDENT 2.0 @@ -220765,7 +220765,7 @@ Halt a running system .INDENT 7.0 .TP .B Parameters -\fBat_time\fP (\fI\%str\fP) \-\- +\fBat_time\fP (\fI\%str\fP) \-\- .sp Any valid \fIat\fP expression. For example, some valid at expressions could be: @@ -220839,7 +220839,7 @@ Restart the system .INDENT 7.0 .TP .B Parameters -\fBat_time\fP (\fI\%str\fP) \-\- +\fBat_time\fP (\fI\%str\fP) \-\- .sp Any valid \fIat\fP expression. For example, some valid at expressions could be: @@ -220898,7 +220898,7 @@ result of system files being locked down in macOS (SIP Protection). .INDENT 7.0 .TP .B Parameters -\fBarch\fP (\fI\%str\fP) \-\- +\fBarch\fP (\fI\%str\fP) \-\- .sp A string representing the desired architecture. If no value is passed, default is assumed. Valid values include: @@ -221169,7 +221169,7 @@ Shutdown the system .INDENT 7.0 .TP .B Parameters -\fBat_time\fP (\fI\%str\fP) \-\- +\fBat_time\fP (\fI\%str\fP) \-\- .sp Any valid \fIat\fP expression. For example, some valid at expressions could be: @@ -221219,7 +221219,7 @@ sleep. .INDENT 7.0 .TP .B Parameters -\fBat_time\fP (\fI\%str\fP) \-\- +\fBat_time\fP (\fI\%str\fP) \-\- .sp Any valid \fIat\fP expression. For example, some valid at expressions could be: @@ -221495,7 +221495,7 @@ Set the current month, day, and year .INDENT 7.0 .TP .B Parameters -\fBdate\fP (\fI\%str\fP) \-\- +\fBdate\fP (\fI\%str\fP) \-\- .sp The date to set. Valid date formats are: .INDENT 7.0 @@ -221920,7 +221920,7 @@ Configures the machine to auto login with the specified user .IP \(bu 2 \fBname\fP (\fI\%str\fP) \-\- The user account use for auto login .IP \(bu 2 -\fBpassword\fP (\fI\%str\fP) \-\- +\fBpassword\fP (\fI\%str\fP) \-\- .sp The password to user for auto login .sp @@ -225236,7 +225236,7 @@ This function accepts the following arguments: Specifies whether updating will clear the existing values (\fBTrue\fP), or whether it will update them (\fBFalse\fP). .IP \(bu 2 -\fBmine_functions\fP (\fI\%dict\fP) \-\- +\fBmine_functions\fP (\fI\%dict\fP) \-\- .sp Update (or clear, see \fBclear\fP) the mine data on these functions only. This will need to have the structure as defined on @@ -242176,7 +242176,7 @@ default: group5 (Optional) .IP \(bu 2 \fBprofile\fP \-\- Profile to build on (Optional) .IP \(bu 2 -\fBkwargs\fP \-\- +\fBkwargs\fP \-\- .UNINDENT .TP .B Returns @@ -244136,7 +244136,7 @@ default: true (Optional) .IP \(bu 2 \fBprofile\fP \-\- Profile to build on (Optional) .IP \(bu 2 -\fBkwargs\fP \-\- +\fBkwargs\fP \-\- .UNINDENT .TP .B Returns @@ -251227,7 +251227,7 @@ New in version 2017.7.0. \fBnames\fP \-\- Names of the packages to get information about. If none are specified, will return information for all installed packages. .IP \(bu 2 -\fBattr\fP \-\- +\fBattr\fP \-\- .sp Comma\-separated package attributes. If no \(aqattr\(aq is specified, all available attributes returned. .INDENT 2.0 @@ -256453,7 +256453,7 @@ delete the derived snapshots .IP \(bu 2 \fBrunas\fP (\fI\%str\fP) \-\- The user that the prlctl command will be run as .IP \(bu 2 -\fBall\fP (\fI\%bool\fP) \-\- +\fBall\fP (\fI\%bool\fP) \-\- .sp Delete all snapshots having the name given .sp @@ -256582,7 +256582,7 @@ List information about the VMs .B Parameters .INDENT 7.0 .IP \(bu 2 -\fBname\fP (\fI\%str\fP) \-\- +\fBname\fP (\fI\%str\fP) \-\- .sp Name/ID of VM to list .sp @@ -256598,7 +256598,7 @@ Changed in version 2016.11.0: No longer implies \fBinfo=True\fP .IP \(bu 2 \fBrunas\fP (\fI\%str\fP) \-\- The user that the prlctl command will be run as .IP \(bu 2 -\fBtemplate\fP (\fI\%bool\fP) \-\- +\fBtemplate\fP (\fI\%bool\fP) \-\- .sp List the available virtual machine templates. The real virtual machines will not be included in the output @@ -259176,7 +259176,7 @@ Look up the given pillar in a given dictionary and return the result .B Parameters .INDENT 7.0 .IP \(bu 2 -\fBlookup_dict\fP \-\- +\fBlookup_dict\fP \-\- .sp A dictionary, keyed by a pillar, containing a value or values relevant to systems matching that pillar. For example, a key @@ -259199,7 +259199,7 @@ salt \(aq*\(aq pillar.filter_by \(aq{salt*: got some salt, default: salt is not .UNINDENT .IP \(bu 2 -\fBpillar\fP \-\- +\fBpillar\fP \-\- .sp The name of a pillar to match with the system\(aqs pillar. For example, the value of the "role" pillar could be used to pull values @@ -273088,7 +273088,7 @@ Delete a registry key to include all subkeys and value/data pairs. .INDENT 7.0 .TP .B Parameters -\fBhive\fP (\fI\%str\fP) \-\- +\fBhive\fP (\fI\%str\fP) \-\- .sp The name of the hive. Can be one of the following .INDENT 7.0 @@ -273157,7 +273157,7 @@ Delete a registry value entry or the default value for a key. .B Parameters .INDENT 7.0 .IP \(bu 2 -\fBhive\fP (\fI\%str\fP) \-\- +\fBhive\fP (\fI\%str\fP) \-\- .sp The name of the hive. Can be one of the following .INDENT 2.0 @@ -273311,7 +273311,7 @@ Enumerates the subkeys in a registry key or hive. .B Parameters .INDENT 7.0 .IP \(bu 2 -\fBhive\fP (\fI\%str\fP) \-\- +\fBhive\fP (\fI\%str\fP) \-\- .sp The name of the hive. Can be one of the following: .INDENT 2.0 @@ -273379,7 +273379,7 @@ will not be returned in the list of values. .B Parameters .INDENT 7.0 .IP \(bu 2 -\fBhive\fP (\fI\%str\fP) \-\- +\fBhive\fP (\fI\%str\fP) \-\- .sp The name of the hive. Can be one of the following: .INDENT 2.0 @@ -273440,7 +273440,7 @@ default value, don\(aqt pass \fBvname\fP .B Parameters .INDENT 7.0 .IP \(bu 2 -\fBhive\fP (\fI\%str\fP) \-\- +\fBhive\fP (\fI\%str\fP) \-\- .sp The name of the hive. Can be one of the following: .INDENT 2.0 @@ -273536,7 +273536,7 @@ specified key .B Parameters .INDENT 7.0 .IP \(bu 2 -\fBhive\fP (\fI\%str\fP) \-\- +\fBhive\fP (\fI\%str\fP) \-\- .sp The name of the hive. Can be one of the following .INDENT 2.0 @@ -273562,7 +273562,7 @@ HKEY_CURRENT_CONFIG or HKCC \fBvname\fP (\fI\%str\fP) \-\- The value name. These are the individual name/data pairs under the key. If not passed, the key (Default) value will be set. .IP \(bu 2 -\fBvdata\fP (\fI\%str\fP\fI, \fP\fI\%int\fP\fI, \fP\fI\%list\fP\fI, \fP\fI\%bytes\fP) \-\- +\fBvdata\fP (\fI\%str\fP\fI, \fP\fI\%int\fP\fI, \fP\fI\%list\fP\fI, \fP\fI\%bytes\fP) \-\- .sp The value you\(aqd like to set. If a value name (vname) is passed, this will be the data for that value name. If not, this will be the @@ -275045,9 +275045,9 @@ If no packages specified, all packages will be returned. .B Parameters .INDENT 7.0 .IP \(bu 2 -\fBpackages\fP \-\- +\fBpackages\fP \-\- .IP \(bu 2 -\fBattr\fP \-\- +\fBattr\fP \-\- .sp Comma\-separated package attributes. If no \(aqattr\(aq is specified, all available attributes returned. .INDENT 2.0 @@ -277769,7 +277769,7 @@ Execute one saltcheck test and return result .INDENT 7.0 .TP .B Parameters -\fBarg test\fP (\fIkeyword\fP) \-\- +\fBarg test\fP (\fIkeyword\fP) \-\- .UNINDENT .sp CLI Example: @@ -295248,7 +295248,7 @@ Set the system date. Use format for the date. .INDENT 7.0 .TP .B Parameters -\fBnewdate\fP (\fI\%str\fP) \-\- +\fBnewdate\fP (\fI\%str\fP) \-\- .sp The date to set. Can be any of the following formats: .INDENT 7.0 @@ -295343,7 +295343,7 @@ Set the system time. .B Parameters .INDENT 7.0 .IP \(bu 2 -\fBnewtime\fP (\fI\%str\fP) \-\- +\fBnewtime\fP (\fI\%str\fP) \-\- .sp The time to set. Can be any of the following formats. \- HH:MM:SS AM/PM @@ -303201,7 +303201,7 @@ Return the value of key at path in vault, or entire secret .INDENT 7.0 .TP .B Parameters -\fBmetadata\fP \-\- +\fBmetadata\fP \-\- .sp Optional \- If using KV v2 backend, display full results, including metadata .sp @@ -304265,7 +304265,7 @@ New in version 2016.3.0. .IP \(bu 2 \fBout\fP \-\- \(aqlibvirt\(aq (default) for usable libvirt XML definition, \(aqsalt\(aq for nice dict .IP \(bu 2 -\fBconnection\fP \-\- +\fBconnection\fP \-\- .sp libvirt connection URI, overriding defaults .sp @@ -304273,7 +304273,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBusername\fP \-\- +\fBusername\fP \-\- .sp username to connect with, overriding defaults .sp @@ -304281,7 +304281,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBpassword\fP \-\- +\fBpassword\fP \-\- .sp password to connect with, overriding defaults .sp @@ -304314,7 +304314,7 @@ Start a transient domain based on the XML\-file path passed to the function .IP \(bu 2 \fBpath\fP \-\- path to a file containing the libvirt XML definition of the domain .IP \(bu 2 -\fBconnection\fP \-\- +\fBconnection\fP \-\- .sp libvirt connection URI, overriding defaults .sp @@ -304322,7 +304322,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBusername\fP \-\- +\fBusername\fP \-\- .sp username to connect with, overriding defaults .sp @@ -304330,7 +304330,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBpassword\fP \-\- +\fBpassword\fP \-\- .sp password to connect with, overriding defaults .sp @@ -304363,7 +304363,7 @@ Start a transient domain based on the XML passed to the function .IP \(bu 2 \fBxml\fP \-\- libvirt XML definition of the domain .IP \(bu 2 -\fBconnection\fP \-\- +\fBconnection\fP \-\- .sp libvirt connection URI, overriding defaults .sp @@ -304371,7 +304371,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBusername\fP \-\- +\fBusername\fP \-\- .sp username to connect with, overriding defaults .sp @@ -304379,7 +304379,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBpassword\fP \-\- +\fBpassword\fP \-\- .sp password to connect with, overriding defaults .sp @@ -304412,7 +304412,7 @@ Sends CTRL+ALT+DEL to a VM .IP \(bu 2 \fBvm\fP \-\- domain name .IP \(bu 2 -\fBconnection\fP \-\- +\fBconnection\fP \-\- .sp libvirt connection URI, overriding defaults .sp @@ -304420,7 +304420,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBusername\fP \-\- +\fBusername\fP \-\- .sp username to connect with, overriding defaults .sp @@ -304428,7 +304428,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBpassword\fP \-\- +\fBpassword\fP \-\- .sp password to connect with, overriding defaults .sp @@ -304461,7 +304461,7 @@ Define a volume based on the XML\-file path passed to the function .IP \(bu 2 \fBpath\fP \-\- path to a file containing the libvirt XML definition of the volume .IP \(bu 2 -\fBpool\fP \-\- +\fBpool\fP \-\- .sp storage pool name to define the volume in. If defined, this parameter will override the configuration setting. @@ -304470,7 +304470,7 @@ New in version 3001. .IP \(bu 2 -\fBconnection\fP \-\- +\fBconnection\fP \-\- .sp libvirt connection URI, overriding defaults .sp @@ -304478,7 +304478,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBusername\fP \-\- +\fBusername\fP \-\- .sp username to connect with, overriding defaults .sp @@ -304486,7 +304486,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBpassword\fP \-\- +\fBpassword\fP \-\- .sp password to connect with, overriding defaults .sp @@ -304519,7 +304519,7 @@ Define a volume based on the XML passed to the function .IP \(bu 2 \fBxml\fP \-\- libvirt XML definition of the storage volume .IP \(bu 2 -\fBpool\fP \-\- +\fBpool\fP \-\- .sp storage pool name to define the volume in. If defined, this parameter will override the configuration setting. @@ -304528,7 +304528,7 @@ New in version 3001. .IP \(bu 2 -\fBconnection\fP \-\- +\fBconnection\fP \-\- .sp libvirt connection URI, overriding defaults .sp @@ -304536,7 +304536,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBusername\fP \-\- +\fBusername\fP \-\- .sp username to connect with, overriding defaults .sp @@ -304544,7 +304544,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBpassword\fP \-\- +\fBpassword\fP \-\- .sp password to connect with, overriding defaults .sp @@ -304591,7 +304591,7 @@ Define a persistent domain based on the XML\-file path passed to the function .IP \(bu 2 \fBpath\fP \-\- path to a file containing the libvirt XML definition of the domain .IP \(bu 2 -\fBconnection\fP \-\- +\fBconnection\fP \-\- .sp libvirt connection URI, overriding defaults .sp @@ -304599,7 +304599,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBusername\fP \-\- +\fBusername\fP \-\- .sp username to connect with, overriding defaults .sp @@ -304607,7 +304607,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBpassword\fP \-\- +\fBpassword\fP \-\- .sp password to connect with, overriding defaults .sp @@ -304640,7 +304640,7 @@ Define a persistent domain based on the XML passed to the function .IP \(bu 2 \fBxml\fP \-\- libvirt XML definition of the domain .IP \(bu 2 -\fBconnection\fP \-\- +\fBconnection\fP \-\- .sp libvirt connection URI, overriding defaults .sp @@ -304648,7 +304648,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBusername\fP \-\- +\fBusername\fP \-\- .sp username to connect with, overriding defaults .sp @@ -304656,7 +304656,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBpassword\fP \-\- +\fBpassword\fP \-\- .sp password to connect with, overriding defaults .sp @@ -304691,7 +304691,7 @@ Delete one or more snapshots of the given VM. .IP \(bu 2 \fBnames\fP \-\- names of the snapshots to remove .IP \(bu 2 -\fBconnection\fP \-\- +\fBconnection\fP \-\- .sp libvirt connection URI, overriding defaults .sp @@ -304699,7 +304699,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBusername\fP \-\- +\fBusername\fP \-\- .sp username to connect with, overriding defaults .sp @@ -304707,7 +304707,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBpassword\fP \-\- +\fBpassword\fP \-\- .sp password to connect with, overriding defaults .sp @@ -304789,7 +304789,7 @@ hypervisor .B Parameters .INDENT 7.0 .IP \(bu 2 -\fBconnection\fP \-\- +\fBconnection\fP \-\- .sp libvirt connection URI, overriding defaults .sp @@ -304797,7 +304797,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBusername\fP \-\- +\fBusername\fP \-\- .sp username to connect with, overriding defaults .sp @@ -304805,7 +304805,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBpassword\fP \-\- +\fBpassword\fP \-\- .sp password to connect with, overriding defaults .sp @@ -304837,7 +304837,7 @@ been given to virtual machines on this node .B Parameters .INDENT 7.0 .IP \(bu 2 -\fBconnection\fP \-\- +\fBconnection\fP \-\- .sp libvirt connection URI, overriding defaults .sp @@ -304845,7 +304845,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBusername\fP \-\- +\fBusername\fP \-\- .sp username to connect with, overriding defaults .sp @@ -304853,7 +304853,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBpassword\fP \-\- +\fBpassword\fP \-\- .sp password to connect with, overriding defaults .sp @@ -304884,7 +304884,7 @@ Return the node_info, vm_info and freemem .B Parameters .INDENT 7.0 .IP \(bu 2 -\fBconnection\fP \-\- +\fBconnection\fP \-\- .sp libvirt connection URI, overriding defaults .sp @@ -304892,7 +304892,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBusername\fP \-\- +\fBusername\fP \-\- .sp username to connect with, overriding defaults .sp @@ -304900,7 +304900,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBpassword\fP \-\- +\fBpassword\fP \-\- .sp password to connect with, overriding defaults .sp @@ -304933,7 +304933,7 @@ Return the disks of a named vm .IP \(bu 2 \fBvm\fP \-\- name of the domain .IP \(bu 2 -\fBconnection\fP \-\- +\fBconnection\fP \-\- .sp libvirt connection URI, overriding defaults .sp @@ -304941,7 +304941,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBusername\fP \-\- +\fBusername\fP \-\- .sp username to connect with, overriding defaults .sp @@ -304949,7 +304949,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBpassword\fP \-\- +\fBpassword\fP \-\- .sp password to connect with, overriding defaults .sp @@ -304982,7 +304982,7 @@ Returns the information on vnc for a given vm .IP \(bu 2 \fBvm\fP \-\- name of the domain .IP \(bu 2 -\fBconnection\fP \-\- +\fBconnection\fP \-\- .sp libvirt connection URI, overriding defaults .sp @@ -304990,7 +304990,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBusername\fP \-\- +\fBusername\fP \-\- .sp username to connect with, overriding defaults .sp @@ -304998,7 +304998,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBpassword\fP \-\- +\fBpassword\fP \-\- .sp password to connect with, overriding defaults .sp @@ -305095,7 +305095,7 @@ Return a list off MAC addresses from the named vm .IP \(bu 2 \fBvm\fP \-\- name of the domain .IP \(bu 2 -\fBconnection\fP \-\- +\fBconnection\fP \-\- .sp libvirt connection URI, overriding defaults .sp @@ -305103,7 +305103,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBusername\fP \-\- +\fBusername\fP \-\- .sp username to connect with, overriding defaults .sp @@ -305111,7 +305111,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBpassword\fP \-\- +\fBpassword\fP \-\- .sp password to connect with, overriding defaults .sp @@ -305144,7 +305144,7 @@ Return info about the network interfaces of a named vm .IP \(bu 2 \fBvm\fP \-\- name of the domain .IP \(bu 2 -\fBconnection\fP \-\- +\fBconnection\fP \-\- .sp libvirt connection URI, overriding defaults .sp @@ -305152,7 +305152,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBusername\fP \-\- +\fBusername\fP \-\- .sp username to connect with, overriding defaults .sp @@ -305160,7 +305160,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBpassword\fP \-\- +\fBpassword\fP \-\- .sp password to connect with, overriding defaults .sp @@ -305201,7 +305201,7 @@ disk .IP \(bu 2 \fBhypervisor\fP \-\- override the default machine type. .IP \(bu 2 -\fBconnection\fP \-\- +\fBconnection\fP \-\- .sp libvirt connection URI, overriding defaults .sp @@ -305209,7 +305209,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBusername\fP \-\- +\fBusername\fP \-\- .sp username to connect with, overriding defaults .sp @@ -305217,7 +305217,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBpassword\fP \-\- +\fBpassword\fP \-\- .sp password to connect with, overriding defaults .sp @@ -305251,7 +305251,7 @@ Returns the XML for a given vm .IP \(bu 2 \fBvm\fP \-\- domain name .IP \(bu 2 -\fBconnection\fP \-\- +\fBconnection\fP \-\- .sp libvirt connection URI, overriding defaults .sp @@ -305259,7 +305259,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBusername\fP \-\- +\fBusername\fP \-\- .sp username to connect with, overriding defaults .sp @@ -305267,7 +305267,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBpassword\fP \-\- +\fBpassword\fP \-\- .sp password to connect with, overriding defaults .sp @@ -305300,7 +305300,7 @@ Initialize a new vm .IP \(bu 2 \fBname\fP \-\- name of the virtual machine to create .IP \(bu 2 -\fBcpu\fP \-\- +\fBcpu\fP \-\- .sp Number of virtual CPUs to assign to the virtual machine or a dictionary with detailed information to configure cpu model and topology, numa node tuning, cpu tuning and iothreads allocation. The structure of the dictionary is @@ -305423,7 +305423,7 @@ New in version 3003. .IP \(bu 2 -\fBmem\fP \-\- +\fBmem\fP \-\- .sp Amount of memory to allocate to the virtual machine in MiB. Since 3002, a dictionary can be used to contain detailed configuration which support memory allocation or tuning. Supported parameters are \fBboot\fP, @@ -305466,7 +305466,7 @@ Changed in version 3002. The profile interfaces can be customized / extended with the interfaces parameter. If set to \fBNone\fP, no profile will be used. .IP \(bu 2 -\fBinterfaces\fP \-\- +\fBinterfaces\fP \-\- .sp List of dictionaries providing details on the network interfaces to create. These data are merged with the ones from the nic profile. The structure of @@ -305483,7 +305483,7 @@ to the virtual host capabilities. .IP \(bu 2 \fBdisk\fP \-\- Disk profile to use (Default: \fB\(aqdefault\(aq\fP). If set to \fBNone\fP, no profile will be used. .IP \(bu 2 -\fBdisks\fP \-\- +\fBdisks\fP \-\- .sp List of dictionaries providing details on the disk devices to create. These data are merged with the ones from the disk profile. The structure of @@ -305507,7 +305507,7 @@ See \fBcp module for more details\fP .IP \(bu 2 \fBseed_cmd\fP \-\- Salt command to execute to seed the image. (Default: \fB\(aqseed.apply\(aq\fP) .IP \(bu 2 -\fBgraphics\fP \-\- +\fBgraphics\fP \-\- .sp Dictionary providing details on the graphics device to create. (Default: \fBNone\fP) See \fI\%Graphics Definition\fP for more details on the possible values. @@ -305516,7 +305516,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBos_type\fP \-\- +\fBos_type\fP \-\- .sp type of virtualization as found in the \fB//os/type\fP element of the libvirt definition. The default value is taken from the host capabilities, with a preference for \fBhvm\fP\&. @@ -305525,7 +305525,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBarch\fP \-\- +\fBarch\fP \-\- .sp architecture of the virtual machine. The default value is taken from the host capabilities, but \fBx86_64\fP is prefed over \fBi686\fP\&. @@ -305539,7 +305539,7 @@ See \fBseed module for more details\fP .IP \(bu 2 \fBboot_dev\fP \-\- String of space\-separated devices to boot from (Default: \fB\(aqhd\(aq\fP) .IP \(bu 2 -\fBconnection\fP \-\- +\fBconnection\fP \-\- .sp libvirt connection URI, overriding defaults .sp @@ -305547,7 +305547,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBusername\fP \-\- +\fBusername\fP \-\- .sp username to connect with, overriding defaults .sp @@ -305555,7 +305555,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBpassword\fP \-\- +\fBpassword\fP \-\- .sp password to connect with, overriding defaults .sp @@ -305563,7 +305563,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBstop_on_reboot\fP \-\- +\fBstop_on_reboot\fP \-\- .sp If set to \fBTrue\fP the guest will stop instead of rebooting. This is specially useful when creating a virtual machine with an installation cdrom or @@ -305574,7 +305574,7 @@ New in version 3003. .IP \(bu 2 -\fBboot\fP \-\- +\fBboot\fP \-\- .sp Specifies kernel, initial ramdisk and kernel command line parameters for the virtual machine. This is an optional parameter, all of the keys are optional within the dictionary. The structure of @@ -305603,7 +305603,7 @@ New in version 3000. .UNINDENT .IP \(bu 2 -\fBboot_dev\fP \-\- +\fBboot_dev\fP \-\- .sp Space separated list of devices to boot from sorted by decreasing priority. Values can be \fBhd\fP, \fBfd\fP, \fBcdrom\fP or \fBnetwork\fP\&. @@ -305611,7 +305611,7 @@ Values can be \fBhd\fP, \fBfd\fP, \fBcdrom\fP or \fBnetwork\fP\&. By default, the value will \fB"hd"\fP\&. .IP \(bu 2 -\fBnumatune\fP \-\- +\fBnumatune\fP \-\- .sp The optional numatune element provides details of how to tune the performance of a NUMA host via controlling NUMA policy for domain process. The optional \fBmemory\fP element specifies how to allocate memory for the domain process @@ -305635,7 +305635,7 @@ New in version 3003. .UNINDENT .IP \(bu 2 -\fBhypervisor_features\fP \-\- +\fBhypervisor_features\fP \-\- .sp Enable or disable hypervisor\-specific features on the virtual machine. .sp @@ -305654,7 +305654,7 @@ hypervisor_features: .UNINDENT .IP \(bu 2 -\fBclock\fP \-\- +\fBclock\fP \-\- .sp Configure the guest clock. The value is a dictionary with the following keys: @@ -305730,7 +305730,7 @@ clock: .UNINDENT .IP \(bu 2 -\fBserials\fP \-\- +\fBserials\fP \-\- .sp Dictionary providing details on the serials connection to create. (Default: \fBNone\fP) See \fI\%Serials and Consoles Definitions\fP for more details on the possible values. @@ -305739,7 +305739,7 @@ New in version 3003. .IP \(bu 2 -\fBconsoles\fP \-\- +\fBconsoles\fP \-\- .sp Dictionary providing details on the consoles device to create. (Default: \fBNone\fP) See \fI\%Serials and Consoles Definitions\fP for more details on the possible values. @@ -305748,7 +305748,7 @@ New in version 3003. .IP \(bu 2 -\fBhost_devices\fP \-\- +\fBhost_devices\fP \-\- .sp List of host devices to passthrough to the guest. The value is a list of device names as provided by the \fI\%node_devices()\fP function. @@ -306247,7 +306247,7 @@ Return a list of names for active virtual machine on the minion .B Parameters .INDENT 7.0 .IP \(bu 2 -\fBconnection\fP \-\- +\fBconnection\fP \-\- .sp libvirt connection URI, overriding defaults .sp @@ -306255,7 +306255,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBusername\fP \-\- +\fBusername\fP \-\- .sp username to connect with, overriding defaults .sp @@ -306263,7 +306263,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBpassword\fP \-\- +\fBpassword\fP \-\- .sp password to connect with, overriding defaults .sp @@ -306294,7 +306294,7 @@ Return a list of available domains. .B Parameters .INDENT 7.0 .IP \(bu 2 -\fBconnection\fP \-\- +\fBconnection\fP \-\- .sp libvirt connection URI, overriding defaults .sp @@ -306302,7 +306302,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBusername\fP \-\- +\fBusername\fP \-\- .sp username to connect with, overriding defaults .sp @@ -306310,7 +306310,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBpassword\fP \-\- +\fBpassword\fP \-\- .sp password to connect with, overriding defaults .sp @@ -306341,7 +306341,7 @@ Return a list of names for inactive virtual machine on the minion .B Parameters .INDENT 7.0 .IP \(bu 2 -\fBconnection\fP \-\- +\fBconnection\fP \-\- .sp libvirt connection URI, overriding defaults .sp @@ -306349,7 +306349,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBusername\fP \-\- +\fBusername\fP \-\- .sp username to connect with, overriding defaults .sp @@ -306357,7 +306357,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBpassword\fP \-\- +\fBpassword\fP \-\- .sp password to connect with, overriding defaults .sp @@ -306454,7 +306454,7 @@ List available snapshots for certain vm or for all. .IP \(bu 2 \fBdomain\fP \-\- domain name .IP \(bu 2 -\fBconnection\fP \-\- +\fBconnection\fP \-\- .sp libvirt connection URI, overriding defaults .sp @@ -306462,7 +306462,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBusername\fP \-\- +\fBusername\fP \-\- .sp username to connect with, overriding defaults .sp @@ -306470,7 +306470,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBpassword\fP \-\- +\fBpassword\fP \-\- .sp password to connect with, overriding defaults .sp @@ -306658,7 +306658,7 @@ Create libvirt network. .IP \(bu 2 \fBbridge\fP \-\- Bridge name. .IP \(bu 2 -\fBforward\fP \-\- +\fBforward\fP \-\- .sp Forward mode (bridge, router, nat). .sp @@ -306666,7 +306666,7 @@ Changed in version 3003: a \fBNone\fP value creates an isolated network with no .IP \(bu 2 -\fBvport\fP \-\- +\fBvport\fP \-\- .sp Virtualport type. The value can also be a dictionary with \fBtype\fP and \fBparameters\fP keys. @@ -306689,7 +306689,7 @@ Changed in version 3003: possible dictionary value .IP \(bu 2 -\fBtag\fP \-\- +\fBtag\fP \-\- .sp Vlan tag. The value can also be a dictionary with the \fBtags\fP and optional \fBtrunk\fP keys. @@ -306720,7 +306720,7 @@ Changed in version 3003: possible dictionary value .IP \(bu 2 \fBstart\fP \-\- Network start (default True). .IP \(bu 2 -\fBipv4_config\fP (\fI\%dict\fP\fI or \fP\fI\%None\fP) \-\- +\fBipv4_config\fP (\fI\%dict\fP\fI or \fP\fI\%None\fP) \-\- .sp IP v4 configuration. Dictionary describing the IP v4 setup like IP range and @@ -306731,7 +306731,7 @@ New in version 3000. .IP \(bu 2 -\fBipv6_config\fP (\fI\%dict\fP\fI or \fP\fI\%None\fP) \-\- +\fBipv6_config\fP (\fI\%dict\fP\fI or \fP\fI\%None\fP) \-\- .sp IP v6 configuration. Dictionary describing the IP v6 setup like IP range and @@ -306748,7 +306748,7 @@ New in version 3000. .IP \(bu 2 \fBpassword\fP \-\- password to connect with, overriding defaults. .IP \(bu 2 -\fBmtu\fP \-\- +\fBmtu\fP \-\- .sp size of the Maximum Transmission Unit (MTU) of the network. (default \fBNone\fP) @@ -306757,7 +306757,7 @@ New in version 3003. .IP \(bu 2 -\fBdomain\fP \-\- +\fBdomain\fP \-\- .sp DNS domain name of the DHCP server. The value is a dictionary with a mandatory \fBname\fP property and an optional \fBlocalOnly\fP boolean one. @@ -306779,7 +306779,7 @@ New in version 3003. .IP \(bu 2 -\fBnat\fP \-\- +\fBnat\fP \-\- .sp addresses and ports to route in NAT forward mode. The value is a dictionary with optional keys \fBaddress\fP and \fBport\fP\&. @@ -306807,7 +306807,7 @@ New in version 3003. .IP \(bu 2 -\fBinterfaces\fP \-\- +\fBinterfaces\fP \-\- .sp whitespace separated list of network interfaces devices that can be used for this network. (default \fBNone\fP) @@ -306827,7 +306827,7 @@ New in version 3003. .IP \(bu 2 -\fBaddresses\fP \-\- +\fBaddresses\fP \-\- .sp whitespace separated list of addresses of PCI devices that can be used for this network in \fIhostdev\fP forward mode. (default \fBNone\fP) @@ -306847,7 +306847,7 @@ New in version 3003. .IP \(bu 2 -\fBphysical_function\fP \-\- +\fBphysical_function\fP \-\- .sp device name of the physical interface to use in \fBhostdev\fP forward mode. (default \fBNone\fP) @@ -306867,7 +306867,7 @@ New in version 3003. .IP \(bu 2 -\fBdns\fP \-\- +\fBdns\fP \-\- .sp virtual network DNS configuration. The value is a dictionary described in \fI\%net\-define\-dns\fP\&. @@ -307205,7 +307205,7 @@ Update a virtual network if needed. \fBforward\fP \-\- Forward mode (bridge, router, nat). A \fBNone\fP value creates an isolated network with no forwarding at all. .IP \(bu 2 -\fBvport\fP \-\- +\fBvport\fP \-\- .sp Virtualport type. The value can also be a dictionary with \fBtype\fP and \fBparameters\fP keys. @@ -307225,7 +307225,7 @@ The \fBparameters\fP value is a dictionary of virtual port parameters. .UNINDENT .IP \(bu 2 -\fBtag\fP \-\- +\fBtag\fP \-\- .sp Vlan tag. The value can also be a dictionary with the \fBtags\fP and optional \fBtrunk\fP keys. @@ -307268,7 +307268,7 @@ in \fI\%net\-define\-ip\fP\&. \fBmtu\fP \-\- size of the Maximum Transmission Unit (MTU) of the network. (default \fBNone\fP) .IP \(bu 2 -\fBdomain\fP \-\- +\fBdomain\fP \-\- .sp DNS domain name of the DHCP server. The value is a dictionary with a mandatory \fBname\fP property and an optional \fBlocalOnly\fP boolean one. @@ -307287,7 +307287,7 @@ The value is a dictionary with a mandatory \fBname\fP property and an optional \ .UNINDENT .IP \(bu 2 -\fBnat\fP \-\- +\fBnat\fP \-\- .sp addresses and ports to route in NAT forward mode. The value is a dictionary with optional keys \fBaddress\fP and \fBport\fP\&. @@ -307312,7 +307312,7 @@ Both values are a dictionary with \fBstart\fP and \fBend\fP values. .UNINDENT .IP \(bu 2 -\fBinterfaces\fP \-\- +\fBinterfaces\fP \-\- .sp whitespace separated list of network interfaces devices that can be used for this network. (default \fBNone\fP) @@ -307329,7 +307329,7 @@ whitespace separated list of network interfaces devices that can be used for thi .UNINDENT .IP \(bu 2 -\fBaddresses\fP \-\- +\fBaddresses\fP \-\- .sp whitespace separated list of addresses of PCI devices that can be used for this network in \fIhostdev\fP forward mode. (default \fBNone\fP) @@ -307346,7 +307346,7 @@ whitespace separated list of addresses of PCI devices that can be used for this .UNINDENT .IP \(bu 2 -\fBphysical_function\fP \-\- +\fBphysical_function\fP \-\- .sp device name of the physical interface to use in \fBhostdev\fP forward mode. (default \fBNone\fP) @@ -307363,7 +307363,7 @@ device name of the physical interface to use in \fBhostdev\fP forward mode. .UNINDENT .IP \(bu 2 -\fBdns\fP \-\- +\fBdns\fP \-\- .sp virtual network DNS configuration. The value is a dictionary described in \fI\%net\-define\-dns\fP\&. @@ -307434,7 +307434,7 @@ Return a dict with information about this node .B Parameters .INDENT 7.0 .IP \(bu 2 -\fBconnection\fP \-\- +\fBconnection\fP \-\- .sp libvirt connection URI, overriding defaults .sp @@ -307442,7 +307442,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBusername\fP \-\- +\fBusername\fP \-\- .sp username to connect with, overriding defaults .sp @@ -307450,7 +307450,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBpassword\fP \-\- +\fBpassword\fP \-\- .sp password to connect with, overriding defaults .sp @@ -307483,7 +307483,7 @@ Pause the named vm .IP \(bu 2 \fBvm\fP \-\- domain name .IP \(bu 2 -\fBconnection\fP \-\- +\fBconnection\fP \-\- .sp libvirt connection URI, overriding defaults .sp @@ -307491,7 +307491,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBusername\fP \-\- +\fBusername\fP \-\- .sp username to connect with, overriding defaults .sp @@ -307499,7 +307499,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBpassword\fP \-\- +\fBpassword\fP \-\- .sp password to connect with, overriding defaults .sp @@ -307610,7 +307610,7 @@ possible values. \fBpermissions\fP \-\- Permissions to set on the target folder. This is mostly used for filesystem\-based pool types. See \fI\%Permissions definition\fP for more details on this structure. .IP \(bu 2 -\fBsource_devices\fP \-\- +\fBsource_devices\fP \-\- .sp List of source devices for pools backed by physical devices. (Default: \fBNone\fP) .sp @@ -307624,7 +307624,7 @@ for more information on the use of \fBpart_separator\fP \fBsource_dir\fP \-\- Path to the source directory for pools of type \fBdir\fP, \fBnetfs\fP or \fBgluster\fP\&. (Default: \fBNone\fP) .IP \(bu 2 -\fBsource_initiator\fP \-\- +\fBsource_initiator\fP \-\- .sp Initiator IQN for libiscsi\-direct pool types. (Default: \fBNone\fP) .sp @@ -307632,7 +307632,7 @@ New in version 3000. .IP \(bu 2 -\fBsource_adapter\fP \-\- +\fBsource_adapter\fP \-\- .sp SCSI source definition. The value is a dictionary with \fBtype\fP, \fBname\fP, \fBparent\fP, \fBmanaged\fP, \fBparent_wwnn\fP, \fBparent_wwpn\fP, \fBparent_fabric_wwn\fP, \fBwwnn\fP, \fBwwpn\fP @@ -307648,7 +307648,7 @@ for the meaning and possible values of these properties. \fBsource_hosts\fP \-\- List of source for pools backed by storage from remote servers. Each item is the hostname optionally followed by the port separated by a colon. (Default: \fBNone\fP) .IP \(bu 2 -\fBsource_auth\fP \-\- +\fBsource_auth\fP \-\- .sp Source authentication details. (Default: \fBNone\fP) .sp @@ -307701,7 +307701,7 @@ For Ceph authentications a base64 encoded key is expected. .IP \(bu 2 \fBsource_name\fP \-\- Identifier of name\-based sources. .IP \(bu 2 -\fBsource_format\fP \-\- +\fBsource_format\fP \-\- .sp String representing the source format. The possible values are depending on the source type. See \fI\%libvirt documentation\fP for @@ -308092,7 +308092,7 @@ If called with test=True, this is also reporting whether an update would be perf .IP \(bu 2 \fBname\fP \-\- Pool name .IP \(bu 2 -\fBptype\fP \-\- +\fBptype\fP \-\- .sp Pool type. See \fI\%libvirt documentation\fP for the possible values. @@ -308103,7 +308103,7 @@ possible values. \fBpermissions\fP \-\- Permissions to set on the target folder. This is mostly used for filesystem\-based pool types. See \fI\%Permissions definition\fP for more details on this structure. .IP \(bu 2 -\fBsource_devices\fP \-\- +\fBsource_devices\fP \-\- .sp List of source devices for pools backed by physical devices. (Default: \fBNone\fP) .sp @@ -308117,7 +308117,7 @@ for more information on the use of \fBpart_separator\fP \fBsource_dir\fP \-\- Path to the source directory for pools of type \fBdir\fP, \fBnetfs\fP or \fBgluster\fP\&. (Default: \fBNone\fP) .IP \(bu 2 -\fBsource_initiator\fP \-\- +\fBsource_initiator\fP \-\- .sp Initiator IQN for libiscsi\-direct pool types. (Default: \fBNone\fP) .sp @@ -308125,7 +308125,7 @@ New in version 3000. .IP \(bu 2 -\fBsource_adapter\fP \-\- +\fBsource_adapter\fP \-\- .sp SCSI source definition. The value is a dictionary with \fBtype\fP, \fBname\fP, \fBparent\fP, \fBmanaged\fP, \fBparent_wwnn\fP, \fBparent_wwpn\fP, \fBparent_fabric_wwn\fP, \fBwwnn\fP, \fBwwpn\fP @@ -308141,7 +308141,7 @@ for the meaning and possible values of these properties. \fBsource_hosts\fP \-\- List of source for pools backed by storage from remote servers. Each item is the hostname optionally followed by the port separated by a colon. (Default: \fBNone\fP) .IP \(bu 2 -\fBsource_auth\fP \-\- +\fBsource_auth\fP \-\- .sp Source authentication details. (Default: \fBNone\fP) .sp @@ -308194,7 +308194,7 @@ For Ceph authentications a base64 encoded key is expected. .IP \(bu 2 \fBsource_name\fP \-\- Identifier of name\-based sources. .IP \(bu 2 -\fBsource_format\fP \-\- +\fBsource_format\fP \-\- .sp String representing the source format. The possible values are depending on the source type. See \fI\%libvirt documentation\fP for @@ -308255,7 +308255,7 @@ images \- USE WITH EXTREME CAUTION! .IP \(bu 2 \fBdirs\fP \-\- pass True to remove containing directories .IP \(bu 2 -\fBremovables\fP \-\- +\fBremovables\fP \-\- .sp pass True to remove removable devices .sp @@ -308263,7 +308263,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBconnection\fP \-\- +\fBconnection\fP \-\- .sp libvirt connection URI, overriding defaults .sp @@ -308271,7 +308271,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBusername\fP \-\- +\fBusername\fP \-\- .sp username to connect with, overriding defaults .sp @@ -308279,7 +308279,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBpassword\fP \-\- +\fBpassword\fP \-\- .sp password to connect with, overriding defaults .sp @@ -308312,7 +308312,7 @@ Reboot a domain via ACPI request .IP \(bu 2 \fBvm\fP \-\- domain name .IP \(bu 2 -\fBconnection\fP \-\- +\fBconnection\fP \-\- .sp libvirt connection URI, overriding defaults .sp @@ -308320,7 +308320,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBusername\fP \-\- +\fBusername\fP \-\- .sp username to connect with, overriding defaults .sp @@ -308328,7 +308328,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBpassword\fP \-\- +\fBpassword\fP \-\- .sp password to connect with, overriding defaults .sp @@ -308361,7 +308361,7 @@ Reset a VM by emulating the reset button on a physical machine .IP \(bu 2 \fBvm\fP \-\- domain name .IP \(bu 2 -\fBconnection\fP \-\- +\fBconnection\fP \-\- .sp libvirt connection URI, overriding defaults .sp @@ -308369,7 +308369,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBusername\fP \-\- +\fBusername\fP \-\- .sp username to connect with, overriding defaults .sp @@ -308377,7 +308377,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBpassword\fP \-\- +\fBpassword\fP \-\- .sp password to connect with, overriding defaults .sp @@ -308410,7 +308410,7 @@ Resume the named vm .IP \(bu 2 \fBvm\fP \-\- domain name .IP \(bu 2 -\fBconnection\fP \-\- +\fBconnection\fP \-\- .sp libvirt connection URI, overriding defaults .sp @@ -308418,7 +308418,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBusername\fP \-\- +\fBusername\fP \-\- .sp username to connect with, overriding defaults .sp @@ -308426,7 +308426,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBpassword\fP \-\- +\fBpassword\fP \-\- .sp password to connect with, overriding defaults .sp @@ -308463,7 +308463,7 @@ Revert snapshot to the previous from current (if available) or to the specific. .IP \(bu 2 \fBcleanup\fP \-\- Remove all newer than reverted snapshots. Values: True or False (default False). .IP \(bu 2 -\fBconnection\fP \-\- +\fBconnection\fP \-\- .sp libvirt connection URI, overriding defaults .sp @@ -308471,7 +308471,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBusername\fP \-\- +\fBusername\fP \-\- .sp username to connect with, overriding defaults .sp @@ -308479,7 +308479,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBpassword\fP \-\- +\fBpassword\fP \-\- .sp password to connect with, overriding defaults .sp @@ -308550,7 +308550,7 @@ system on reboot. \fBstate\fP \-\- \(aqon\(aq to auto start the pool, anything else to mark the pool not to be started when the host boots .IP \(bu 2 -\fBconnection\fP \-\- +\fBconnection\fP \-\- .sp libvirt connection URI, overriding defaults .sp @@ -308558,7 +308558,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBusername\fP \-\- +\fBusername\fP \-\- .sp username to connect with, overriding defaults .sp @@ -308566,7 +308566,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBpassword\fP \-\- +\fBpassword\fP \-\- .sp password to connect with, overriding defaults .sp @@ -308604,7 +308604,7 @@ for this to work. .IP \(bu 2 \fBconfig\fP \-\- if True then libvirt will be asked to modify the config as well .IP \(bu 2 -\fBconnection\fP \-\- +\fBconnection\fP \-\- .sp libvirt connection URI, overriding defaults .sp @@ -308612,7 +308612,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBusername\fP \-\- +\fBusername\fP \-\- .sp username to connect with, overriding defaults .sp @@ -308620,7 +308620,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBpassword\fP \-\- +\fBpassword\fP \-\- .sp password to connect with, overriding defaults .sp @@ -308661,7 +308661,7 @@ If config is True then we ask libvirt to modify the config as well .IP \(bu 2 \fBconfig\fP \-\- if True then libvirt will be asked to modify the config as well .IP \(bu 2 -\fBconnection\fP \-\- +\fBconnection\fP \-\- .sp libvirt connection URI, overriding defaults .sp @@ -308669,7 +308669,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBusername\fP \-\- +\fBusername\fP \-\- .sp username to connect with, overriding defaults .sp @@ -308677,7 +308677,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBpassword\fP \-\- +\fBpassword\fP \-\- .sp password to connect with, overriding defaults .sp @@ -308711,7 +308711,7 @@ Send a soft shutdown signal to the named vm .IP \(bu 2 \fBvm\fP \-\- domain name .IP \(bu 2 -\fBconnection\fP \-\- +\fBconnection\fP \-\- .sp libvirt connection URI, overriding defaults .sp @@ -308719,7 +308719,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBusername\fP \-\- +\fBusername\fP \-\- .sp username to connect with, overriding defaults .sp @@ -308727,7 +308727,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBpassword\fP \-\- +\fBpassword\fP \-\- .sp password to connect with, overriding defaults .sp @@ -308766,7 +308766,7 @@ name with ISO 8601 time as a suffix. \fBsuffix\fP \-\- Add suffix for the new name. Useful in states, where such snapshots can be distinguished from manually created. .IP \(bu 2 -\fBconnection\fP \-\- +\fBconnection\fP \-\- .sp libvirt connection URI, overriding defaults .sp @@ -308774,7 +308774,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBusername\fP \-\- +\fBusername\fP \-\- .sp username to connect with, overriding defaults .sp @@ -308782,7 +308782,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBpassword\fP \-\- +\fBpassword\fP \-\- .sp password to connect with, overriding defaults .sp @@ -308818,7 +308818,7 @@ Start a defined domain .IP \(bu 2 \fBvm\fP \-\- domain name .IP \(bu 2 -\fBconnection\fP \-\- +\fBconnection\fP \-\- .sp libvirt connection URI, overriding defaults .sp @@ -308826,7 +308826,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBusername\fP \-\- +\fBusername\fP \-\- .sp username to connect with, overriding defaults .sp @@ -308834,7 +308834,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBpassword\fP \-\- +\fBpassword\fP \-\- .sp password to connect with, overriding defaults .sp @@ -308867,7 +308867,7 @@ Hard power down the virtual machine, this is equivalent to pulling the power. .IP \(bu 2 \fBvm\fP \-\- domain name .IP \(bu 2 -\fBconnection\fP \-\- +\fBconnection\fP \-\- .sp libvirt connection URI, overriding defaults .sp @@ -308875,7 +308875,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBusername\fP \-\- +\fBusername\fP \-\- .sp username to connect with, overriding defaults .sp @@ -308883,7 +308883,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBpassword\fP \-\- +\fBpassword\fP \-\- .sp password to connect with, overriding defaults .sp @@ -308917,7 +308917,7 @@ this only works if the vm is powered down .IP \(bu 2 \fBvm\fP \-\- domain name .IP \(bu 2 -\fBconnection\fP \-\- +\fBconnection\fP \-\- .sp libvirt connection URI, overriding defaults .sp @@ -308925,7 +308925,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBusername\fP \-\- +\fBusername\fP \-\- .sp username to connect with, overriding defaults .sp @@ -308933,7 +308933,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBpassword\fP \-\- +\fBpassword\fP \-\- .sp password to connect with, overriding defaults .sp @@ -308966,7 +308966,7 @@ Update the definition of an existing domain. .IP \(bu 2 \fBname\fP \-\- Name of the domain to update .IP \(bu 2 -\fBcpu\fP \-\- +\fBcpu\fP \-\- .sp Number of virtual CPUs to assign to the virtual machine or a dictionary with detailed information to configure cpu model and topology, numa node tuning, cpu tuning and iothreads allocation. The structure of the dictionary is @@ -308977,7 +308977,7 @@ specify \fBNone\fP object. Please note that \fBNone\fP object is mapped to \fBnu instead. .IP \(bu 2 -\fBmem\fP \-\- +\fBmem\fP \-\- .sp Amount of memory to allocate to the virtual machine in MiB. Since 3002, a dictionary can be used to contain detailed configuration which support memory allocation or tuning. Supported parameters are \fBboot\fP, @@ -309033,7 +309033,7 @@ will be attempted. (Default: \fBTrue\fP) .IP \(bu 2 \fBpassword\fP \-\- password to connect with, overriding defaults .IP \(bu 2 -\fBboot\fP \-\- +\fBboot\fP \-\- .sp Specifies kernel, initial ramdisk and kernel command line parameters for the virtual machine. This is an optional parameter, all of the keys are optional within the dictionary. @@ -309062,7 +309062,7 @@ New in version 3000. .IP \(bu 2 -\fBboot_dev\fP \-\- +\fBboot_dev\fP \-\- .sp Space separated list of devices to boot from sorted by decreasing priority. Values can be \fBhd\fP, \fBfd\fP, \fBcdrom\fP or \fBnetwork\fP\&. @@ -309073,7 +309073,7 @@ New in version 3002. .IP \(bu 2 -\fBnumatune\fP \-\- +\fBnumatune\fP \-\- .sp The optional numatune element provides details of how to tune the performance of a NUMA host via controlling NUMA policy for domain process. The optional \fBmemory\fP element specifies how to allocate memory for the domain process @@ -309088,7 +309088,7 @@ New in version 3003. .IP \(bu 2 -\fBserials\fP \-\- +\fBserials\fP \-\- .sp Dictionary providing details on the serials connection to create. (Default: \fBNone\fP) See \fI\%Serials and Consoles Definitions\fP for more details on the possible values. @@ -309097,7 +309097,7 @@ New in version 3003. .IP \(bu 2 -\fBconsoles\fP \-\- +\fBconsoles\fP \-\- .sp Dictionary providing details on the consoles device to create. (Default: \fBNone\fP) See \fI\%Serials and Consoles Definitions\fP for more details on the possible values. @@ -309106,7 +309106,7 @@ New in version 3003. .IP \(bu 2 -\fBstop_on_reboot\fP \-\- +\fBstop_on_reboot\fP \-\- .sp If set to \fBTrue\fP the guest will stop instead of rebooting. This is specially useful when creating a virtual machine with an installation cdrom or @@ -309117,7 +309117,7 @@ New in version 3003. .IP \(bu 2 -\fBtest\fP \-\- +\fBtest\fP \-\- .sp run in dry\-run mode if set to True .sp @@ -309125,7 +309125,7 @@ New in version 3001. .IP \(bu 2 -\fBhypervisor_features\fP \-\- +\fBhypervisor_features\fP \-\- .sp Enable or disable hypervisor\-specific features on the virtual machine. .sp @@ -309144,7 +309144,7 @@ hypervisor_features: .UNINDENT .IP \(bu 2 -\fBclock\fP \-\- +\fBclock\fP \-\- .sp Configure the guest clock. The value is a dictionary with the following keys: @@ -309220,7 +309220,7 @@ clock: .UNINDENT .IP \(bu 2 -\fBhost_devices\fP \-\- +\fBhost_devices\fP \-\- .sp List of host devices to passthrough to the guest. The value is a list of device names as provided by the \fI\%node_devices()\fP function. @@ -309300,7 +309300,7 @@ list of dicts: .IP \(bu 2 \fBvm\fP \-\- domain name .IP \(bu 2 -\fBconnection\fP \-\- +\fBconnection\fP \-\- .sp libvirt connection URI, overriding defaults .sp @@ -309308,7 +309308,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBusername\fP \-\- +\fBusername\fP \-\- .sp username to connect with, overriding defaults .sp @@ -309316,7 +309316,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBpassword\fP \-\- +\fBpassword\fP \-\- .sp password to connect with, overriding defaults .sp @@ -309369,7 +309369,7 @@ list of dicts: .IP \(bu 2 \fBvm\fP \-\- domain name .IP \(bu 2 -\fBconnection\fP \-\- +\fBconnection\fP \-\- .sp libvirt connection URI, overriding defaults .sp @@ -309377,7 +309377,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBusername\fP \-\- +\fBusername\fP \-\- .sp username to connect with, overriding defaults .sp @@ -309385,7 +309385,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBpassword\fP \-\- +\fBpassword\fP \-\- .sp password to connect with, overriding defaults .sp @@ -309441,7 +309441,7 @@ list of dicts: .IP \(bu 2 \fBvm\fP \-\- name of the domain .IP \(bu 2 -\fBconnection\fP \-\- +\fBconnection\fP \-\- .sp libvirt connection URI, overriding defaults .sp @@ -309449,7 +309449,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBusername\fP \-\- +\fBusername\fP \-\- .sp username to connect with, overriding defaults .sp @@ -309457,7 +309457,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBpassword\fP \-\- +\fBpassword\fP \-\- .sp password to connect with, overriding defaults .sp @@ -309513,7 +309513,7 @@ list of dicts: .IP \(bu 2 \fBvm\fP \-\- domain name .IP \(bu 2 -\fBconnection\fP \-\- +\fBconnection\fP \-\- .sp libvirt connection URI, overriding defaults .sp @@ -309521,7 +309521,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBusername\fP \-\- +\fBusername\fP \-\- .sp username to connect with, overriding defaults .sp @@ -309529,7 +309529,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBpassword\fP \-\- +\fBpassword\fP \-\- .sp password to connect with, overriding defaults .sp @@ -309590,7 +309590,7 @@ for just the named VM, otherwise it will return all VMs. .IP \(bu 2 \fBvm\fP \-\- name of the domain .IP \(bu 2 -\fBconnection\fP \-\- +\fBconnection\fP \-\- .sp libvirt connection URI, overriding defaults .sp @@ -309598,7 +309598,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBusername\fP \-\- +\fBusername\fP \-\- .sp username to connect with, overriding defaults .sp @@ -309606,7 +309606,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBpassword\fP \-\- +\fBpassword\fP \-\- .sp password to connect with, overriding defaults .sp @@ -309654,7 +309654,7 @@ By default, the type is guessed by libvirt from the pool type. \fBpermissions\fP \-\- Permissions to set on the target folder. This is mostly used for filesystem\-based pool types. See \fI\%Permissions definition\fP for more details on this structure. .IP \(bu 2 -\fBbacking_store\fP \-\- +\fBbacking_store\fP \-\- .sp dictionary describing a backing file for the volume. It must contain a \fBpath\fP property pointing to the base volume and a \fBformat\fP property defining the format @@ -315708,7 +315708,7 @@ category .INDENT 7.0 .TP .B Parameters -\fBcategory\fP (\fI\%str\fP) \-\- +\fBcategory\fP (\fI\%str\fP) \-\- .sp One of the nine categories to return. Can also be \fBAll\fP to return the settings for all categories. Valid options are: @@ -315786,7 +315786,7 @@ Set the configuration for the named audit setting .IP \(bu 2 \fBname\fP (\fI\%str\fP) \-\- The name of the setting to configure .IP \(bu 2 -\fBvalue\fP (\fI\%str\fP) \-\- +\fBvalue\fP (\fI\%str\fP) \-\- .sp The configuration for the named value. Valid options are: .INDENT 2.0 @@ -316337,7 +316337,7 @@ targeted. Default is None. .IP \(bu 2 \fI\%NotImplementedError\fP \-\- For all versions of Windows that are not Windows 10 .IP \(bu 2 -\fBand later. Server editions of Windows use ServerManager instead.\fP \-\- +\fBand later. Server editions of Windows use ServerManager instead.\fP \-\- .UNINDENT .TP .B Returns @@ -316418,7 +316418,7 @@ Install a package using DISM .B Parameters .INDENT 7.0 .IP \(bu 2 -\fBpackage\fP (\fI\%str\fP) \-\- +\fBpackage\fP (\fI\%str\fP) \-\- .sp The package to install. Can be a .cab file, a .msu file, or a folder .sp @@ -316478,7 +316478,7 @@ targeted. Default is None. .IP \(bu 2 \fI\%NotImplementedError\fP \-\- For all versions of Windows that are not Windows 10 .IP \(bu 2 -\fBand later. Server editions of Windows use ServerManager instead.\fP \-\- +\fBand later. Server editions of Windows use ServerManager instead.\fP \-\- .UNINDENT .TP .B Returns @@ -316546,7 +316546,7 @@ targeted. Default is None. .IP \(bu 2 \fI\%NotImplementedError\fP \-\- For all versions of Windows that are not Windows 10 .IP \(bu 2 -\fBand later. Server editions of Windows use ServerManager instead.\fP \-\- +\fBand later. Server editions of Windows use ServerManager instead.\fP \-\- .UNINDENT .TP .B Returns @@ -316577,7 +316577,7 @@ List features on the system or in a package .B Parameters .INDENT 7.0 .IP \(bu 2 -\fBpackage\fP (\fIOptional\fP\fI[\fP\fI\%str\fP\fI]\fP) \-\- +\fBpackage\fP (\fIOptional\fP\fI[\fP\fI\%str\fP\fI]\fP) \-\- .sp The full path to the package. Can be either a \&.cab file or a folder. Should point to the original source of the @@ -316639,7 +316639,7 @@ targeted. Default is None. .IP \(bu 2 \fI\%NotImplementedError\fP \-\- For all versions of Windows that are not Windows 10 .IP \(bu 2 -\fBand later. Server editions of Windows use ServerManager instead.\fP \-\- +\fBand later. Server editions of Windows use ServerManager instead.\fP \-\- .UNINDENT .TP .B Returns @@ -316782,7 +316782,7 @@ targeted. Default is None. .IP \(bu 2 \fI\%NotImplementedError\fP \-\- For all versions of Windows that are not Windows 10 .IP \(bu 2 -\fBand later. Server editions of Windows use ServerManager instead.\fP \-\- +\fBand later. Server editions of Windows use ServerManager instead.\fP \-\- .UNINDENT .TP .B Returns @@ -316940,7 +316940,7 @@ Get the type of DNS configuration (dhcp / static). .IP \(bu 2 \fBinterface\fP (\fI\%str\fP) \-\- The name of the network interface. This is the .IP \(bu 2 -\fBin the Network Connection Details for the device\fP (\fIDescription\fP) \-\- +\fBin the Network Connection Details for the device\fP (\fIDescription\fP) \-\- .UNINDENT .TP .B Returns @@ -316973,7 +316973,7 @@ Return a list of the configured DNS servers of the specified interface .IP \(bu 2 \fBinterface\fP (\fI\%str\fP) \-\- The name of the network interface. This is the name as .IP \(bu 2 -\fBappears in the Control Panel under Network Connections\fP (\fIit\fP) \-\- +\fBappears in the Control Panel under Network Connections\fP (\fIit\fP) \-\- .UNINDENT .TP .B Returns @@ -317113,7 +317113,7 @@ file a \fBconfig_name\fP must be specified. If the \fBconfig_name\fP is not specified, the name of the file will be used as the \fBconfig_name\fP to run. Optional. .IP \(bu 2 -\fBconfig_data\fP (\fI\%str\fP) \-\- +\fBconfig_data\fP (\fI\%str\fP) \-\- .sp Configuration data in the form of a hash table that will be passed to the \fBConfigurationData\fP parameter when the @@ -317125,7 +317125,7 @@ New in version 2017.7.0. .IP \(bu 2 -\fBconfig_data_source\fP (\fI\%str\fP) \-\- +\fBconfig_data_source\fP (\fI\%str\fP) \-\- .sp The path to the \fB\&.psd1\fP file on \fBfile_roots\fP to cache at the location specified by @@ -317136,7 +317136,7 @@ New in version 2017.7.0. .IP \(bu 2 -\fBscript_parameters\fP (\fI\%str\fP) \-\- +\fBscript_parameters\fP (\fI\%str\fP) \-\- .sp Any additional parameters expected by the configuration script. These must be defined in the script itself. @@ -317281,7 +317281,7 @@ New in version 2017.7.5. .INDENT 7.0 .TP .B Parameters -\fBreset\fP (\fI\%bool\fP) \-\- +\fBreset\fP (\fI\%bool\fP) \-\- .sp Attempts to reset the DSC configuration by removing the following from \fBC:\eWindows\eSystem32\eConfiguration\fP: @@ -317398,7 +317398,7 @@ file a \fBconfig_name\fP must be specified. If the \fBconfig_name\fP is not specified, the name of the file will be used as the \fBconfig_name\fP to run. Optional. .IP \(bu 2 -\fBconfig_data\fP (\fI\%str\fP) \-\- +\fBconfig_data\fP (\fI\%str\fP) \-\- .sp Configuration data in the form of a hash table that will be passed to the \fBConfigurationData\fP parameter when the @@ -317410,7 +317410,7 @@ New in version 2017.7.0. .IP \(bu 2 -\fBconfig_data_source\fP (\fI\%str\fP) \-\- +\fBconfig_data_source\fP (\fI\%str\fP) \-\- .sp The path to the \fB\&.psd1\fP file on \fBfile_roots\fP to cache at the location specified by @@ -317421,7 +317421,7 @@ New in version 2017.7.0. .IP \(bu 2 -\fBscript_parameters\fP (\fI\%str\fP) \-\- +\fBscript_parameters\fP (\fI\%str\fP) \-\- .sp Any additional parameters expected by the configuration script. These must be defined in the script itself. @@ -318320,7 +318320,7 @@ Ensure that the parent directory containing this path is available. .B Parameters .INDENT 7.0 .IP \(bu 2 -\fBpath\fP (\fI\%str\fP) \-\- +\fBpath\fP (\fI\%str\fP) \-\- .sp The full path to the directory. .sp @@ -318340,7 +318340,7 @@ like \fBC:\etemp\etest\e\fP, then it would be treated as \fBowner\fP (\fI\%str\fP) \-\- The owner of the directory. If not passed, it will be the account that created the directory, likely SYSTEM. .IP \(bu 2 -\fBgrant_perms\fP (\fI\%dict\fP) \-\- +\fBgrant_perms\fP (\fI\%dict\fP) \-\- .sp A dictionary containing the user/group and the basic permissions to grant, ie: \fB{\(aquser\(aq: {\(aqperms\(aq: \(aqbasic_permission\(aq}}\fP\&. You can also @@ -318380,7 +318380,7 @@ grant permissions. False, inheritance will be disabled. Inheritance setting will not apply to parent directories if they must be created. .IP \(bu 2 -\fBreset\fP (\fI\%bool\fP) \-\- +\fBreset\fP (\fI\%bool\fP) \-\- .sp If \fBTrue\fP the existing DACL will be cleared and replaced with the settings defined in this function. If \fBFalse\fP, new entries will be @@ -318434,7 +318434,7 @@ Set owner and permissions for each directory created. \fBowner\fP (\fI\%str\fP) \-\- The owner of the directory. If not passed, it will be the account that created the directory, likely SYSTEM. .IP \(bu 2 -\fBgrant_perms\fP (\fI\%dict\fP) \-\- +\fBgrant_perms\fP (\fI\%dict\fP) \-\- .sp A dictionary containing the user/group and the basic permissions to grant, ie: \fB{\(aquser\(aq: {\(aqperms\(aq: \(aqbasic_permission\(aq}}\fP\&. You can also @@ -318474,7 +318474,7 @@ grant permissions. \fBFalse\fP, inheritance will be disabled. Inheritance setting will not apply to parent directories if they must be created .IP \(bu 2 -\fBreset\fP (\fI\%bool\fP) \-\- +\fBreset\fP (\fI\%bool\fP) \-\- .sp If \fBTrue\fP the existing DACL will be cleared and replaced with the settings defined in this function. If \fBFalse\fP, new entries will be @@ -318525,7 +318525,7 @@ Ensure that the directory is available and permissions are set. \fBowner\fP (\fI\%str\fP) \-\- The owner of the directory. If not passed, it will be the account that created the directory, likely SYSTEM .IP \(bu 2 -\fBgrant_perms\fP (\fI\%dict\fP) \-\- +\fBgrant_perms\fP (\fI\%dict\fP) \-\- .sp A dictionary containing the user/group and the basic permissions to grant, ie: \fB{\(aquser\(aq: {\(aqperms\(aq: \(aqbasic_permission\(aq}}\fP\&. You can also @@ -318566,7 +318566,7 @@ grant permissions. \fBFalse\fP, inheritance will be disabled. Inheritance setting will not apply to parent directories if they must be created. .IP \(bu 2 -\fBreset\fP (\fI\%bool\fP) \-\- +\fBreset\fP (\fI\%bool\fP) \-\- .sp If \fBTrue\fP the existing DACL will be cleared and replaced with the settings defined in this function. If \fBFalse\fP, new entries will be @@ -318731,7 +318731,7 @@ Set permissions for the given path .IP \(bu 2 \fBpath\fP (\fI\%str\fP) \-\- The full path to the directory. .IP \(bu 2 -\fBgrant_perms\fP (\fI\%dict\fP) \-\- +\fBgrant_perms\fP (\fI\%dict\fP) \-\- .sp A dictionary containing the user/group and the basic permissions to grant, ie: \fB{\(aquser\(aq: {\(aqperms\(aq: \(aqbasic_permission\(aq}}\fP\&. You can also @@ -318769,7 +318769,7 @@ A value of \fBNone\fP will make no changes to the \fBgrant\fP portion of the DACL. Default is \fBNone\fP\&. .IP \(bu 2 -\fBdeny_perms\fP (\fI\%dict\fP) \-\- +\fBdeny_perms\fP (\fI\%dict\fP) \-\- .sp A dictionary containing the user/group and permissions to deny along with the \fBapplies_to\fP setting. Use the same format used for the @@ -318785,7 +318785,7 @@ the DACL. Default is \fBNone\fP\&. not apply to parent directories if they must be created. Default is \fBFalse\fP\&. .IP \(bu 2 -\fBreset\fP (\fI\%bool\fP) \-\- +\fBreset\fP (\fI\%bool\fP) \-\- .sp If \fBTrue\fP the existing DCL will be cleared and replaced with the settings defined in this function. If \fBFalse\fP, new entries will be @@ -319122,7 +319122,7 @@ Required. 0 and 65535. Can be a range. Can specify multiple ports separated by commas. Required. .IP \(bu 2 -\fBprotocol\fP (\fIOptional\fP\fI[\fP\fI\%str\fP\fI]\fP) \-\- +\fBprotocol\fP (\fIOptional\fP\fI[\fP\fI\%str\fP\fI]\fP) \-\- .sp The protocol. Can be any of the following: .INDENT 2.0 @@ -319141,7 +319141,7 @@ any .UNINDENT .IP \(bu 2 -\fBaction\fP (\fIOptional\fP\fI[\fP\fI\%str\fP\fI]\fP) \-\- +\fBaction\fP (\fIOptional\fP\fI[\fP\fI\%str\fP\fI]\fP) \-\- .sp The action the rule performs. Can be any of the following: @@ -319157,7 +319157,7 @@ bypass .IP \(bu 2 \fBdir\fP (\fIOptional\fP\fI[\fP\fI\%str\fP\fI]\fP) \-\- The direction. Can be \fBin\fP or \fBout\fP\&. .IP \(bu 2 -\fBremoteip\fP (\fIOptional\fP\fI [\fP\fI\%str\fP\fI]\fP) \-\- +\fBremoteip\fP (\fIOptional\fP\fI [\fP\fI\%str\fP\fI]\fP) \-\- .sp The remote IP. Can be any of the following: .INDENT 2.0 @@ -319280,7 +319280,7 @@ Disable firewall profile .INDENT 7.0 .TP .B Parameters -\fBprofile\fP (\fIOptional\fP\fI[\fP\fI\%str\fP\fI]\fP) \-\- +\fBprofile\fP (\fIOptional\fP\fI[\fP\fI\%str\fP\fI]\fP) \-\- .sp The name of the profile to disable. Default is \fBallprofiles\fP\&. Valid options are: @@ -319328,7 +319328,7 @@ Enable firewall profile .INDENT 7.0 .TP .B Parameters -\fBprofile\fP (\fIOptional\fP\fI[\fP\fI\%str\fP\fI]\fP) \-\- +\fBprofile\fP (\fIOptional\fP\fI[\fP\fI\%str\fP\fI]\fP) \-\- .sp The name of the profile to enable. Default is \fBallprofiles\fP\&. Valid options are: @@ -319379,7 +319379,7 @@ New in version 2019.2.0. .INDENT 7.0 .TP .B Parameters -\fBstore\fP (\fI\%str\fP) \-\- +\fBstore\fP (\fI\%str\fP) \-\- .sp The store to use. This is either the local firewall policy or the policy defined by local group policy. Valid options are: @@ -319433,7 +319433,7 @@ New in version 2019.2.0. .B Parameters .INDENT 7.0 .IP \(bu 2 -\fBprofile\fP (\fI\%str\fP) \-\- +\fBprofile\fP (\fI\%str\fP) \-\- .sp The firewall profile to query. Valid options are: .INDENT 2.0 @@ -319446,7 +319446,7 @@ private .UNINDENT .IP \(bu 2 -\fBstore\fP (\fI\%str\fP) \-\- +\fBstore\fP (\fI\%str\fP) \-\- .sp The store to use. This is either the local firewall policy or the policy defined by local group policy. Valid options are: @@ -319564,7 +319564,7 @@ New in version 2019.2.0. .B Parameters .INDENT 7.0 .IP \(bu 2 -\fBprofile\fP (\fI\%str\fP) \-\- +\fBprofile\fP (\fI\%str\fP) \-\- .sp The firewall profile to query. Valid options are: .INDENT 2.0 @@ -319577,7 +319577,7 @@ private .UNINDENT .IP \(bu 2 -\fBsection\fP (\fI\%str\fP) \-\- +\fBsection\fP (\fI\%str\fP) \-\- .sp The property to query within the selected profile. Valid options are: @@ -319593,7 +319593,7 @@ state : firewalls state (on | off) .UNINDENT .IP \(bu 2 -\fBstore\fP (\fI\%str\fP) \-\- +\fBstore\fP (\fI\%str\fP) \-\- .sp The store to use. This is either the local firewall policy or the policy defined by local group policy. Valid options are: @@ -319689,7 +319689,7 @@ New in version 2019.2.0. .B Parameters .INDENT 7.0 .IP \(bu 2 -\fBprofile\fP (\fI\%str\fP) \-\- +\fBprofile\fP (\fI\%str\fP) \-\- .sp The firewall profile to query. Valid options are: .INDENT 2.0 @@ -319702,7 +319702,7 @@ private .UNINDENT .IP \(bu 2 -\fBinbound\fP (\fI\%str\fP) \-\- +\fBinbound\fP (\fI\%str\fP) \-\- .sp The inbound setting. If \fBNone\fP is passed, the setting will remain unchanged. Valid values are: @@ -319720,7 +319720,7 @@ notconfigured Default is \fBNone\fP .IP \(bu 2 -\fBoutbound\fP (\fI\%str\fP) \-\- +\fBoutbound\fP (\fI\%str\fP) \-\- .sp The outbound setting. If \fBNone\fP is passed, the setting will remain unchanged. Valid values are: @@ -319736,7 +319736,7 @@ notconfigured Default is \fBNone\fP .IP \(bu 2 -\fBstore\fP (\fI\%str\fP) \-\- +\fBstore\fP (\fI\%str\fP) \-\- .sp The store to use. This is either the local firewall policy or the policy defined by local group policy. Valid options are: @@ -319803,7 +319803,7 @@ New in version 2019.2.0. .B Parameters .INDENT 7.0 .IP \(bu 2 -\fBprofile\fP (\fI\%str\fP) \-\- +\fBprofile\fP (\fI\%str\fP) \-\- .sp The firewall profile to configure. Valid options are: .INDENT 2.0 @@ -319816,7 +319816,7 @@ private .UNINDENT .IP \(bu 2 -\fBsetting\fP (\fI\%str\fP) \-\- +\fBsetting\fP (\fI\%str\fP) \-\- .sp The logging setting to configure. Valid options are: .INDENT 2.0 @@ -319831,7 +319831,7 @@ maxfilesize .UNINDENT .IP \(bu 2 -\fBvalue\fP (\fI\%str\fP) \-\- +\fBvalue\fP (\fI\%str\fP) \-\- .sp The value to apply to the setting. Valid values are dependent upon the setting being configured. Valid options are: @@ -319896,7 +319896,7 @@ notconfigured .UNINDENT .IP \(bu 2 -\fBstore\fP (\fI\%str\fP) \-\- +\fBstore\fP (\fI\%str\fP) \-\- .sp The store to use. This is either the local firewall policy or the policy defined by local group policy. Valid options are: @@ -319966,7 +319966,7 @@ New in version 2019.2.0. .B Parameters .INDENT 7.0 .IP \(bu 2 -\fBprofile\fP (\fI\%str\fP) \-\- +\fBprofile\fP (\fI\%str\fP) \-\- .sp The firewall profile to configure. Valid options are: .INDENT 2.0 @@ -319979,7 +319979,7 @@ private .UNINDENT .IP \(bu 2 -\fBsetting\fP (\fI\%str\fP) \-\- +\fBsetting\fP (\fI\%str\fP) \-\- .sp The firewall setting to configure. Valid options are: .INDENT 2.0 @@ -319996,7 +319996,7 @@ unicastresponsetomulticast .UNINDENT .IP \(bu 2 -\fBvalue\fP (\fI\%str\fP) \-\- +\fBvalue\fP (\fI\%str\fP) \-\- .sp The value to apply to the setting. Valid options are .INDENT 2.0 @@ -320016,7 +320016,7 @@ notconfigured .UNINDENT .IP \(bu 2 -\fBstore\fP (\fI\%str\fP) \-\- +\fBstore\fP (\fI\%str\fP) \-\- .sp The store to use. This is either the local firewall policy or the policy defined by local group policy. Valid options are: @@ -320077,7 +320077,7 @@ New in version 2019.2.0. .B Parameters .INDENT 7.0 .IP \(bu 2 -\fBprofile\fP (\fI\%str\fP) \-\- +\fBprofile\fP (\fI\%str\fP) \-\- .sp The firewall profile to configure. Valid options are: .INDENT 2.0 @@ -320090,7 +320090,7 @@ private .UNINDENT .IP \(bu 2 -\fBstate\fP (\fI\%str\fP) \-\- +\fBstate\fP (\fI\%str\fP) \-\- .sp The firewall state. Valid options are: .INDENT 2.0 @@ -320110,7 +320110,7 @@ notconfigured .UNINDENT .IP \(bu 2 -\fBstore\fP (\fI\%str\fP) \-\- +\fBstore\fP (\fI\%str\fP) \-\- .sp The store to use. This is either the local firewall policy or the policy defined by local group policy. Valid options are: @@ -322176,7 +322176,7 @@ default is \fBen\-US\fP name of the policy. \fBreturn_full_policy_names\fP and \fBhierarchical_return\fP will be ignored. Default is \fBTrue\fP .IP \(bu 2 -\fBreturn_full_policy_names\fP (\fI\%bool\fP) \-\- +\fBreturn_full_policy_names\fP (\fI\%bool\fP) \-\- .sp Returns the full policy name regardless of what was passed in \fBpolicy_name\fP @@ -322425,7 +322425,7 @@ Set a local server policy. .B Parameters .INDENT 7.0 .IP \(bu 2 -\fBcomputer_policy\fP (\fI\%dict\fP) \-\- +\fBcomputer_policy\fP (\fI\%dict\fP) \-\- .sp A dictionary of "policyname: value" pairs of computer policies to set. \(aqvalue\(aq should be how it is displayed in the gpedit GUI, i.e. @@ -322481,7 +322481,7 @@ the element ID/names that the module will accept. \fBuser_policy\fP (\fI\%dict\fP) \-\- The same setup as the computer_policy, except with data to configure the local user policy. .IP \(bu 2 -\fBcumulative_rights_assignments\fP (\fI\%bool\fP) \-\- +\fBcumulative_rights_assignments\fP (\fI\%bool\fP) \-\- .sp Determine how user rights assignment policies are configured. .sp @@ -323554,7 +323554,7 @@ to install. (no spaces after the commas) \fBrefresh\fP (\fI\%bool\fP) \-\- Boolean value representing whether or not to refresh the winrepo db. Default \fBFalse\fP\&. .IP \(bu 2 -\fBpkgs\fP (\fI\%list\fP) \-\- +\fBpkgs\fP (\fI\%list\fP) \-\- .sp A list of packages to install from a software repository. All packages listed under \fBpkgs\fP will be installed via a single @@ -324679,7 +324679,7 @@ Get the current disk timeout of the given scheme .INDENT 7.0 .TP .B Parameters -\fBscheme\fP (\fI\%str\fP) \-\- +\fBscheme\fP (\fI\%str\fP) \-\- .sp The scheme to use, leave as \fBNone\fP to use the current. Default is \fBNone\fP\&. This can be the GUID or the Alias for the Scheme. Known @@ -324772,7 +324772,7 @@ Get the current monitor timeout of the given scheme .INDENT 7.0 .TP .B Parameters -\fBscheme\fP (\fI\%str\fP) \-\- +\fBscheme\fP (\fI\%str\fP) \-\- .sp The scheme to use, leave as \fBNone\fP to use the current. Default is \fBNone\fP\&. This can be the GUID or the Alias for the Scheme. Known @@ -324869,7 +324869,7 @@ Set the disk timeout in minutes for the given power scheme .IP \(bu 2 \fBtimeout\fP (\fI\%int\fP) \-\- The amount of time in minutes before the disk will timeout .IP \(bu 2 -\fBpower\fP (\fI\%str\fP) \-\- +\fBpower\fP (\fI\%str\fP) \-\- .sp Set the value for AC or DC power. Default is \fBac\fP\&. Valid options are: @@ -324885,7 +324885,7 @@ are: .UNINDENT .IP \(bu 2 -\fBscheme\fP (\fI\%str\fP) \-\- +\fBscheme\fP (\fI\%str\fP) \-\- .sp The scheme to use, leave as \fBNone\fP to use the current. Default is \fBNone\fP\&. This can be the GUID or the Alias for the Scheme. Known @@ -324936,7 +324936,7 @@ Set the hibernate timeout in minutes for the given power scheme .IP \(bu 2 \fBtimeout\fP (\fI\%int\fP) \-\- The amount of time in minutes before the computer hibernates .IP \(bu 2 -\fBpower\fP (\fI\%str\fP) \-\- +\fBpower\fP (\fI\%str\fP) \-\- .sp Set the value for AC or DC power. Default is \fBac\fP\&. Valid options are: @@ -324952,7 +324952,7 @@ are: .UNINDENT .IP \(bu 2 -\fBscheme\fP (\fI\%str\fP) \-\- +\fBscheme\fP (\fI\%str\fP) \-\- .sp The scheme to use, leave as \fBNone\fP to use the current. Default is \fBNone\fP\&. This can be the GUID or the Alias for the Scheme. Known @@ -325003,7 +325003,7 @@ Set the monitor timeout in minutes for the given power scheme .IP \(bu 2 \fBtimeout\fP (\fI\%int\fP) \-\- The amount of time in minutes before the monitor will timeout .IP \(bu 2 -\fBpower\fP (\fI\%str\fP) \-\- +\fBpower\fP (\fI\%str\fP) \-\- .sp Set the value for AC or DC power. Default is \fBac\fP\&. Valid options are: @@ -325019,7 +325019,7 @@ are: .UNINDENT .IP \(bu 2 -\fBscheme\fP (\fI\%str\fP) \-\- +\fBscheme\fP (\fI\%str\fP) \-\- .sp The scheme to use, leave as \fBNone\fP to use the current. Default is \fBNone\fP\&. This can be the GUID or the Alias for the Scheme. Known @@ -325070,7 +325070,7 @@ Set the standby timeout in minutes for the given power scheme .IP \(bu 2 \fBtimeout\fP (\fI\%int\fP) \-\- The amount of time in minutes before the computer sleeps .IP \(bu 2 -\fBpower\fP (\fI\%str\fP) \-\- +\fBpower\fP (\fI\%str\fP) \-\- .sp Set the value for AC or DC power. Default is \fBac\fP\&. Valid options are: @@ -325086,7 +325086,7 @@ are: .UNINDENT .IP \(bu 2 -\fBscheme\fP (\fI\%str\fP) \-\- +\fBscheme\fP (\fI\%str\fP) \-\- .sp The scheme to use, leave as \fBNone\fP to use the current. Default is \fBNone\fP\&. This can be the GUID or the Alias for the Scheme. Known @@ -325381,7 +325381,7 @@ a long timeout .B Parameters .INDENT 7.0 .IP \(bu 2 -\fBfeature\fP (\fI\%str\fP\fI, \fP\fI\%list\fP) \-\- +\fBfeature\fP (\fI\%str\fP\fI, \fP\fI\%list\fP) \-\- .sp The name of the feature(s) to install. This can be a single feature, a string of features in a comma delimited list (no spaces), or a @@ -325402,7 +325402,7 @@ False means that the system will use windows update services to find the required files. Default is None .IP \(bu 2 -\fBexclude\fP (\fIOptional\fP\fI[\fP\fI\%str\fP\fI]\fP) \-\- +\fBexclude\fP (\fIOptional\fP\fI[\fP\fI\%str\fP\fI]\fP) \-\- .sp The name of the feature to exclude when installing the named feature. This can be a single feature, a string of features in a @@ -325525,7 +325525,7 @@ idea to use the \fB\-t\fP option to set a longer timeout. .B Parameters .INDENT 7.0 .IP \(bu 2 -\fBfeature\fP (\fI\%str\fP\fI, \fP\fI\%list\fP) \-\- +\fBfeature\fP (\fI\%str\fP\fI, \fP\fI\%list\fP) \-\- .sp The name of the feature(s) to remove. This can be a single feature, a string of features in a comma delimited list (no spaces), or a @@ -325619,7 +325619,7 @@ escaped, eg: \fBC:\epath\eto\ebinary.exe\fP .IP \(bu 2 \fBdescription\fP (\fI\%str\fP) \-\- A description of the service .IP \(bu 2 -\fBservice_type\fP (\fI\%str\fP) \-\- +\fBservice_type\fP (\fI\%str\fP) \-\- .sp Specifies the service type. Default is \fBown\fP\&. Valid options are as follows: @@ -325639,7 +325639,7 @@ share: Service shares a process with one or more other services .UNINDENT .IP \(bu 2 -\fBstart_type\fP (\fI\%str\fP) \-\- +\fBstart_type\fP (\fI\%str\fP) \-\- .sp Specifies the service start type. Valid options are as follows: .INDENT 2.0 @@ -325661,7 +325661,7 @@ is set to \fBAuto\fP\&. If service_type is not passed, but the service is already set to \fBAuto\fP, then the flag will be set. Default is \fBFalse\fP .IP \(bu 2 -\fBerror_control\fP (\fI\%str\fP) \-\- +\fBerror_control\fP (\fI\%str\fP) \-\- .sp The severity of the error, and action taken, if this service fails to start. Valid options are as follows: @@ -325685,7 +325685,7 @@ given to the user \fBdependencies\fP (\fI\%list\fP) \-\- A list of services or load ordering groups that must start before this service .IP \(bu 2 -\fBaccount_name\fP (\fI\%str\fP) \-\- +\fBaccount_name\fP (\fI\%str\fP) \-\- .sp The name of the account under which the service should run. For \fBown\fP type services this should be in the \fBdomain\eusername\fP @@ -325767,7 +325767,7 @@ Delete the named service .IP \(bu 2 \fBname\fP (\fI\%str\fP) \-\- The name of the service to delete .IP \(bu 2 -\fBtimeout\fP (\fI\%int\fP) \-\- +\fBtimeout\fP (\fI\%int\fP) \-\- .sp The time in seconds to wait for the service to be deleted before returning. This is necessary because a service must be stopped @@ -325869,7 +325869,7 @@ Enable the named service to start at boot .IP \(bu 2 \fBname\fP (\fI\%str\fP) \-\- The name of the service to enable. .IP \(bu 2 -\fBstart_type\fP (\fI\%str\fP) \-\- +\fBstart_type\fP (\fI\%str\fP) \-\- .sp Specifies the service start type. Valid options are as follows: @@ -326187,7 +326187,7 @@ New in version 2016.11.0. .IP \(bu 2 \fBdescription\fP (\fI\%str\fP) \-\- The description to display for the service .IP \(bu 2 -\fBservice_type\fP (\fI\%str\fP) \-\- +\fBservice_type\fP (\fI\%str\fP) \-\- .sp Specifies the service type. Default is \fBown\fP\&. Valid options are as follows: @@ -326207,7 +326207,7 @@ share: Service shares a process with one or more other services .UNINDENT .IP \(bu 2 -\fBstart_type\fP (\fI\%str\fP) \-\- +\fBstart_type\fP (\fI\%str\fP) \-\- .sp Specifies the service start type. Valid options are as follows: .INDENT 2.0 @@ -326228,7 +326228,7 @@ disabled: Service cannot be started is set to \fBAuto\fP\&. If service_type is not passed, but the service is already set to \fBAuto\fP, then the flag will be set. .IP \(bu 2 -\fBerror_control\fP (\fI\%str\fP) \-\- +\fBerror_control\fP (\fI\%str\fP) \-\- .sp The severity of the error, and action taken, if this service fails to start. Valid options are as follows: @@ -326252,7 +326252,7 @@ given to the user \fBdependencies\fP (\fI\%list\fP) \-\- A list of services or load ordering groups that must start before this service .IP \(bu 2 -\fBaccount_name\fP (\fI\%str\fP) \-\- +\fBaccount_name\fP (\fI\%str\fP) \-\- .sp The name of the account under which the service should run. For \fBown\fP type services this should be in the \fBdomain\eusername\fP @@ -326307,7 +326307,7 @@ Restart the named service. This issues a stop command followed by a start. .B Parameters .INDENT 7.0 .IP \(bu 2 -\fBname\fP \-\- +\fBname\fP \-\- .sp The name of the service to restart. .sp @@ -326320,7 +326320,7 @@ created and executed to restart the salt\-minion service. .UNINDENT .IP \(bu 2 -\fBtimeout\fP (\fI\%int\fP) \-\- +\fBtimeout\fP (\fI\%int\fP) \-\- .sp The time in seconds to wait for the service to stop and start before returning. Default is 90 seconds @@ -326377,7 +326377,7 @@ disabled, it will be changed to \fBManual\fP start. .IP \(bu 2 \fBname\fP (\fI\%str\fP) \-\- The name of the service to start .IP \(bu 2 -\fBtimeout\fP (\fI\%int\fP) \-\- +\fBtimeout\fP (\fI\%int\fP) \-\- .sp The time in seconds to wait for the service to start before returning. Default is 90 seconds @@ -326456,7 +326456,7 @@ Stop the specified service .IP \(bu 2 \fBname\fP (\fI\%str\fP) \-\- The name of the service to stop .IP \(bu 2 -\fBtimeout\fP (\fI\%int\fP) \-\- +\fBtimeout\fP (\fI\%int\fP) \-\- .sp The time in seconds to wait for the service to stop before returning. Default is 90 seconds @@ -326677,7 +326677,7 @@ file extension. shown in the \fBComment\fP field of the dialog box. Default is an empty string .IP \(bu 2 -\fBhot_key\fP (\fI\%str\fP\fI, \fP\fIoptional\fP) \-\- +\fBhot_key\fP (\fI\%str\fP\fI, \fP\fIoptional\fP) \-\- .sp A combination of hot Keys to trigger this shortcut. This is something like \fBCtrl+Alt+D\fP\&. This is shown in @@ -326704,7 +326704,7 @@ This is shown in the \fBChange Icon\fP dialog box by clicking the passed as the target, Windows will attempt to get the icon from the binary file. Default is an empty string .IP \(bu 2 -\fBwindow_style\fP (\fI\%str\fP\fI, \fP\fIoptional\fP) \-\- +\fBwindow_style\fP (\fI\%str\fP\fI, \fP\fIoptional\fP) \-\- .sp The window style the program should start in. This is shown in the \fBRun\fP field of the dialog box. Default is @@ -326847,7 +326847,7 @@ file extension. shown in the \fBComment\fP field of the dialog box. Default is an empty string .IP \(bu 2 -\fBhot_key\fP (\fI\%str\fP\fI, \fP\fIoptional\fP) \-\- +\fBhot_key\fP (\fI\%str\fP\fI, \fP\fIoptional\fP) \-\- .sp A combination of hot Keys to trigger this shortcut. This is something like \fBCtrl+Alt+D\fP\&. This is shown in @@ -326874,7 +326874,7 @@ This is shown in the \fBChange Icon\fP dialog box by clicking the passed as the target, Windows will attempt to get the icon from the binary file. Default is an empty string .IP \(bu 2 -\fBwindow_style\fP (\fI\%str\fP\fI, \fP\fIoptional\fP) \-\- +\fBwindow_style\fP (\fI\%str\fP\fI, \fP\fIoptional\fP) \-\- .sp The window style the program should start in. This is shown in the \fBRun\fP field of the dialog box. Default is @@ -328152,7 +328152,7 @@ Return the system uptime for the machine .INDENT 7.0 .TP .B Parameters -\fBhuman_readable\fP (\fI\%bool\fP) \-\- +\fBhuman_readable\fP (\fI\%bool\fP) \-\- .sp Return uptime in human readable format if \fBTrue\fP, otherwise return seconds. Default is \fBFalse\fP @@ -328767,7 +328767,7 @@ Halt a running system. .IP \(bu 2 \fBtimeout\fP (\fI\%int\fP) \-\- Number of seconds before halting the system. Default is 5 seconds. .IP \(bu 2 -\fBin_seconds\fP (\fI\%bool\fP) \-\- +\fBin_seconds\fP (\fI\%bool\fP) \-\- .sp Whether to treat timeout as seconds or minutes. .sp @@ -328840,7 +328840,7 @@ account already exists. If set to \fBFalse\fP the computer account will be created if it does not exist, otherwise it will use the existing account. Default is \fBFalse\fP .IP \(bu 2 -\fBrestart\fP (\fI\%bool\fP) \-\- +\fBrestart\fP (\fI\%bool\fP) \-\- .sp \fBTrue\fP will restart the computer after a successful join. Default is \fBFalse\fP @@ -328909,7 +328909,7 @@ Power off a running system. \fBtimeout\fP (\fI\%int\fP) \-\- Number of seconds before powering off the system. Default is 5 seconds. .IP \(bu 2 -\fBin_seconds\fP (\fI\%bool\fP) \-\- +\fBin_seconds\fP (\fI\%bool\fP) \-\- .sp Whether to treat timeout as seconds or minutes. .sp @@ -328960,7 +328960,7 @@ New in version 2015.8.0. .IP \(bu 2 -\fBwait_for_reboot\fP (\fI\%bool\fP) \-\- +\fBwait_for_reboot\fP (\fI\%bool\fP) \-\- .sp \fBTrue\fP will sleep for timeout + 30 seconds after reboot has been initiated. This is useful for use in a highstate. For example, you @@ -329219,7 +329219,7 @@ Set the Windows system date. Use format for the date. .INDENT 7.0 .TP .B Parameters -\fBnewdate\fP (\fI\%str\fP) \-\- +\fBnewdate\fP (\fI\%str\fP) \-\- .sp The date to set. Can be any of the following formats .INDENT 7.0 @@ -329308,7 +329308,7 @@ Set the system time. .INDENT 7.0 .TP .B Parameters -\fBnewtime\fP (\fI\%str\fP) \-\- +\fBnewtime\fP (\fI\%str\fP) \-\- .sp The time to set. Can be any of the following formats: .INDENT 7.0 @@ -329353,7 +329353,7 @@ Shutdown a running system. .IP \(bu 2 \fBmessage\fP (\fI\%str\fP) \-\- The message to display to the user before shutting down. .IP \(bu 2 -\fBtimeout\fP (\fI\%int\fP) \-\- +\fBtimeout\fP (\fI\%int\fP) \-\- .sp The length of time (in seconds) that the shutdown dialog box should be displayed. While this dialog box is displayed, the shutdown can @@ -329542,7 +329542,7 @@ be \fBNone\fP\&. .IP \(bu 2 \fBdomain\fP (\fI\%str\fP) \-\- The domain from which to unjoin the computer. Can be \fBNone\fP .IP \(bu 2 -\fBworkgroup\fP (\fI\%str\fP) \-\- +\fBworkgroup\fP (\fI\%str\fP) \-\- .sp The workgroup to join the computer to. Default is \fBWORKGROUP\fP .sp @@ -329553,7 +329553,7 @@ New in version 2015.8.2/2015.5.7. \fBdisable\fP (\fI\%bool\fP) \-\- \fBTrue\fP to disable the computer account in Active Directory. Default is \fBFalse\fP .IP \(bu 2 -\fBrestart\fP (\fI\%bool\fP) \-\- +\fBrestart\fP (\fI\%bool\fP) \-\- .sp \fBTrue\fP will restart the computer after successful unjoin. Default is \fBFalse\fP @@ -329610,7 +329610,7 @@ Add an action to a task. \fB\e\fP which is the root for the task scheduler (\fBC:\eWindows\eSystem32\etasks\fP). .IP \(bu 2 -\fBaction_type\fP (\fI\%str\fP) \-\- +\fBaction_type\fP (\fI\%str\fP) \-\- .sp The type of action to add. There are three action types. Each one requires its own set of Keyword Arguments (kwargs). Valid values @@ -329769,7 +329769,7 @@ See \fI\%YAML IDIOSYNCRASIES\fP for more details. \fB\e\fP which is the root for the task scheduler (\fBC:\eWindows\eSystem32\etasks\fP). .IP \(bu 2 -\fBtrigger_type\fP (\fI\%str\fP) \-\- +\fBtrigger_type\fP (\fI\%str\fP) \-\- .sp The type of trigger to create. This is defined when the trigger is created and cannot be changed later. Options are as follows: @@ -329805,7 +329805,7 @@ OnSessionChange .IP \(bu 2 \fBtrigger_enabled\fP (\fI\%bool\fP) \-\- Boolean value that indicates whether the trigger is enabled. .IP \(bu 2 -\fBstart_date\fP (\fI\%str\fP) \-\- +\fBstart_date\fP (\fI\%str\fP) \-\- .sp The date when the trigger is activated. If no value is passed, the current date will be used. Can be one of the following formats: @@ -329829,7 +329829,7 @@ current date will be used. Can be one of the following formats: .UNINDENT .IP \(bu 2 -\fBstart_time\fP (\fI\%str\fP) \-\- +\fBstart_time\fP (\fI\%str\fP) \-\- .sp The time when the trigger is activated. If no value is passed, midnight will be used. Can be one of the following formats: @@ -329849,7 +329849,7 @@ midnight will be used. Can be one of the following formats: .UNINDENT .IP \(bu 2 -\fBend_date\fP (\fI\%str\fP) \-\- +\fBend_date\fP (\fI\%str\fP) \-\- .sp The date when the trigger is deactivated. The trigger cannot start the task after it is deactivated. Can be one of the following @@ -329874,7 +329874,7 @@ formats: .UNINDENT .IP \(bu 2 -\fBend_time\fP (\fI\%str\fP) \-\- +\fBend_time\fP (\fI\%str\fP) \-\- .sp The time when the trigger is deactivated. If this is not passed with \fBend_date\fP it will be set to midnight. Can be one of the @@ -329895,7 +329895,7 @@ following formats: .UNINDENT .IP \(bu 2 -\fBrandom_delay\fP (\fI\%str\fP) \-\- +\fBrandom_delay\fP (\fI\%str\fP) \-\- .sp The delay time that is randomly added to the start time of the trigger. Valid values are: @@ -329942,7 +329942,7 @@ MonthlyDay .UNINDENT .IP \(bu 2 -\fBrepeat_interval\fP (\fI\%str\fP) \-\- +\fBrepeat_interval\fP (\fI\%str\fP) \-\- .sp The amount of time between each restart of the task. Valid values are: @@ -329964,7 +329964,7 @@ are: .UNINDENT .IP \(bu 2 -\fBrepeat_duration\fP (\fI\%str\fP) \-\- +\fBrepeat_duration\fP (\fI\%str\fP) \-\- .sp How long the pattern is repeated. Valid values are: .INDENT 2.0 @@ -329990,7 +329990,7 @@ Indefinitely \fBrepeat_stop_at_duration_end\fP (\fI\%bool\fP) \-\- Boolean value that indicates if a running instance of the task is stopped at the end of the repetition pattern duration. .IP \(bu 2 -\fBexecution_time_limit\fP (\fI\%str\fP) \-\- +\fBexecution_time_limit\fP (\fI\%str\fP) \-\- .sp The maximum amount of time that the task launched by the trigger is allowed to run. Valid values are: @@ -330018,7 +330018,7 @@ allowed to run. Valid values are: .UNINDENT .IP \(bu 2 -\fBdelay\fP (\fI\%str\fP) \-\- +\fBdelay\fP (\fI\%str\fP) \-\- .sp The time the trigger waits after its activation to start the task. Valid values are: @@ -330485,7 +330485,7 @@ str: A string with the error message if there is an error .IP \(bu 2 \fBArgumentValueError\fP \-\- If arguments are invalid .IP \(bu 2 -\fBCommandExecutionError\fP \-\- +\fBCommandExecutionError\fP \-\- .UNINDENT .UNINDENT .sp @@ -330589,7 +330589,7 @@ task. Default is \fB\e\fP which is the root for the task scheduler \fBuser_name\fP (\fI\%str\fP) \-\- The user account under which to run the task. To specify the \(aqSystem\(aq account, use \(aqSystem\(aq. The password will be ignored. .IP \(bu 2 -\fBpassword\fP (\fI\%str\fP) \-\- +\fBpassword\fP (\fI\%str\fP) \-\- .sp The password to use for authentication. This should set the task to run whether the user is logged in or not, but is currently not @@ -330619,7 +330619,7 @@ description field in the task scheduler. \fBrun_if_idle\fP (\fI\%bool\fP) \-\- Boolean value that indicates that the Task Scheduler will run the task only if the computer is in an idle state. .IP \(bu 2 -\fBidle_duration\fP (\fI\%str\fP) \-\- +\fBidle_duration\fP (\fI\%str\fP) \-\- .sp A value that indicates the amount of time that the computer must be in an idle state before the task is run. Valid values are: @@ -330643,7 +330643,7 @@ in an idle state before the task is run. Valid values are: .UNINDENT .IP \(bu 2 -\fBidle_wait_timeout\fP (\fI\%str\fP) \-\- +\fBidle_wait_timeout\fP (\fI\%str\fP) \-\- .sp A value that indicates the amount of time that the Task Scheduler will wait for an idle condition to occur. Valid values are: @@ -330700,7 +330700,7 @@ either the Run command or the Context menu. \fBstart_when_available\fP (\fI\%bool\fP) \-\- Boolean value that indicates that the Task Scheduler can start the task at any time after its scheduled time has passed. .IP \(bu 2 -\fBrestart_every\fP (\fI\%str\fP) \-\- +\fBrestart_every\fP (\fI\%str\fP) \-\- .sp A value that specifies the interval between task restart attempts. Valid values are: @@ -330731,7 +330731,7 @@ False (to disable) \fBrestart_count\fP (\fI\%int\fP) \-\- The number of times the Task Scheduler will attempt to restart the task. Valid values are integers 1 \- 999. .IP \(bu 2 -\fBexecution_time_limit\fP (\fI\%bool\fP\fI, \fP\fI\%str\fP) \-\- +\fBexecution_time_limit\fP (\fI\%bool\fP\fI, \fP\fI\%str\fP) \-\- .sp The amount of time allowed to complete the task. Valid values are: .INDENT 2.0 @@ -330761,7 +330761,7 @@ False (to disable) \fBforce_stop\fP (\fI\%bool\fP) \-\- Boolean value that indicates that the task may be terminated by using TerminateProcess. .IP \(bu 2 -\fBdelete_after\fP (\fI\%bool\fP\fI, \fP\fI\%str\fP) \-\- +\fBdelete_after\fP (\fI\%bool\fP\fI, \fP\fI\%str\fP) \-\- .sp The amount of time that the Task Scheduler will wait before deleting the task after it expires. Requires a trigger with an expiration @@ -330786,7 +330786,7 @@ Immediately .UNINDENT .IP \(bu 2 -\fBmultiple_instances\fP (\fI\%str\fP) \-\- +\fBmultiple_instances\fP (\fI\%str\fP) \-\- .sp Sets the policy that defines how the Task Scheduler deals with multiple instances of the task. Valid values are: @@ -332229,7 +332229,7 @@ options than \fI\%list()\fP\&. Good for finding a specific GUID or KB. .IP \(bu 2 \fBskip_reboot\fP (\fI\%bool\fP) \-\- Skip updates that require a reboot. Default is \fBFalse\fP .IP \(bu 2 -\fBcategories\fP (\fI\%list\fP) \-\- +\fBcategories\fP (\fI\%list\fP) \-\- .sp Specify the categories to list. Must be passed as a list. All categories returned by default. @@ -332265,7 +332265,7 @@ Windows Defender .UNINDENT .IP \(bu 2 -\fBseverities\fP (\fI\%list\fP) \-\- +\fBseverities\fP (\fI\%list\fP) \-\- .sp Specify the severities to include. Must be passed as a list. All severities returned by default. @@ -332279,7 +332279,7 @@ Important .UNINDENT .IP \(bu 2 -\fBonline\fP (\fI\%bool\fP) \-\- +\fBonline\fP (\fI\%bool\fP) \-\- .sp Tells the Windows Update Agent go online to update its local update database. \fBTrue\fP will go online. \fBFalse\fP will use the local @@ -332376,7 +332376,7 @@ use this function by using list_updates and setting \fBdownload=True\fP\&. .INDENT 7.0 .TP .B Parameters -\fBnames\fP (\fI\%str\fP\fI, \fP\fI\%list\fP) \-\- +\fBnames\fP (\fI\%str\fP\fI, \fP\fI\%list\fP) \-\- .sp A single update or a list of updates to download. This can be any combination of GUIDs, KB numbers, or names. GUIDs or KBs are @@ -332436,7 +332436,7 @@ download the update. first to see if the update exists, then set \fBinstall=True\fP to install the update. .IP \(bu 2 -\fBonline\fP (\fI\%bool\fP) \-\- +\fBonline\fP (\fI\%bool\fP) \-\- .sp Tells the Windows Update Agent go online to update its local update database. \fBTrue\fP will go online. \fBFalse\fP will use the local @@ -332781,7 +332781,7 @@ returned by this function. Run this function first with \fBinstall=False\fP to see what will be installed, then set \fBinstall=True\fP to install the updates. Default is \fBFalse\fP .IP \(bu 2 -\fBcategories\fP (\fI\%list\fP) \-\- +\fBcategories\fP (\fI\%list\fP) \-\- .sp Specify the categories to list. Must be passed as a list. All categories returned by default. @@ -332817,7 +332817,7 @@ Windows Defender .UNINDENT .IP \(bu 2 -\fBseverities\fP (\fI\%list\fP) \-\- +\fBseverities\fP (\fI\%list\fP) \-\- .sp Specify the severities to include. Must be passed as a list. All severities returned by default. @@ -332831,7 +332831,7 @@ Important .UNINDENT .IP \(bu 2 -\fBonline\fP (\fI\%bool\fP) \-\- +\fBonline\fP (\fI\%bool\fP) \-\- .sp Tells the Windows Update Agent go online to update its local update database. \fBTrue\fP will go online. \fBFalse\fP will use the local @@ -332941,7 +332941,7 @@ Windows 8.1 / Server 2012R2 .B Parameters .INDENT 7.0 .IP \(bu 2 -\fBlevel\fP (\fI\%int\fP) \-\- +\fBlevel\fP (\fI\%int\fP) \-\- .sp Number from 1 to 4 indicating the update level: .INDENT 2.0 @@ -332970,7 +332970,7 @@ some update\-related actions without administrator approval. \fBmsupdate\fP (\fI\%bool\fP) \-\- Boolean value that indicates whether to turn on Microsoft Update for other Microsoft products .IP \(bu 2 -\fBday\fP (\fI\%str\fP) \-\- +\fBday\fP (\fI\%str\fP) \-\- .sp Days of the week on which Automatic Updates installs or uninstalls updates. Accepted values: @@ -333253,9 +333253,9 @@ it directly processes the file specified in \fIname\fP .IP \(bu 2 \fBstr\fP (\fIsaltenv\fP) \-\- The name/path of the package you want to view. This can be the .IP \(bu 2 -\fBpath to a file on the minion file system\fP\fB or \fP\fBa file on the local\fP (\fIfull\fP) \-\- +\fBpath to a file on the minion file system\fP\fB or \fP\fBa file on the local\fP (\fIfull\fP) \-\- .IP \(bu 2 -\fBcache.\fP (\fIminion\fP) \-\- +\fBcache.\fP (\fIminion\fP) \-\- .IP \(bu 2 \fBstr\fP \-\- The default environment is \fBbase\fP .UNINDENT @@ -338980,7 +338980,7 @@ Retrieve mediatypes according to the given parameters. .IP \(bu 2 \fBmediatypeids\fP \-\- ids of the mediatypes .IP \(bu 2 -\fBconnection_args\fP (\fIoptional\fP) \-\- +\fBconnection_args\fP (\fIoptional\fP) \-\- .sp _connection_user: zabbix user (can also be set in opts or pillar, see module\(aqs docstring) _connection_password: zabbix password (can also be set in opts or pillar, see module\(aqs docstring) @@ -339064,7 +339064,7 @@ Send Zabbix API call .IP \(bu 2 \fBparams\fP \-\- parameters required for specific method .IP \(bu 2 -\fBconnection_args\fP (\fIoptional\fP) \-\- +\fBconnection_args\fP (\fIoptional\fP) \-\- .sp _connection_user: zabbix user (can also be set in opts or pillar, see module\(aqs docstring) _connection_password: zabbix password (can also be set in opts or pillar, see module\(aqs docstring) @@ -339149,7 +339149,7 @@ Retrieve templates according to the given parameters. .IP \(bu 2 \fBhostids\fP \-\- ids of the templates .IP \(bu 2 -\fBconnection_args\fP (\fIoptional\fP) \-\- +\fBconnection_args\fP (\fIoptional\fP) \-\- .sp _connection_user: zabbix user (can also be set in opts or pillar, see module\(aqs docstring) _connection_password: zabbix password (can also be set in opts or pillar, see module\(aqs docstring) @@ -344465,7 +344465,7 @@ Return the information of the named package(s), installed on the system. .IP \(bu 2 \fBnames\fP \-\- Names of the packages to get information about. .IP \(bu 2 -\fBattr\fP \-\- +\fBattr\fP \-\- .sp Comma\-separated package attributes. If no \(aqattr\(aq is specified, all available attributes returned. .INDENT 2.0 @@ -344477,7 +344477,7 @@ summary, description. .UNINDENT .IP \(bu 2 -\fBerrors\fP \-\- +\fBerrors\fP \-\- .sp Handle RPM field errors. If \(aqignore\(aq is chosen, then various mistakes are simply ignored and omitted from the texts or strings. If \(aqreport\(aq is chonen, then a field with a mistake is not returned, instead @@ -352798,7 +352798,7 @@ ext_pillar: .IP \(bu 2 \fBpillar\fP \-\- Unused by the \fBfile_tree\fP pillar module .IP \(bu 2 -\fBroot_dir\fP \-\- +\fBroot_dir\fP \-\- .sp Filesystem directory used as the root for pillar data (e.g. \fB/srv/ext_pillar\fP) @@ -352811,7 +352811,7 @@ merging the results. .IP \(bu 2 -\fBfollow_dir_links\fP \-\- +\fBfollow_dir_links\fP \-\- .sp Follow symbolic links to directories while collecting pillar files. Defaults to \fBFalse\fP\&. @@ -352836,7 +352836,7 @@ Symbolic links that lead to infinite recursion are not filtered. \fBFalse\fP\&. This option may be useful to help debug errors when setting up the \fBfile_tree\fP pillar module. .IP \(bu 2 -\fBkeep_newline\fP \-\- +\fBkeep_newline\fP \-\- .sp Preserve the end\-of\-file newline in files. Defaults to \fBFalse\fP\&. This option may either be a boolean or a list of file globs (as defined @@ -352881,7 +352881,7 @@ files. .UNINDENT .IP \(bu 2 -\fBrender_default\fP \-\- +\fBrender_default\fP \-\- .sp Override Salt\(aqs \fBdefault global renderer\fP for the \fBfile_tree\fP pillar. @@ -352897,7 +352897,7 @@ render_default: jinja .UNINDENT .IP \(bu 2 -\fBrenderer_blacklist\fP \-\- +\fBrenderer_blacklist\fP \-\- .sp Disallow renderers for pillar files. .INDENT 2.0 @@ -352913,7 +352913,7 @@ renderer_blacklist: .UNINDENT .IP \(bu 2 -\fBrenderer_whitelist\fP \-\- +\fBrenderer_whitelist\fP \-\- .sp Allow renderers for pillar files. .INDENT 2.0 @@ -376380,7 +376380,7 @@ Get args and kwargs from the argset. .INDENT 7.0 .TP .B Parameters -\fBargset\fP \-\- +\fBargset\fP \-\- .TP .B Returns @@ -378552,13 +378552,13 @@ value to prevent accidentally overwritting any concurrent changes. \fBif_none_match\fP \-\- Set to \(aq*\(aq to allow a new DNS zone to be created, but to prevent updating an existing zone. Other values will be ignored. .IP \(bu 2 -\fBregistration_virtual_networks\fP \-\- +\fBregistration_virtual_networks\fP \-\- .sp A list of references to virtual networks that register hostnames in this DNS zone. This is only when zone_type is Private. (requires \fI\%azure\-mgmt\-dns\fP >= 2.0.0rc1) .IP \(bu 2 -\fBresolution_virtual_networks\fP \-\- +\fBresolution_virtual_networks\fP \-\- .sp A list of references to virtual networks that resolve records in this DNS zone. This is only when zone_type is Private. (requires \fI\%azure\-mgmt\-dns\fP >= 2.0.0rc1) @@ -378790,7 +378790,7 @@ Ensure a load balancer exists. .IP \(bu 2 \fBtags\fP \-\- A dictionary of strings can be passed as tag metadata to the load balancer object. .IP \(bu 2 -\fBfrontend_ip_configurations\fP \-\- +\fBfrontend_ip_configurations\fP \-\- .sp An optional list of dictionaries representing valid FrontendIPConfiguration objects. A frontend IP configuration can be either private (using private IP address and subnet parameters) or public (using a @@ -378815,7 +378815,7 @@ reference to a public IP address object). Valid parameters are: valid for a BackendAddressPool dictionary. All other parameters are read\-only references from other objects linking to the backend address pool. Inbound traffic is randomly load balanced across IPs in the backend IPs. .IP \(bu 2 -\fBprobes\fP \-\- +\fBprobes\fP \-\- .sp An optional list of dictionaries representing valid Probe objects. Valid parameters are: .INDENT 2.0 @@ -378841,7 +378841,7 @@ set to \(aqHttp\(aq. Otherwise, it is not allowed. There is no default value. .UNINDENT .IP \(bu 2 -\fBload_balancing_rules\fP \-\- +\fBload_balancing_rules\fP \-\- .sp An optional list of dictionaries representing valid LoadBalancingRule objects. Valid parameters are: .INDENT 2.0 @@ -378877,7 +378877,7 @@ Inbound traffic is randomly load balanced across IPs in the backend IPs. .UNINDENT .IP \(bu 2 -\fBinbound_nat_rules\fP \-\- +\fBinbound_nat_rules\fP \-\- .sp An optional list of dictionaries representing valid InboundNatRule objects. Defining inbound NAT rules on your load balancer is mutually exclusive with defining an inbound NAT pool. Inbound NAT pools are referenced from @@ -378906,7 +378906,7 @@ Availability Groups in SQL server. This setting can\(aqt be changed after you cr .UNINDENT .IP \(bu 2 -\fBinbound_nat_pools\fP \-\- +\fBinbound_nat_pools\fP \-\- .sp An optional list of dictionaries representing valid InboundNatPool objects. They define an external port range for inbound NAT to a single backend port on NICs associated with a load balancer. Inbound NAT rules are created @@ -378934,7 +378934,7 @@ provide Inbound NAT to NICs associated with a load balancer. Acceptable values r .UNINDENT .IP \(bu 2 -\fBoutbound_nat_rules\fP \-\- +\fBoutbound_nat_rules\fP \-\- .sp An optional list of dictionaries representing valid OutboundNatRule objects. Valid parameters are: .INDENT 2.0 @@ -379048,7 +379048,7 @@ minimum. At least one IP Configuration must be present. .IP \(bu 2 \fBvirtual_machine\fP \-\- The name of the existing virtual machine to assign to the network interface. .IP \(bu 2 -\fBdns_settings\fP \-\- +\fBdns_settings\fP \-\- .sp An optional dictionary representing a valid NetworkInterfaceDnsSettings object. Valid parameters are: .INDENT 2.0 @@ -379958,7 +379958,7 @@ Ensure a security policy definition exists. structure. One of \fBpolicy_rule\fP, \fBpolicy_rule_json\fP, or \fBpolicy_rule_file\fP is required, in that order of precedence for use if multiple parameters are used. .IP \(bu 2 -\fBpolicy_rule_json\fP \-\- +\fBpolicy_rule_json\fP \-\- .sp A text field defining the entirety of a policy definition in JSON. See \fI\%Azure Policy Definition documentation\fP for details on the structure. One of \fBpolicy_rule\fP, \fBpolicy_rule_json\fP, or \fBpolicy_rule_file\fP is required, in that order of @@ -379966,7 +379966,7 @@ precedence for use if multiple parameters are used. Note that the \fIname\fP fie \fBname\fP parameter in the state. .IP \(bu 2 -\fBpolicy_rule_file\fP \-\- +\fBpolicy_rule_file\fP \-\- .sp The source of a JSON file defining the entirety of a policy definition. See \fI\%Azure Policy Definition documentation\fP for @@ -382785,7 +382785,7 @@ the following characters: a\-z (lowercase), 0\-9, and \- (hyphen). \fBelasticsearch_version\fP (\fI\%str\fP) \-\- String of format X.Y to specify version for the Elasticsearch domain eg. "1.5" or "2.3". .IP \(bu 2 -\fBelasticsearch_cluster_config\fP (\fI\%dict\fP) \-\- +\fBelasticsearch_cluster_config\fP (\fI\%dict\fP) \-\- .sp Dict specifying the configuration options for an Elasticsearch domain. @@ -382819,7 +382819,7 @@ active and on standby, for the cluster. .UNINDENT .IP \(bu 2 -\fBebs_options\fP (\fI\%dict\fP) \-\- +\fBebs_options\fP (\fI\%dict\fP) \-\- .sp Dict specifying the options to enable or disable and specifying the type and size of EBS storage volumes. @@ -382838,7 +382838,7 @@ Iops (int): Specifies the IOPD for a Provisioned IOPS EBS volume (SSD). .IP \(bu 2 \fBaccess_policies\fP (\fI\%str\fP\fI or \fP\fI\%dict\fP) \-\- Dict or JSON string with the IAM access policy. .IP \(bu 2 -\fBsnapshot_options\fP (\fI\%dict\fP) \-\- +\fBsnapshot_options\fP (\fI\%dict\fP) \-\- .sp Dict specifying the snapshot options. Keys (case senstive) in here are: @@ -382850,7 +382850,7 @@ Elasticsearch domain. Default value is 0 hours. .UNINDENT .IP \(bu 2 -\fBvpc_options\fP (\fI\%dict\fP) \-\- +\fBvpc_options\fP (\fI\%dict\fP) \-\- .sp Dict with the options to specify the subnets and security groups for the VPC endpoint. @@ -382863,7 +382863,7 @@ SecurityGroupIds (list): The list of security groups for the VPC endpoint. .UNINDENT .IP \(bu 2 -\fBcognito_options\fP (\fI\%dict\fP) \-\- +\fBcognito_options\fP (\fI\%dict\fP) \-\- .sp Dict with options to specify the cognito user and identity pools for Kibana authentication. @@ -382881,7 +382881,7 @@ for accessing Cognito resources. .UNINDENT .IP \(bu 2 -\fBencryption_at_rest_options\fP (\fI\%dict\fP) \-\- +\fBencryption_at_rest_options\fP (\fI\%dict\fP) \-\- .sp Dict specifying the encryption at rest options. This option can only be used for the creation of a new Elasticsearch @@ -382895,7 +382895,7 @@ KmsKeyId (str): Specifies the KMS Key ID for Encryption At Rest options. .UNINDENT .IP \(bu 2 -\fBnode_to_node_encryption_options\fP (\fI\%dict\fP) \-\- +\fBnode_to_node_encryption_options\fP (\fI\%dict\fP) \-\- .sp Dict specifying the node to node encryption options. This option can only be used for the creation of @@ -382913,7 +382913,7 @@ sub\-resources. By default, the value is True. See \fI\%http://docs.aws.amazon.com/elasticsearch\-service/latest/developerguide\fP /es\-createupdatedomains.html#es\-createdomain\-configure\-advanced\-options for more information. .IP \(bu 2 -\fBlog_publishing_options\fP (\fI\%dict\fP) \-\- +\fBlog_publishing_options\fP (\fI\%dict\fP) \-\- .sp Dict with options for various type of logs. The keys denote the type of log file and can be one of the following: @@ -392812,7 +392812,7 @@ default arguments. Default is False. .IP \(bu 2 \fBpackage_args\fP (\fI\%str\fP) \-\- Arguments you want to pass to the package. Default is None. .IP \(bu 2 -\fBallow_multiple\fP (\fI\%bool\fP) \-\- +\fBallow_multiple\fP (\fI\%bool\fP) \-\- .sp Allow mulitiple versions of the package to be installed. Do not use with \fBforce\fP\&. Does not work with all packages. Default is False. @@ -406839,7 +406839,7 @@ New in version 2016.11.0. .IP \(bu 2 \fBname\fP \-\- The filesystem path to the directory containing backups to be managed. .IP \(bu 2 -\fBretain\fP \-\- +\fBretain\fP \-\- .sp Delete the backups, except for the ones we want to keep. The N below should be an integer but may also be the special value of \fBall\fP, @@ -415765,7 +415765,7 @@ Create or manage a java keystore. .IP \(bu 2 \fBpassphrase\fP \-\- The password to the keystore .IP \(bu 2 -\fBentries\fP \-\- +\fBentries\fP \-\- .sp A list containing an alias, certificate, and optional private_key. The certificate and private_key can be a file or a string @@ -415790,7 +415790,7 @@ The certificate and private_key can be a file or a string .UNINDENT .IP \(bu 2 -\fBforce_remove\fP \-\- +\fBforce_remove\fP \-\- .sp If True will cause the state to remove any entries found in the keystore which are not defined in the state. The default is False. Example: @@ -416392,7 +416392,7 @@ ldapi:///: \fBconnect_spec\fP is either a connection object or a dict with a \fB\(aqurl\(aq\fP entry. .IP \(bu 2 -\fBentries\fP \-\- +\fBentries\fP \-\- .sp A description of the desired state of zero or more LDAP entries. @@ -428986,7 +428986,7 @@ Currently supported for the following pkg providers: either "pkgs" is used. Additionally, please note that this option can only be used to download packages from a software repository. .IP \(bu 2 -\fBversion\fP (\fI\%str\fP) \-\- +\fBversion\fP (\fI\%str\fP) \-\- .sp Download a specific version of a package. .sp @@ -429035,7 +429035,7 @@ common_packages: .UNINDENT .IP \(bu 2 -\fBresolve_capabilities\fP (\fI\%bool\fP) \-\- +\fBresolve_capabilities\fP (\fI\%bool\fP) \-\- .sp Turn on resolving capabilities. This allow one to name "provides" or alias names for packages. .sp @@ -429139,7 +429139,7 @@ Set package in \(aqhold\(aq state, meaning it will not be changed. \fBname\fP (\fI\%str\fP) \-\- The name of the package to be held. This parameter is ignored if \fBpkgs\fP is used. .IP \(bu 2 -\fBversion\fP (\fI\%str\fP) \-\- +\fBversion\fP (\fI\%str\fP) \-\- .sp Hold a specific version of a package. Full description of this parameter is in \fIinstalled\fP function. @@ -429153,7 +429153,7 @@ Ignored for YUM/DNF and APT .UNINDENT .IP \(bu 2 -\fBpkgs\fP (\fI\%list\fP) \-\- +\fBpkgs\fP (\fI\%list\fP) \-\- .sp A list of packages to be held. All packages listed under \fBpkgs\fP will be held. @@ -429234,7 +429234,7 @@ option can only be used to install packages from a software repository. To install a package file manually, use the "sources" option detailed below. .IP \(bu 2 -\fBversion\fP (\fI\%str\fP) \-\- +\fBversion\fP (\fI\%str\fP) \-\- .sp Install a specific version of a package. This option is ignored if "sources" is used. Currently, this option is supported @@ -429368,7 +429368,7 @@ packages and figure out which of them match the specified wildcard expression. .IP \(bu 2 -\fBrefresh\fP (\fI\%bool\fP) \-\- +\fBrefresh\fP (\fI\%bool\fP) \-\- .sp This parameter controls whether or not the package repo database is updated prior to installing the requested package(s). @@ -429388,7 +429388,7 @@ will be performed for \fBpkg\fP states which do not explicitly set from slowing down the Salt run. .IP \(bu 2 -\fBcache_valid_time\fP (\fI\%str\fP) \-\- +\fBcache_valid_time\fP (\fI\%str\fP) \-\- .sp New in version 2016.11.0. @@ -429430,7 +429430,7 @@ has no effect on the rest. .UNINDENT .IP \(bu 2 -\fBfromrepo\fP (\fI\%str\fP) \-\- +\fBfromrepo\fP (\fI\%str\fP) \-\- .sp Specify a repository from which to install .sp @@ -429503,7 +429503,7 @@ release name is the part before the slash, so to install version .IP \(bu 2 \fBskip_verify\fP (\fI\%bool\fP) \-\- Skip the GPG verification check for the package to be installed .IP \(bu 2 -\fBskip_suggestions\fP (\fI\%bool\fP) \-\- +\fBskip_suggestions\fP (\fI\%bool\fP) \-\- .sp Force strict package naming. Disables lookup of package alternatives. .sp @@ -429511,7 +429511,7 @@ New in version 2014.1.1. .IP \(bu 2 -\fBresolve_capabilities\fP (\fI\%bool\fP) \-\- +\fBresolve_capabilities\fP (\fI\%bool\fP) \-\- .sp Turn on resolving capabilities. This allow one to name "provides" or alias names for packages. .sp @@ -429519,7 +429519,7 @@ New in version 2018.3.0. .IP \(bu 2 -\fBallow_updates\fP (\fI\%bool\fP) \-\- +\fBallow_updates\fP (\fI\%bool\fP) \-\- .sp Allow the package to be updated outside Salt\(aqs control (e.g. auto updates on Windows). This means a package on the Minion can have a @@ -429550,7 +429550,7 @@ httpd: .UNINDENT .IP \(bu 2 -\fBpkg_verify\fP (\fI\%bool\fP) \-\- +\fBpkg_verify\fP (\fI\%bool\fP) \-\- .sp New in version 2014.7.0. @@ -429621,7 +429621,7 @@ mypkgs: .UNINDENT .IP \(bu 2 -\fBignore_types\fP (\fI\%list\fP) \-\- +\fBignore_types\fP (\fI\%list\fP) \-\- .sp List of types to ignore when verifying the package .sp @@ -429629,7 +429629,7 @@ New in version 2014.7.0. .IP \(bu 2 -\fBverify_options\fP (\fI\%list\fP) \-\- +\fBverify_options\fP (\fI\%list\fP) \-\- .sp List of additional options to pass when verifying the package. These options will be added to the \fBrpm \-V\fP command, prepended with \fB\-\-\fP @@ -429640,7 +429640,7 @@ New in version 2016.11.0. .IP \(bu 2 -\fBnormalize\fP (\fI\%bool\fP) \-\- +\fBnormalize\fP (\fI\%bool\fP) \-\- .sp Normalize the package name by removing the architecture, if the architecture of the package is different from the architecture of the @@ -429667,7 +429667,7 @@ gpfs.gplbin\-2.6.32\-279.31.1.el6.x86_64: .UNINDENT .IP \(bu 2 -\fBignore_epoch\fP (\fI\%bool\fP) \-\- +\fBignore_epoch\fP (\fI\%bool\fP) \-\- .sp If this option is not explicitly set, and there is no epoch in the desired package version, the epoch will be implicitly ignored. Set this @@ -429694,7 +429694,7 @@ epochs unless this argument was set to \fBTrue\fP\&. .B Parameters .INDENT 7.0 .IP \(bu 2 -\fBpkgs\fP (\fI\%list\fP) \-\- +\fBpkgs\fP (\fI\%list\fP) \-\- .sp A list of packages to install from a software repository. All packages listed under \fBpkgs\fP will be installed via a single command. @@ -429783,7 +429783,7 @@ mypkgs: .UNINDENT .IP \(bu 2 -\fBsources\fP (\fI\%list\fP) \-\- +\fBsources\fP (\fI\%list\fP) \-\- .sp A list of packages to install, along with the source URI or local path from which to install each package. In the example below, \fBfoo\fP, @@ -429819,7 +429819,7 @@ module for your OS, it is ignored. .B Parameters .INDENT 7.0 .IP \(bu 2 -\fBhold\fP (\fI\%bool\fP) \-\- +\fBhold\fP (\fI\%bool\fP) \-\- .sp Force the package to be held at the current installed version. .sp @@ -429834,7 +429834,7 @@ New in version 3003. .IP \(bu 2 -\fBupdate_holds\fP (\fI\%bool\fP) \-\- +\fBupdate_holds\fP (\fI\%bool\fP) \-\- .sp If \fBTrue\fP, and this function would update the package version, any packages which are being held will be temporarily unheld so that they @@ -429853,7 +429853,7 @@ New in version 3003. .IP \(bu 2 -\fBnames\fP (\fI\%list\fP) \-\- +\fBnames\fP (\fI\%list\fP) \-\- .sp A list of packages to install from a software repository. Each package will be installed individually by the package manager. @@ -429871,7 +429871,7 @@ features and the performance improvement that it brings. .UNINDENT .IP \(bu 2 -\fBinstall_recommends\fP (\fI\%bool\fP) \-\- +\fBinstall_recommends\fP (\fI\%bool\fP) \-\- .sp Whether to install the packages marked as recommended. Default is \fBTrue\fP\&. Currently only works with APT\-based systems. @@ -429892,7 +429892,7 @@ httpd: .UNINDENT .IP \(bu 2 -\fBonly_upgrade\fP (\fI\%bool\fP) \-\- +\fBonly_upgrade\fP (\fI\%bool\fP) \-\- .sp Only upgrade the packages, if they are already installed. Default is \fBFalse\fP\&. Currently only works with APT\-based systems. @@ -429921,7 +429921,7 @@ installed, the state will fail. .UNINDENT .IP \(bu 2 -\fBreport_reboot_exit_codes\fP (\fI\%bool\fP) \-\- +\fBreport_reboot_exit_codes\fP (\fI\%bool\fP) \-\- .sp If the installer exits with a recognized exit code indicating that a reboot is required, the module function @@ -430175,7 +430175,7 @@ from slowing down the Salt run. .B Parameters .INDENT 7.0 .IP \(bu 2 -\fBcache_valid_time\fP (\fI\%str\fP) \-\- +\fBcache_valid_time\fP (\fI\%str\fP) \-\- .sp New in version 2016.11.0. @@ -430211,7 +430211,7 @@ has no effect on the rest. .UNINDENT .IP \(bu 2 -\fBresolve_capabilities\fP (\fI\%bool\fP) \-\- +\fBresolve_capabilities\fP (\fI\%bool\fP) \-\- .sp Turn on resolving capabilities. This allow one to name "provides" or alias names for packages. .sp @@ -430626,7 +430626,7 @@ Unset package from \(aqhold\(aq state, to allow operations with the package. \fBname\fP (\fI\%str\fP) \-\- The name of the package to be unheld. This parameter is ignored if \fBpkgs\fP is used. .IP \(bu 2 -\fBversion\fP (\fI\%str\fP) \-\- +\fBversion\fP (\fI\%str\fP) \-\- .sp Unhold a specific version of a package. Full description of this parameter is in \fIinstalled\fP function. @@ -430640,7 +430640,7 @@ Ignored for YUM/DNF and APT .UNINDENT .IP \(bu 2 -\fBpkgs\fP (\fI\%list\fP) \-\- +\fBpkgs\fP (\fI\%list\fP) \-\- .sp A list of packages to be unheld. All packages listed under \fBpkgs\fP will be unheld. @@ -430703,7 +430703,7 @@ list of packages to upgrade .B Parameters .INDENT 7.0 .IP \(bu 2 -\fBcache_valid_time\fP (\fI\%str\fP) \-\- +\fBcache_valid_time\fP (\fI\%str\fP) \-\- .sp This parameter sets the value in seconds after which cache marked as invalid, and cache update is necessary. This overwrite \fBrefresh\fP parameter @@ -430721,7 +430721,7 @@ have no effect on the rest. .UNINDENT .IP \(bu 2 -\fBresolve_capabilities\fP (\fI\%bool\fP) \-\- +\fBresolve_capabilities\fP (\fI\%bool\fP) \-\- .sp Turn on resolving capabilities. This allow one to name "provides" or alias names for packages. .sp @@ -434283,7 +434283,7 @@ Ensure a registry value is removed. To remove a key use key_absent. .B Parameters .INDENT 7.0 .IP \(bu 2 -\fBname\fP (\fI\%str\fP) \-\- +\fBname\fP (\fI\%str\fP) \-\- .sp A string value representing the full path of the key to include the HIVE, Key, and all Subkeys. For example: @@ -434355,7 +434355,7 @@ value entries. .B Parameters .INDENT 7.0 .IP \(bu 2 -\fBname\fP (\fI\%str\fP) \-\- +\fBname\fP (\fI\%str\fP) \-\- .sp A string representing the full path to the key to be removed to include the hive and the keypath. The hive can be any of the @@ -434426,7 +434426,7 @@ Ensure a registry key or value is present. .B Parameters .INDENT 7.0 .IP \(bu 2 -\fBname\fP (\fI\%str\fP) \-\- +\fBname\fP (\fI\%str\fP) \-\- .sp A string value representing the full path of the key to include the HIVE, Key, and all Subkeys. For example: @@ -434452,7 +434452,7 @@ HKEY_USERS or HKU parameter is not passed it will assume you want to set the \fB(Default)\fP value .IP \(bu 2 -\fBvdata\fP (\fI\%str\fP\fI, \fP\fI\%int\fP\fI, \fP\fI\%list\fP\fI, \fP\fI\%bytes\fP) \-\- +\fBvdata\fP (\fI\%str\fP\fI, \fP\fI\%int\fP\fI, \fP\fI\%list\fP\fI, \fP\fI\%bytes\fP) \-\- .sp The value you\(aqd like to set. If a value name (\fBvname\fP) is passed, this will be the data for that value name. If not, this will be the @@ -434509,7 +434509,7 @@ will be created with no associated item/value pairs. .UNINDENT .IP \(bu 2 -\fBvtype\fP (\fI\%str\fP) \-\- +\fBvtype\fP (\fI\%str\fP) \-\- .sp The value type for the data you wish to store in the registry. Valid values are: @@ -434536,7 +434536,7 @@ REG_SZ (Default) \fBuse_32bit_registry\fP (\fI\%bool\fP) \-\- Use the 32bit portion of the registry. Applies only to 64bit windows. 32bit Windows will ignore this parameter. Default is False. .IP \(bu 2 -\fBwin_owner\fP (\fI\%str\fP) \-\- +\fBwin_owner\fP (\fI\%str\fP) \-\- .sp The owner of the registry key. If this is not passed, the account under which Salt is running will be used. @@ -434553,7 +434553,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBwin_perms\fP (\fI\%dict\fP) \-\- +\fBwin_perms\fP (\fI\%dict\fP) \-\- .sp A dictionary containing permissions to grant and their propagation. If not passed the \(aqGrant\(ga permissions will not be modified. @@ -434639,7 +434639,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBwin_deny_perms\fP (\fI\%dict\fP) \-\- +\fBwin_deny_perms\fP (\fI\%dict\fP) \-\- .sp A dictionary containing permissions to deny and their propagation. If not passed the \fIDeny\fP permissions will not be modified. @@ -434669,7 +434669,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBwin_inheritance\fP (\fI\%bool\fP) \-\- +\fBwin_inheritance\fP (\fI\%bool\fP) \-\- .sp \fBTrue\fP to inherit permissions from the parent key. \fBFalse\fP to disable inheritance. Default is \fBTrue\fP\&. @@ -434686,7 +434686,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBwin_perms_reset\fP (\fI\%bool\fP) \-\- +\fBwin_perms_reset\fP (\fI\%bool\fP) \-\- .sp If \fBTrue\fP the existing DACL will be cleared and replaced with the settings defined in this function. If \fBFalse\fP, new entries will be @@ -441003,7 +441003,7 @@ New in version 3001. .IP \(bu 2 \fBname\fP \-\- name of the virtual machine to run .IP \(bu 2 -\fBcpu\fP \-\- +\fBcpu\fP \-\- .sp Number of virtual CPUs to assign to the virtual machine or a dictionary with detailed information to configure cpu model and topology, numa node tuning, cpu tuning and iothreads allocation. The structure of the dictionary is @@ -441128,7 +441128,7 @@ New in version 3003. .IP \(bu 2 -\fBmem\fP \-\- +\fBmem\fP \-\- .sp Amount of memory to allocate to the virtual machine in MiB. Since 3002, a dictionary can be used to contain detailed configuration which support memory allocation or tuning. Supported parameters are \fBboot\fP, @@ -441214,7 +441214,7 @@ Only used when creating a new virtual machine. \fBarch\fP \-\- architecture of the virtual machine. The default value is taken from the host capabilities, but \fBx86_64\fP is prefed over \fBi686\fP\&. Only used when creating a new virtual machine. .IP \(bu 2 -\fBboot\fP \-\- +\fBboot\fP \-\- .sp Specifies kernel, initial ramdisk and kernel command line parameters for the virtual machine. This is an optional parameter, all of the keys are optional within the dictionary. @@ -441228,7 +441228,7 @@ New in version 3000. .IP \(bu 2 -\fBboot_dev\fP \-\- +\fBboot_dev\fP \-\- .sp Space separated list of devices to boot from sorted by decreasing priority. Values can be \fBhd\fP, \fBfd\fP, \fBcdrom\fP or \fBnetwork\fP\&. @@ -441239,7 +441239,7 @@ New in version 3002. .IP \(bu 2 -\fBnumatune\fP \-\- +\fBnumatune\fP \-\- .sp The optional numatune element provides details of how to tune the performance of a NUMA host via controlling NUMA policy for domain process. The optional \fBmemory\fP element specifies how to allocate memory for the domain process @@ -441263,7 +441263,7 @@ New in version 3003. .UNINDENT .IP \(bu 2 -\fBhypervisor_features\fP \-\- +\fBhypervisor_features\fP \-\- .sp Enable or disable hypervisor\-specific features on the virtual machine. .sp @@ -441282,7 +441282,7 @@ hypervisor_features: .UNINDENT .IP \(bu 2 -\fBclock\fP \-\- +\fBclock\fP \-\- .sp Configure the guest clock. The value is a dictionary with the following keys: @@ -441334,7 +441334,7 @@ clock: .UNINDENT .IP \(bu 2 -\fBserials\fP \-\- +\fBserials\fP \-\- .sp Dictionary providing details on the serials connection to create. (Default: \fBNone\fP) See init\-chardevs\-def for more details on the possible values. @@ -441343,7 +441343,7 @@ New in version 3003. .IP \(bu 2 -\fBconsoles\fP \-\- +\fBconsoles\fP \-\- .sp Dictionary providing details on the consoles device to create. (Default: \fBNone\fP) See init\-chardevs\-def for more details on the possible values. @@ -441352,7 +441352,7 @@ New in version 3003. .IP \(bu 2 -\fBstop_on_reboot\fP \-\- +\fBstop_on_reboot\fP \-\- .sp If set to \fBTrue\fP the guest will stop instead of rebooting. This is specially useful when creating a virtual machine with an installation cdrom or @@ -441363,7 +441363,7 @@ New in version 3003. .IP \(bu 2 -\fBlive\fP \-\- +\fBlive\fP \-\- .sp If set to \fBFalse\fP the changes will not be applied live to the running instance, but will only apply at the next start. Note that reboot will not take those changes. @@ -441372,7 +441372,7 @@ New in version 3003. .IP \(bu 2 -\fBhost_devices\fP \-\- +\fBhost_devices\fP \-\- .sp List of host devices to passthrough to the guest. The value is a list of device names as provided by the \fBnode_devices()\fP function. @@ -441499,7 +441499,7 @@ Defines a new network with specified arguments. .IP \(bu 2 \fBbridge\fP \-\- Bridge name .IP \(bu 2 -\fBforward\fP \-\- +\fBforward\fP \-\- .sp Forward mode(bridge, router, nat) .sp @@ -441507,7 +441507,7 @@ Changed in version 3003: a \fBNone\fP value creates an isolated network with no .IP \(bu 2 -\fBvport\fP \-\- +\fBvport\fP \-\- .sp Virtualport type (Default: \fB\(aqNone\(aq\fP) The value can also be a dictionary with \fBtype\fP and \fBparameters\fP keys. @@ -441530,7 +441530,7 @@ Changed in version 3003: possible dictionary value .IP \(bu 2 -\fBtag\fP \-\- +\fBtag\fP \-\- .sp Vlan tag (Default: \fB\(aqNone\(aq\fP) The value can also be a dictionary with the \fBtags\fP and optional \fBtrunk\fP keys. @@ -441575,7 +441575,7 @@ for more details on this dictionary. .IP \(bu 2 \fBpassword\fP \-\- password to connect with, overriding defaults .IP \(bu 2 -\fBmtu\fP \-\- +\fBmtu\fP \-\- .sp size of the Maximum Transmission Unit (MTU) of the network. (default \fBNone\fP) @@ -441584,7 +441584,7 @@ New in version 3003. .IP \(bu 2 -\fBdomain\fP \-\- +\fBdomain\fP \-\- .sp DNS domain name of the DHCP server. The value is a dictionary with a mandatory \fBname\fP property and an optional \fBlocalOnly\fP boolean one. @@ -441606,7 +441606,7 @@ New in version 3003. .IP \(bu 2 -\fBnat\fP \-\- +\fBnat\fP \-\- .sp addresses and ports to route in NAT forward mode. The value is a dictionary with optional keys \fBaddress\fP and \fBport\fP\&. @@ -441634,7 +441634,7 @@ New in version 3003. .IP \(bu 2 -\fBinterfaces\fP \-\- +\fBinterfaces\fP \-\- .sp whitespace separated list of network interfaces devices that can be used for this network. (default \fBNone\fP) @@ -441654,7 +441654,7 @@ New in version 3003. .IP \(bu 2 -\fBaddresses\fP \-\- +\fBaddresses\fP \-\- .sp whitespace separated list of addresses of PCI devices that can be used for this network in \fIhostdev\fP forward mode. (default \fBNone\fP) @@ -441674,7 +441674,7 @@ New in version 3003. .IP \(bu 2 -\fBphysical_function\fP \-\- +\fBphysical_function\fP \-\- .sp device name of the physical interface to use in \fBhostdev\fP forward mode. (default \fBNone\fP) @@ -441694,7 +441694,7 @@ New in version 3003. .IP \(bu 2 -\fBdns\fP \-\- +\fBdns\fP \-\- .sp virtual network DNS configuration The value is a dictionary described in net\-define\-dns\&. @@ -441800,7 +441800,7 @@ Defines and starts a new network with specified arguments. .IP \(bu 2 \fBbridge\fP \-\- Bridge name .IP \(bu 2 -\fBforward\fP \-\- +\fBforward\fP \-\- .sp Forward mode(bridge, router, nat) .sp @@ -441808,7 +441808,7 @@ Changed in version 3003: a \fBNone\fP value creates an isolated network with no .IP \(bu 2 -\fBvport\fP \-\- +\fBvport\fP \-\- .sp Virtualport type (Default: \fB\(aqNone\(aq\fP) The value can also be a dictionary with \fBtype\fP and \fBparameters\fP keys. @@ -441831,7 +441831,7 @@ Changed in version 3003: possible dictionary value .IP \(bu 2 -\fBtag\fP \-\- +\fBtag\fP \-\- .sp Vlan tag (Default: \fB\(aqNone\(aq\fP) The value can also be a dictionary with the \fBtags\fP and optional \fBtrunk\fP keys. @@ -441858,7 +441858,7 @@ Changed in version 3003: possible dictionary value .IP \(bu 2 -\fBipv4_config\fP \-\- +\fBipv4_config\fP \-\- .sp IPv4 network configuration. See the :py:func\(gavirt.network_define \(ga function corresponding parameter documentation @@ -441869,7 +441869,7 @@ New in version 3000. .IP \(bu 2 -\fBipv6_config\fP \-\- +\fBipv6_config\fP \-\- .sp IPv6 network configuration. See the :py:func\(gavirt.network_define \(ga function corresponding parameter documentation @@ -441882,7 +441882,7 @@ New in version 3000. .IP \(bu 2 \fBautostart\fP \-\- Network autostart (default \fB\(aqTrue\(aq\fP) .IP \(bu 2 -\fBconnection\fP \-\- +\fBconnection\fP \-\- .sp libvirt connection URI, overriding defaults .sp @@ -441890,7 +441890,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBusername\fP \-\- +\fBusername\fP \-\- .sp username to connect with, overriding defaults .sp @@ -441898,7 +441898,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBpassword\fP \-\- +\fBpassword\fP \-\- .sp password to connect with, overriding defaults .sp @@ -441906,7 +441906,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBmtu\fP \-\- +\fBmtu\fP \-\- .sp size of the Maximum Transmission Unit (MTU) of the network. (default \fBNone\fP) @@ -441915,7 +441915,7 @@ New in version 3003. .IP \(bu 2 -\fBdomain\fP \-\- +\fBdomain\fP \-\- .sp DNS domain name of the DHCP server. The value is a dictionary with a mandatory \fBname\fP property and an optional \fBlocalOnly\fP boolean one. @@ -441937,7 +441937,7 @@ New in version 3003. .IP \(bu 2 -\fBnat\fP \-\- +\fBnat\fP \-\- .sp addresses and ports to route in NAT forward mode. The value is a dictionary with optional keys \fBaddress\fP and \fBport\fP\&. @@ -441965,7 +441965,7 @@ New in version 3003. .IP \(bu 2 -\fBinterfaces\fP \-\- +\fBinterfaces\fP \-\- .sp whitespace separated list of network interfaces devices that can be used for this network. (default \fBNone\fP) @@ -441985,7 +441985,7 @@ New in version 3003. .IP \(bu 2 -\fBaddresses\fP \-\- +\fBaddresses\fP \-\- .sp whitespace separated list of addresses of PCI devices that can be used for this network in \fIhostdev\fP forward mode. (default \fBNone\fP) @@ -442005,7 +442005,7 @@ New in version 3003. .IP \(bu 2 -\fBphysical_function\fP \-\- +\fBphysical_function\fP \-\- .sp device name of the physical interface to use in \fBhostdev\fP forward mode. (default \fBNone\fP) @@ -442025,7 +442025,7 @@ New in version 3003. .IP \(bu 2 -\fBdns\fP \-\- +\fBdns\fP \-\- .sp virtual network DNS configuration The value is a dictionary described in net\-define\-dns\&. @@ -442298,7 +442298,7 @@ New in version 2016.3.0. .B Parameters .INDENT 7.0 .IP \(bu 2 -\fBconnection\fP \-\- +\fBconnection\fP \-\- .sp libvirt connection URI, overriding defaults .sp @@ -442306,7 +442306,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBusername\fP \-\- +\fBusername\fP \-\- .sp username to connect with, overriding defaults .sp @@ -442314,7 +442314,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBpassword\fP \-\- +\fBpassword\fP \-\- .sp password to connect with, overriding defaults .sp @@ -442347,9 +442347,9 @@ New in version 2016.3.0. .B Parameters .INDENT 7.0 .IP \(bu 2 -\fBname\fP \-\- +\fBname\fP \-\- .IP \(bu 2 -\fBconnection\fP \-\- +\fBconnection\fP \-\- .sp libvirt connection URI, overriding defaults .sp @@ -442357,7 +442357,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBusername\fP \-\- +\fBusername\fP \-\- .sp username to connect with, overriding defaults .sp @@ -442365,7 +442365,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBpassword\fP \-\- +\fBpassword\fP \-\- .sp password to connect with, overriding defaults .sp @@ -442417,7 +442417,7 @@ New in version 2016.3.0. .IP \(bu 2 \fBname\fP \-\- name of the virtual machine to run .IP \(bu 2 -\fBcpu\fP \-\- +\fBcpu\fP \-\- .sp Number of virtual CPUs to assign to the virtual machine or a dictionary with detailed information to configure cpu model and topology, numa node tuning, cpu tuning and iothreads allocation. The structure of the dictionary is @@ -442428,7 +442428,7 @@ specify \fBNone\fP object. Please note that \fBNone\fP object is mapped to \fBnu instead. .IP \(bu 2 -\fBmem\fP \-\- +\fBmem\fP \-\- .sp Amount of memory to allocate to the virtual machine in MiB. Since 3002, a dictionary can be used to contain detailed configuration which support memory allocation or tuning. Supported parameters are \fBboot\fP, @@ -442456,7 +442456,7 @@ Changed in version 3002. .IP \(bu 2 -\fBvm_type\fP \-\- +\fBvm_type\fP \-\- .sp force virtual machine type for the new VM. The default value is taken from the host capabilities. This could be useful for example to use \fB\(aqqemu\(aq\fP type instead @@ -442466,7 +442466,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBdisk_profile\fP \-\- +\fBdisk_profile\fP \-\- .sp Name of the disk profile to use for the new virtual machine .sp @@ -442474,7 +442474,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBdisks\fP \-\- +\fBdisks\fP \-\- .sp List of disk to create for the new virtual machine. See init\-disk\-def for more details on the items on this list. @@ -442483,7 +442483,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBnic_profile\fP \-\- +\fBnic_profile\fP \-\- .sp Name of the network interfaces profile to use for the new virtual machine .sp @@ -442491,7 +442491,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBinterfaces\fP \-\- +\fBinterfaces\fP \-\- .sp List of network interfaces to create for the new virtual machine. See init\-nic\-def for more details on the items on this list. @@ -442500,7 +442500,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBgraphics\fP \-\- +\fBgraphics\fP \-\- .sp Graphics device to create for the new virtual machine. See init\-graphics\-def for more details on this dictionary @@ -442509,7 +442509,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBsaltenv\fP \-\- +\fBsaltenv\fP \-\- .sp Fileserver environment (Default: \fB\(aqbase\(aq\fP). See \fBcp module for more details\fP @@ -442528,7 +442528,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBinstall\fP \-\- +\fBinstall\fP \-\- .sp install salt minion if absent (Default: \fBTrue\fP) .sp @@ -442536,7 +442536,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBpub_key\fP \-\- +\fBpub_key\fP \-\- .sp public key to seed with (Default: \fBNone\fP) .sp @@ -442544,7 +442544,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBpriv_key\fP \-\- +\fBpriv_key\fP \-\- .sp public key to seed with (Default: \fBNone\fP) .sp @@ -442552,7 +442552,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBseed_cmd\fP \-\- +\fBseed_cmd\fP \-\- .sp Salt command to execute to seed the image. (Default: \fB\(aqseed.apply\(aq\fP) .sp @@ -442560,7 +442560,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBconnection\fP \-\- +\fBconnection\fP \-\- .sp libvirt connection URI, overriding defaults .sp @@ -442568,7 +442568,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBusername\fP \-\- +\fBusername\fP \-\- .sp username to connect with, overriding defaults .sp @@ -442576,7 +442576,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBpassword\fP \-\- +\fBpassword\fP \-\- .sp password to connect with, overriding defaults .sp @@ -442584,7 +442584,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBos_type\fP \-\- +\fBos_type\fP \-\- .sp type of virtualization as found in the \fB//os/type\fP element of the libvirt definition. The default value is taken from the host capabilities, with a preference for \fBhvm\fP\&. @@ -442594,7 +442594,7 @@ New in version 3000. .IP \(bu 2 -\fBarch\fP \-\- +\fBarch\fP \-\- .sp architecture of the virtual machine. The default value is taken from the host capabilities, but \fBx86_64\fP is prefed over \fBi686\fP\&. Only used when creating a new virtual machine. @@ -442603,7 +442603,7 @@ New in version 3000. .IP \(bu 2 -\fBboot\fP \-\- +\fBboot\fP \-\- .sp Specifies kernel, initial ramdisk and kernel command line parameters for the virtual machine. This is an optional parameter, all of the keys are optional within the dictionary. @@ -442617,7 +442617,7 @@ New in version 3000. .IP \(bu 2 -\fBserials\fP \-\- +\fBserials\fP \-\- .sp Dictionary providing details on the serials connection to create. (Default: \fBNone\fP) See init\-chardevs\-def for more details on the possible values. @@ -442626,7 +442626,7 @@ New in version 3003. .IP \(bu 2 -\fBconsoles\fP \-\- +\fBconsoles\fP \-\- .sp Dictionary providing details on the consoles device to create. (Default: \fBNone\fP) See init\-chardevs\-def for more details on the possible values. @@ -442635,7 +442635,7 @@ New in version 3003. .IP \(bu 2 -\fBboot_dev\fP \-\- +\fBboot_dev\fP \-\- .sp Space separated list of devices to boot from sorted by decreasing priority. Values can be \fBhd\fP, \fBfd\fP, \fBcdrom\fP or \fBnetwork\fP\&. @@ -442646,7 +442646,7 @@ New in version 3002. .IP \(bu 2 -\fBnumatune\fP \-\- +\fBnumatune\fP \-\- .sp The optional numatune element provides details of how to tune the performance of a NUMA host via controlling NUMA policy for domain process. The optional \fBmemory\fP element specifies how to allocate memory for the domain process @@ -442661,7 +442661,7 @@ New in version 3003. .IP \(bu 2 -\fBstop_on_reboot\fP \-\- +\fBstop_on_reboot\fP \-\- .sp If set to \fBTrue\fP the guest will stop instead of rebooting. This is specially useful when creating a virtual machine with an installation cdrom or @@ -442672,7 +442672,7 @@ New in version 3003. .IP \(bu 2 -\fBhypervisor_features\fP \-\- +\fBhypervisor_features\fP \-\- .sp Enable or disable hypervisor\-specific features on the virtual machine. .sp @@ -442691,7 +442691,7 @@ hypervisor_features: .UNINDENT .IP \(bu 2 -\fBclock\fP \-\- +\fBclock\fP \-\- .sp Configure the guest clock. The value is a dictionary with the following keys: @@ -442743,7 +442743,7 @@ clock: .UNINDENT .IP \(bu 2 -\fBhost_devices\fP \-\- +\fBhost_devices\fP \-\- .sp List of host devices to passthrough to the guest. The value is a list of device names as provided by the \fBnode_devices()\fP function. @@ -442846,7 +442846,7 @@ New in version 2016.3.0. .B Parameters .INDENT 7.0 .IP \(bu 2 -\fBconnection\fP \-\- +\fBconnection\fP \-\- .sp libvirt connection URI, overriding defaults .sp @@ -442854,7 +442854,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBusername\fP \-\- +\fBusername\fP \-\- .sp username to connect with, overriding defaults .sp @@ -442862,7 +442862,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBpassword\fP \-\- +\fBpassword\fP \-\- .sp password to connect with, overriding defaults .sp @@ -442900,7 +442900,7 @@ New in version 2016.3.0. .B Parameters .INDENT 7.0 .IP \(bu 2 -\fBconnection\fP \-\- +\fBconnection\fP \-\- .sp libvirt connection URI, overriding defaults .sp @@ -442908,7 +442908,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBusername\fP \-\- +\fBusername\fP \-\- .sp username to connect with, overriding defaults .sp @@ -442916,7 +442916,7 @@ New in version 2019.2.0. .IP \(bu 2 -\fBpassword\fP \-\- +\fBpassword\fP \-\- .sp password to connect with, overriding defaults .sp @@ -442985,7 +442985,7 @@ By default, the type is guessed by libvirt from the pool type. \fBpermissions\fP \-\- Permissions to set on the target folder. This is mostly used for filesystem\-based pool types. See pool\-define\-permissions for more details on this structure. .IP \(bu 2 -\fBbacking_store\fP \-\- +\fBbacking_store\fP \-\- .sp dictionary describing a backing file for the volume. It must contain a \fBpath\fP property pointing to the base volume and a \fBformat\fP property defining the format @@ -443866,7 +443866,7 @@ Required. 0 and 65535. Can be a range. Can specify multiple ports separated by commas. Required. .IP \(bu 2 -\fBprotocol\fP (\fIOptional\fP\fI[\fP\fI\%str\fP\fI]\fP) \-\- +\fBprotocol\fP (\fIOptional\fP\fI[\fP\fI\%str\fP\fI]\fP) \-\- .sp The protocol. Can be any of the following: .INDENT 2.0 @@ -443885,7 +443885,7 @@ any .UNINDENT .IP \(bu 2 -\fBaction\fP (\fIOptional\fP\fI[\fP\fI\%str\fP\fI]\fP) \-\- +\fBaction\fP (\fIOptional\fP\fI[\fP\fI\%str\fP\fI]\fP) \-\- .sp The action the rule performs. Can be any of the following: @@ -443901,7 +443901,7 @@ bypass .IP \(bu 2 \fBdir\fP (\fIOptional\fP\fI[\fP\fI\%str\fP\fI]\fP) \-\- The direction. Can be \fBin\fP or \fBout\fP\&. .IP \(bu 2 -\fBremoteip\fP (\fIOptional\fP\fI [\fP\fI\%str\fP\fI]\fP) \-\- +\fBremoteip\fP (\fIOptional\fP\fI [\fP\fI\%str\fP\fI]\fP) \-\- .sp The remote IP. Can be any of the following: .INDENT 2.0 @@ -443961,7 +443961,7 @@ Disable all the firewall profiles (Windows only) .INDENT 7.0 .TP .B Parameters -\fBprofile\fP (\fIOptional\fP\fI[\fP\fI\%str\fP\fI]\fP) \-\- +\fBprofile\fP (\fIOptional\fP\fI[\fP\fI\%str\fP\fI]\fP) \-\- .sp The name of the profile to disable. Default is \fBallprofiles\fP\&. Valid options are: @@ -444005,7 +444005,7 @@ Enable all the firewall profiles (Windows only) .INDENT 7.0 .TP .B Parameters -\fBprofile\fP (\fIOptional\fP\fI[\fP\fI\%str\fP\fI]\fP) \-\- +\fBprofile\fP (\fIOptional\fP\fI[\fP\fI\%str\fP\fI]\fP) \-\- .sp The name of the profile to enable. Default is \fBallprofiles\fP\&. Valid options are: @@ -445459,7 +445459,7 @@ Set the sleep timeouts of specific items such as disk, monitor, etc. .B Parameters .INDENT 7.0 .IP \(bu 2 -\fBname\fP (\fI\%str\fP) \-\- +\fBname\fP (\fI\%str\fP) \-\- .sp The setting to change, can be one of the following: .INDENT 2.0 @@ -445480,7 +445480,7 @@ The setting to change, can be one of the following: .IP \(bu 2 \fBvalue\fP (\fI\%int\fP) \-\- The amount of time in minutes before the item will timeout .IP \(bu 2 -\fBpower\fP (\fI\%str\fP) \-\- +\fBpower\fP (\fI\%str\fP) \-\- .sp Set the value for AC or DC power. Default is \fBac\fP\&. Valid options are: @@ -445496,7 +445496,7 @@ are: .UNINDENT .IP \(bu 2 -\fBscheme\fP (\fI\%str\fP) \-\- +\fBscheme\fP (\fI\%str\fP) \-\- .sp The scheme to use, leave as \fBNone\fP to use the current. Default is \fBNone\fP\&. This can be the GUID or the Alias for the Scheme. Known @@ -445575,7 +445575,7 @@ server is restarted other features can not be installed! .B Parameters .INDENT 7.0 .IP \(bu 2 -\fBname\fP (\fI\%str\fP) \-\- +\fBname\fP (\fI\%str\fP) \-\- .sp Short name of the feature (the right column in win_servermanager.list_available). This can be a single feature or a @@ -445591,7 +445591,7 @@ list .UNINDENT .IP \(bu 2 -\fBfeatures\fP (\fIOptional\fP\fI[\fP\fI\%list\fP\fI]\fP) \-\- +\fBfeatures\fP (\fIOptional\fP\fI[\fP\fI\%list\fP\fI]\fP) \-\- .sp A list of features to install. If this is passed it will be used instead of the \fBname\fP parameter. @@ -445614,7 +445614,7 @@ required files. Default is None \fBrestart\fP (\fIOptional\fP\fI[\fP\fI\%bool\fP\fI]\fP) \-\- Restarts the computer when installation is complete, if required by the role/feature installed. Default is False .IP \(bu 2 -\fBexclude\fP (\fIOptional\fP\fI[\fP\fI\%str\fP\fI]\fP) \-\- +\fBexclude\fP (\fIOptional\fP\fI[\fP\fI\%str\fP\fI]\fP) \-\- .sp The name of the feature to exclude when installing the named feature. This can be a single feature, a string of features in a @@ -445688,7 +445688,7 @@ parameter. To remove multiple features, use the \fBfeatures\fP parameter. .B Parameters .INDENT 7.0 .IP \(bu 2 -\fBname\fP (\fI\%str\fP) \-\- +\fBname\fP (\fI\%str\fP) \-\- .sp Short name of the feature (the right column in win_servermanager.list_available). This can be a single feature or a @@ -445704,7 +445704,7 @@ list .UNINDENT .IP \(bu 2 -\fBfeatures\fP (\fIOptional\fP\fI[\fP\fI\%list\fP\fI]\fP) \-\- +\fBfeatures\fP (\fIOptional\fP\fI[\fP\fI\%list\fP\fI]\fP) \-\- .sp A list of features to remove. If this is passed it will be used instead of the \fBname\fP parameter. @@ -445799,7 +445799,7 @@ shortcut (\fB\&.url\fP). shown in the \fBComment\fP field of the dialog box. Default is an empty string .IP \(bu 2 -\fBhot_key\fP (\fI\%str\fP\fI, \fP\fIoptional\fP) \-\- +\fBhot_key\fP (\fI\%str\fP\fI, \fP\fIoptional\fP) \-\- .sp A combination of hot Keys to trigger this shortcut. This is something like \fBCtrl+Alt+D\fP\&. This is shown in @@ -445826,7 +445826,7 @@ This is shown in the \fBChange Icon\fP dialog box by clicking the passed as the target, Windows will attempt to get the icon from the binary file. Default is an empty string .IP \(bu 2 -\fBwindow_style\fP (\fI\%str\fP\fI, \fP\fIoptional\fP) \-\- +\fBwindow_style\fP (\fI\%str\fP\fI, \fP\fIoptional\fP) \-\- .sp The window style the program should start in. This is shown in the \fBRun\fP field of the dialog box. Default is @@ -446391,7 +446391,7 @@ Reboot the computer .B Parameters .INDENT 7.0 .IP \(bu 2 -\fBmessage\fP (\fI\%str\fP) \-\- +\fBmessage\fP (\fI\%str\fP) \-\- .sp An optional message to display to users. It will also be used as a comment in the event log entry. @@ -446399,7 +446399,7 @@ comment in the event log entry. The default value is None. .IP \(bu 2 -\fBtimeout\fP (\fI\%int\fP) \-\- +\fBtimeout\fP (\fI\%int\fP) \-\- .sp The number of minutes or seconds before a reboot will occur. Whether this number represents minutes or seconds depends on the value of @@ -446408,7 +446408,7 @@ this number represents minutes or seconds depends on the value of The default value is 5. .IP \(bu 2 -\fBin_seconds\fP (\fI\%bool\fP) \-\- +\fBin_seconds\fP (\fI\%bool\fP) \-\- .sp If this is True, the value of \fBtimeout\fP will be treated as a number of seconds. If this is False, the value of \fBtimeout\fP will be treated @@ -446417,7 +446417,7 @@ as a number of minutes. The default value is False. .IP \(bu 2 -\fBforce_close\fP (\fI\%bool\fP) \-\- +\fBforce_close\fP (\fI\%bool\fP) \-\- .sp If this is True, running applications will be forced to close without warning. If this is False, running applications will not get the @@ -446426,7 +446426,7 @@ opportunity to prompt users about unsaved data. The default value is True. .IP \(bu 2 -\fBonly_on_pending_reboot\fP (\fI\%bool\fP) \-\- +\fBonly_on_pending_reboot\fP (\fI\%bool\fP) \-\- .sp If this is True, the reboot will only occur if the system reports a pending reboot. If this is False, the reboot will always occur. @@ -446445,7 +446445,7 @@ Shutdown the computer .B Parameters .INDENT 7.0 .IP \(bu 2 -\fBmessage\fP (\fI\%str\fP) \-\- +\fBmessage\fP (\fI\%str\fP) \-\- .sp An optional message to display to users. It will also be used as a comment in the event log entry. @@ -446453,7 +446453,7 @@ comment in the event log entry. The default value is None. .IP \(bu 2 -\fBtimeout\fP (\fI\%int\fP) \-\- +\fBtimeout\fP (\fI\%int\fP) \-\- .sp The number of minutes or seconds before a shutdown will occur. Whether this number represents minutes or seconds depends on the value of @@ -446462,7 +446462,7 @@ this number represents minutes or seconds depends on the value of The default value is 5. .IP \(bu 2 -\fBin_seconds\fP (\fI\%bool\fP) \-\- +\fBin_seconds\fP (\fI\%bool\fP) \-\- .sp If this is True, the value of \fBtimeout\fP will be treated as a number of seconds. If this is False, the value of \fBtimeout\fP will be treated @@ -446471,7 +446471,7 @@ as a number of minutes. The default value is False. .IP \(bu 2 -\fBforce_close\fP (\fI\%bool\fP) \-\- +\fBforce_close\fP (\fI\%bool\fP) \-\- .sp If this is True, running applications will be forced to close without warning. If this is False, running applications will not get the @@ -446480,7 +446480,7 @@ opportunity to prompt users about unsaved data. The default value is True. .IP \(bu 2 -\fBreboot\fP (\fI\%bool\fP) \-\- +\fBreboot\fP (\fI\%bool\fP) \-\- .sp If this is True, the computer will restart immediately after shutting down. If False the system flushes all caches to disk and safely powers @@ -446489,7 +446489,7 @@ down the system. The default value is False. .IP \(bu 2 -\fBonly_on_pending_reboot\fP (\fI\%bool\fP) \-\- +\fBonly_on_pending_reboot\fP (\fI\%bool\fP) \-\- .sp If this is True, the shutdown will only occur if the system reports a pending reboot. If this is False, the shutdown will always occur. @@ -446777,7 +446777,7 @@ reference .IP \(bu 2 \fBskip_reboot\fP (\fI\%bool\fP) \-\- Skip updates that require a reboot. Default is True. .IP \(bu 2 -\fBcategories\fP (\fI\%list\fP) \-\- +\fBcategories\fP (\fI\%list\fP) \-\- .sp Specify the categories to list. Must be passed as a list. All categories returned by default. @@ -446813,7 +446813,7 @@ Windows Defender .UNINDENT .IP \(bu 2 -\fBseverities\fP (\fI\%list\fP) \-\- +\fBseverities\fP (\fI\%list\fP) \-\- .sp Specify the severities to include. Must be passed as a list. All severities returned by default. @@ -453255,7 +453255,7 @@ used if no arguments are required. \fBtgt\fP (\fIstring\fP\fI or \fP\fI\%list\fP) \-\- Which minions to target for the execution. Default is shell glob. Modified by the \fBtgt_type\fP option. .IP \(bu 2 -\fBfun\fP (\fIstring\fP\fI or \fP\fIlist of strings\fP) \-\- +\fBfun\fP (\fIstring\fP\fI or \fP\fIlist of strings\fP) \-\- .sp The module and function to call on the specified minions of the form \fBmodule.function\fP\&. For example \fBtest.ping\fP or @@ -453281,7 +453281,7 @@ executing a compound command. \fBtimeout\fP \-\- Seconds to wait after the last minion returns but before all minions return. .IP \(bu 2 -\fBtgt_type\fP \-\- +\fBtgt_type\fP \-\- .sp The type of \fBtgt\fP\&. Allowed values: .INDENT 2.0 @@ -453322,7 +453322,7 @@ on the minions \fBfull_return\fP \-\- Output the job return only (default) or the full return including exit code and other job metadata. .IP \(bu 2 -\fBkwargs\fP \-\- +\fBkwargs\fP \-\- .sp Optional keyword arguments. Authentication credentials may be passed when using diff --git a/doc/ref/auth/all/salt.auth.auto.rst b/doc/ref/auth/all/salt.auth.auto.rst index 6b2be514d9c..57eafb51797 100644 --- a/doc/ref/auth/all/salt.auth.auto.rst +++ b/doc/ref/auth/all/salt.auth.auto.rst @@ -2,4 +2,4 @@ salt.auth.auto ============== .. automodule:: salt.auth.auto - :members: \ No newline at end of file + :members: diff --git a/doc/ref/auth/all/salt.auth.django.rst b/doc/ref/auth/all/salt.auth.django.rst index b28a1528db3..1e33d80c221 100644 --- a/doc/ref/auth/all/salt.auth.django.rst +++ b/doc/ref/auth/all/salt.auth.django.rst @@ -2,4 +2,4 @@ salt.auth.django ================ .. automodule:: salt.auth.django - :members: \ No newline at end of file + :members: diff --git a/doc/ref/auth/all/salt.auth.keystone.rst b/doc/ref/auth/all/salt.auth.keystone.rst index 8ac01e9299d..04e3dd56e7b 100644 --- a/doc/ref/auth/all/salt.auth.keystone.rst +++ b/doc/ref/auth/all/salt.auth.keystone.rst @@ -2,4 +2,4 @@ salt.auth.keystone ================== .. automodule:: salt.auth.keystone - :members: \ No newline at end of file + :members: diff --git a/doc/ref/auth/all/salt.auth.ldap.rst b/doc/ref/auth/all/salt.auth.ldap.rst index 3b5c85b1b05..bcc0b9654e8 100644 --- a/doc/ref/auth/all/salt.auth.ldap.rst +++ b/doc/ref/auth/all/salt.auth.ldap.rst @@ -2,4 +2,4 @@ salt.auth.ldap ============== .. automodule:: salt.auth.ldap - :members: \ No newline at end of file + :members: diff --git a/doc/ref/auth/all/salt.auth.mysql.rst b/doc/ref/auth/all/salt.auth.mysql.rst index 014cfefe34a..387d6ffc02f 100644 --- a/doc/ref/auth/all/salt.auth.mysql.rst +++ b/doc/ref/auth/all/salt.auth.mysql.rst @@ -2,4 +2,4 @@ salt.auth.mysql =============== .. automodule:: salt.auth.mysql - :members: \ No newline at end of file + :members: diff --git a/doc/ref/auth/all/salt.auth.pam.rst b/doc/ref/auth/all/salt.auth.pam.rst index 23e55151c7a..d07905cd29b 100644 --- a/doc/ref/auth/all/salt.auth.pam.rst +++ b/doc/ref/auth/all/salt.auth.pam.rst @@ -2,4 +2,4 @@ salt.auth.pam ============= .. automodule:: salt.auth.pam - :members: \ No newline at end of file + :members: diff --git a/doc/ref/auth/all/salt.auth.pki.rst b/doc/ref/auth/all/salt.auth.pki.rst index 413fab58b17..55901068cbb 100644 --- a/doc/ref/auth/all/salt.auth.pki.rst +++ b/doc/ref/auth/all/salt.auth.pki.rst @@ -2,4 +2,4 @@ salt.auth.pki ============= .. automodule:: salt.auth.pki - :members: \ No newline at end of file + :members: diff --git a/doc/ref/auth/all/salt.auth.sharedsecret.rst b/doc/ref/auth/all/salt.auth.sharedsecret.rst index fd22be0cafe..9284060212f 100644 --- a/doc/ref/auth/all/salt.auth.sharedsecret.rst +++ b/doc/ref/auth/all/salt.auth.sharedsecret.rst @@ -2,4 +2,4 @@ salt.auth.sharedsecret ====================== .. automodule:: salt.auth.sharedsecret - :members: \ No newline at end of file + :members: diff --git a/doc/ref/auth/all/salt.auth.yubico.rst b/doc/ref/auth/all/salt.auth.yubico.rst index 2b06e0bfcdc..8db41b5d1bf 100644 --- a/doc/ref/auth/all/salt.auth.yubico.rst +++ b/doc/ref/auth/all/salt.auth.yubico.rst @@ -2,4 +2,4 @@ salt.auth.yubico ================ .. automodule:: salt.auth.yubico - :members: \ No newline at end of file + :members: diff --git a/doc/ref/beacons/all/salt.beacons.btmp.rst b/doc/ref/beacons/all/salt.beacons.btmp.rst index 6c34eac6d04..27ead9795c6 100644 --- a/doc/ref/beacons/all/salt.beacons.btmp.rst +++ b/doc/ref/beacons/all/salt.beacons.btmp.rst @@ -2,4 +2,4 @@ salt.beacons.btmp ================= .. automodule:: salt.beacons.btmp - :members: \ No newline at end of file + :members: diff --git a/doc/ref/beacons/all/salt.beacons.diskusage.rst b/doc/ref/beacons/all/salt.beacons.diskusage.rst index b7e5abba579..a81dd728a5d 100644 --- a/doc/ref/beacons/all/salt.beacons.diskusage.rst +++ b/doc/ref/beacons/all/salt.beacons.diskusage.rst @@ -2,4 +2,4 @@ salt.beacons.diskusage ====================== .. automodule:: salt.beacons.diskusage - :members: \ No newline at end of file + :members: diff --git a/doc/ref/beacons/all/salt.beacons.inotify.rst b/doc/ref/beacons/all/salt.beacons.inotify.rst index 1fa28502f36..55e628cc3b0 100644 --- a/doc/ref/beacons/all/salt.beacons.inotify.rst +++ b/doc/ref/beacons/all/salt.beacons.inotify.rst @@ -2,4 +2,4 @@ salt.beacons.inotify ==================== .. automodule:: salt.beacons.inotify - :members: \ No newline at end of file + :members: diff --git a/doc/ref/beacons/all/salt.beacons.journald.rst b/doc/ref/beacons/all/salt.beacons.journald.rst index 8e3689128af..104a74a0f69 100644 --- a/doc/ref/beacons/all/salt.beacons.journald.rst +++ b/doc/ref/beacons/all/salt.beacons.journald.rst @@ -2,4 +2,4 @@ salt.beacons.journald ===================== .. automodule:: salt.beacons.journald - :members: \ No newline at end of file + :members: diff --git a/doc/ref/beacons/all/salt.beacons.load.rst b/doc/ref/beacons/all/salt.beacons.load.rst index ff802008abc..069b4ccbaea 100644 --- a/doc/ref/beacons/all/salt.beacons.load.rst +++ b/doc/ref/beacons/all/salt.beacons.load.rst @@ -2,4 +2,4 @@ salt.beacons.load ================= .. automodule:: salt.beacons.load - :members: \ No newline at end of file + :members: diff --git a/doc/ref/beacons/all/salt.beacons.network_info.rst b/doc/ref/beacons/all/salt.beacons.network_info.rst index df71e964d91..f3a9f338637 100644 --- a/doc/ref/beacons/all/salt.beacons.network_info.rst +++ b/doc/ref/beacons/all/salt.beacons.network_info.rst @@ -2,4 +2,4 @@ salt.beacons.network_info ========================= .. automodule:: salt.beacons.network_info - :members: \ No newline at end of file + :members: diff --git a/doc/ref/beacons/all/salt.beacons.pkg.rst b/doc/ref/beacons/all/salt.beacons.pkg.rst index 5ffe679bafd..19c1420bbcb 100644 --- a/doc/ref/beacons/all/salt.beacons.pkg.rst +++ b/doc/ref/beacons/all/salt.beacons.pkg.rst @@ -2,4 +2,4 @@ salt.beacons.pkg ================ .. automodule:: salt.beacons.pkg - :members: \ No newline at end of file + :members: diff --git a/doc/ref/beacons/all/salt.beacons.salt_monitor.rst b/doc/ref/beacons/all/salt.beacons.salt_monitor.rst index cd312875564..02e515753bf 100644 --- a/doc/ref/beacons/all/salt.beacons.salt_monitor.rst +++ b/doc/ref/beacons/all/salt.beacons.salt_monitor.rst @@ -3,4 +3,4 @@ salt.beacons.salt_monitor ========================= .. automodule:: salt.beacons.salt_monitor - :members: \ No newline at end of file + :members: diff --git a/doc/ref/beacons/all/salt.beacons.sensehat.rst b/doc/ref/beacons/all/salt.beacons.sensehat.rst index 1e9e685db31..fc08e62337f 100644 --- a/doc/ref/beacons/all/salt.beacons.sensehat.rst +++ b/doc/ref/beacons/all/salt.beacons.sensehat.rst @@ -1,5 +1,5 @@ -salt.beacons.sensehat module -============================ - -.. automodule:: salt.beacons.sensehat - :members: +salt.beacons.sensehat module +============================ + +.. automodule:: salt.beacons.sensehat + :members: diff --git a/doc/ref/beacons/all/salt.beacons.service.rst b/doc/ref/beacons/all/salt.beacons.service.rst index d1d68adc474..5c76d4dd531 100644 --- a/doc/ref/beacons/all/salt.beacons.service.rst +++ b/doc/ref/beacons/all/salt.beacons.service.rst @@ -2,4 +2,4 @@ salt.beacons.service ==================== .. automodule:: salt.beacons.service - :members: \ No newline at end of file + :members: diff --git a/doc/ref/beacons/all/salt.beacons.sh.rst b/doc/ref/beacons/all/salt.beacons.sh.rst index b910dcf46e1..8537ba9d147 100644 --- a/doc/ref/beacons/all/salt.beacons.sh.rst +++ b/doc/ref/beacons/all/salt.beacons.sh.rst @@ -2,4 +2,4 @@ salt.beacons.sh =============== .. automodule:: salt.beacons.sh - :members: \ No newline at end of file + :members: diff --git a/doc/ref/beacons/all/salt.beacons.twilio_txt_msg.rst b/doc/ref/beacons/all/salt.beacons.twilio_txt_msg.rst index 4144b145d6f..3fb40c67bdc 100644 --- a/doc/ref/beacons/all/salt.beacons.twilio_txt_msg.rst +++ b/doc/ref/beacons/all/salt.beacons.twilio_txt_msg.rst @@ -2,4 +2,4 @@ salt.beacons.twilio_txt_msg =========================== .. automodule:: salt.beacons.twilio_txt_msg - :members: \ No newline at end of file + :members: diff --git a/doc/ref/beacons/all/salt.beacons.wtmp.rst b/doc/ref/beacons/all/salt.beacons.wtmp.rst index 11b50b19d93..31095dd2204 100644 --- a/doc/ref/beacons/all/salt.beacons.wtmp.rst +++ b/doc/ref/beacons/all/salt.beacons.wtmp.rst @@ -2,4 +2,4 @@ salt.beacons.wtmp ================= .. automodule:: salt.beacons.wtmp - :members: \ No newline at end of file + :members: diff --git a/doc/ref/cli/_includes/common-options.rst b/doc/ref/cli/_includes/common-options.rst index cc97b7a4759..517a4e8c71a 100644 --- a/doc/ref/cli/_includes/common-options.rst +++ b/doc/ref/cli/_includes/common-options.rst @@ -14,4 +14,4 @@ The location of the Salt configuration directory. This directory contains the configuration files for Salt master and minions. The default location - on most systems is ``/etc/salt``. \ No newline at end of file + on most systems is ``/etc/salt``. diff --git a/doc/ref/cli/_includes/daemon-options.rst b/doc/ref/cli/_includes/daemon-options.rst index 61d005c7eea..ca790b4c313 100644 --- a/doc/ref/cli/_includes/daemon-options.rst +++ b/doc/ref/cli/_includes/daemon-options.rst @@ -8,4 +8,4 @@ .. option:: --pid-file PIDFILE - Specify the location of the pidfile. Default: /var/run/|salt-daemon|.pid \ No newline at end of file + Specify the location of the pidfile. Default: /var/run/|salt-daemon|.pid diff --git a/doc/ref/cli/_includes/extended-target-selection.rst b/doc/ref/cli/_includes/extended-target-selection.rst index 4b7b438aa38..8f817ca5c50 100644 --- a/doc/ref/cli/_includes/extended-target-selection.rst +++ b/doc/ref/cli/_includes/extended-target-selection.rst @@ -14,4 +14,4 @@ .. option:: -S, --ipcidr - Match based on Subnet (CIDR notation) or IPv4 address. \ No newline at end of file + Match based on Subnet (CIDR notation) or IPv4 address. diff --git a/doc/ref/cli/_includes/logging-options.rst b/doc/ref/cli/_includes/logging-options.rst index 92e9a3709b1..ff1d4c069e1 100644 --- a/doc/ref/cli/_includes/logging-options.rst +++ b/doc/ref/cli/_includes/logging-options.rst @@ -19,4 +19,4 @@ Logging options which override any settings defined on the configuration files. Logfile logging log level. One of ``all``, ``garbage``, ``trace``, ``debug``, ``info``, ``warning``, ``error``, ``quiet``. Default: - |loglevel|. \ No newline at end of file + |loglevel|. diff --git a/doc/ref/cli/_includes/target-selection-ssh.rst b/doc/ref/cli/_includes/target-selection-ssh.rst index 9bb644b4bce..3848106720a 100644 --- a/doc/ref/cli/_includes/target-selection-ssh.rst +++ b/doc/ref/cli/_includes/target-selection-ssh.rst @@ -8,4 +8,3 @@ minion id. See https://docs.python.org/3/library/fnmatch.html#module-fnmatch. The target expression will be interpreted as a PCRE regular expression rather than a shell glob. - diff --git a/doc/ref/cli/_includes/timeout-option.rst b/doc/ref/cli/_includes/timeout-option.rst index 49eb3053033..7ebd47196c7 100644 --- a/doc/ref/cli/_includes/timeout-option.rst +++ b/doc/ref/cli/_includes/timeout-option.rst @@ -2,4 +2,4 @@ The timeout in seconds to wait for replies from the Salt minions. The timeout number specifies how long the command line client will wait to - query the minions and check on running jobs. Default: |timeout| \ No newline at end of file + query the minions and check on running jobs. Default: |timeout| diff --git a/doc/ref/cli/salt-api.rst b/doc/ref/cli/salt-api.rst index 4c5b29035f3..5bbafa32a73 100644 --- a/doc/ref/cli/salt-api.rst +++ b/doc/ref/cli/salt-api.rst @@ -40,4 +40,4 @@ See also :manpage:`salt-api(7)` :manpage:`salt(7)` -:manpage:`salt-master(1)` \ No newline at end of file +:manpage:`salt-master(1)` diff --git a/doc/ref/cli/salt-call.rst b/doc/ref/cli/salt-call.rst index 279088a7c8b..7b316f0f93d 100644 --- a/doc/ref/cli/salt-call.rst +++ b/doc/ref/cli/salt-call.rst @@ -113,4 +113,4 @@ See also :manpage:`salt(1)` :manpage:`salt-master(1)` -:manpage:`salt-minion(1)` \ No newline at end of file +:manpage:`salt-minion(1)` diff --git a/doc/ref/cli/salt-extend.rst b/doc/ref/cli/salt-extend.rst index 018942bbd82..e0ee197ee38 100644 --- a/doc/ref/cli/salt-extend.rst +++ b/doc/ref/cli/salt-extend.rst @@ -43,7 +43,7 @@ Options The path to the salt installation, defaults to . -.. option:: --name, -n +.. option:: --name, -n The module name for the new module @@ -74,4 +74,4 @@ See also :manpage:`salt-minion(1)` :manpage:`salt-run(1)` :manpage:`salt-ssh(1)` -:manpage:`salt-syndic(1)` \ No newline at end of file +:manpage:`salt-syndic(1)` diff --git a/doc/ref/cli/salt-master.rst b/doc/ref/cli/salt-master.rst index 92d8d5c1055..0cc66e012b4 100644 --- a/doc/ref/cli/salt-master.rst +++ b/doc/ref/cli/salt-master.rst @@ -36,4 +36,4 @@ See also :manpage:`salt(1)` :manpage:`salt(7)` -:manpage:`salt-minion(1)` \ No newline at end of file +:manpage:`salt-minion(1)` diff --git a/doc/ref/cli/salt-minion.rst b/doc/ref/cli/salt-minion.rst index e57a6734efd..840d5a92031 100644 --- a/doc/ref/cli/salt-minion.rst +++ b/doc/ref/cli/salt-minion.rst @@ -37,4 +37,4 @@ See also :manpage:`salt(1)` :manpage:`salt(7)` -:manpage:`salt-master(1)` \ No newline at end of file +:manpage:`salt-master(1)` diff --git a/doc/ref/cli/salt-run.rst b/doc/ref/cli/salt-run.rst index a4c6cdb4876..72ac59bded0 100644 --- a/doc/ref/cli/salt-run.rst +++ b/doc/ref/cli/salt-run.rst @@ -50,4 +50,4 @@ See also :manpage:`salt(1)` :manpage:`salt-master(1)` -:manpage:`salt-minion(1)` \ No newline at end of file +:manpage:`salt-minion(1)` diff --git a/doc/ref/cli/salt-syndic.rst b/doc/ref/cli/salt-syndic.rst index bebbb40660c..f21cfa9f60a 100644 --- a/doc/ref/cli/salt-syndic.rst +++ b/doc/ref/cli/salt-syndic.rst @@ -38,4 +38,4 @@ See also :manpage:`salt(1)` :manpage:`salt-master(1)` -:manpage:`salt-minion(1)` \ No newline at end of file +:manpage:`salt-minion(1)` diff --git a/doc/ref/clouds/all/salt.cloud.clouds.cloudstack.rst b/doc/ref/clouds/all/salt.cloud.clouds.cloudstack.rst index da997472d64..96b4c0775a3 100644 --- a/doc/ref/clouds/all/salt.cloud.clouds.cloudstack.rst +++ b/doc/ref/clouds/all/salt.cloud.clouds.cloudstack.rst @@ -2,4 +2,4 @@ salt.cloud.clouds.cloudstack ============================ .. automodule:: salt.cloud.clouds.cloudstack - :members: \ No newline at end of file + :members: diff --git a/doc/ref/clouds/all/salt.cloud.clouds.digitalocean.rst b/doc/ref/clouds/all/salt.cloud.clouds.digitalocean.rst index bd0f4dc94d9..a05c8d772f2 100644 --- a/doc/ref/clouds/all/salt.cloud.clouds.digitalocean.rst +++ b/doc/ref/clouds/all/salt.cloud.clouds.digitalocean.rst @@ -2,4 +2,4 @@ salt.cloud.clouds.digitalocean ============================== .. automodule:: salt.cloud.clouds.digitalocean - :members: \ No newline at end of file + :members: diff --git a/doc/ref/clouds/all/salt.cloud.clouds.ec2.rst b/doc/ref/clouds/all/salt.cloud.clouds.ec2.rst index b73dbf9b0e6..ecb9aa94916 100644 --- a/doc/ref/clouds/all/salt.cloud.clouds.ec2.rst +++ b/doc/ref/clouds/all/salt.cloud.clouds.ec2.rst @@ -2,4 +2,4 @@ salt.cloud.clouds.ec2 ===================== .. automodule:: salt.cloud.clouds.ec2 - :members: \ No newline at end of file + :members: diff --git a/doc/ref/clouds/all/salt.cloud.clouds.gce.rst b/doc/ref/clouds/all/salt.cloud.clouds.gce.rst index 36cc156e614..6801f48931f 100644 --- a/doc/ref/clouds/all/salt.cloud.clouds.gce.rst +++ b/doc/ref/clouds/all/salt.cloud.clouds.gce.rst @@ -2,4 +2,4 @@ salt.cloud.clouds.gce ===================== .. automodule:: salt.cloud.clouds.gce - :members: \ No newline at end of file + :members: diff --git a/doc/ref/clouds/all/salt.cloud.clouds.gogrid.rst b/doc/ref/clouds/all/salt.cloud.clouds.gogrid.rst index bdeba31c027..ec9a059d9a4 100644 --- a/doc/ref/clouds/all/salt.cloud.clouds.gogrid.rst +++ b/doc/ref/clouds/all/salt.cloud.clouds.gogrid.rst @@ -2,4 +2,4 @@ salt.cloud.clouds.gogrid ======================== .. automodule:: salt.cloud.clouds.gogrid - :members: \ No newline at end of file + :members: diff --git a/doc/ref/clouds/all/salt.cloud.clouds.joyent.rst b/doc/ref/clouds/all/salt.cloud.clouds.joyent.rst index b42f0d537bc..c55f2d54110 100644 --- a/doc/ref/clouds/all/salt.cloud.clouds.joyent.rst +++ b/doc/ref/clouds/all/salt.cloud.clouds.joyent.rst @@ -2,4 +2,4 @@ salt.cloud.clouds.joyent ======================== .. automodule:: salt.cloud.clouds.joyent - :members: \ No newline at end of file + :members: diff --git a/doc/ref/clouds/all/salt.cloud.clouds.lxc.rst b/doc/ref/clouds/all/salt.cloud.clouds.lxc.rst index 654b01469d8..5ec58cb7637 100644 --- a/doc/ref/clouds/all/salt.cloud.clouds.lxc.rst +++ b/doc/ref/clouds/all/salt.cloud.clouds.lxc.rst @@ -2,4 +2,4 @@ salt.cloud.clouds.lxc ===================== .. automodule:: salt.cloud.clouds.lxc - :members: \ No newline at end of file + :members: diff --git a/doc/ref/clouds/all/salt.cloud.clouds.msazure.rst b/doc/ref/clouds/all/salt.cloud.clouds.msazure.rst index 2f5d597e2ee..4b624291f46 100644 --- a/doc/ref/clouds/all/salt.cloud.clouds.msazure.rst +++ b/doc/ref/clouds/all/salt.cloud.clouds.msazure.rst @@ -2,4 +2,4 @@ salt.cloud.clouds.msazure ========================= .. automodule:: salt.cloud.clouds.msazure - :members: \ No newline at end of file + :members: diff --git a/doc/ref/clouds/all/salt.cloud.clouds.opennebula.rst b/doc/ref/clouds/all/salt.cloud.clouds.opennebula.rst index ef8de4dd230..68555c36847 100644 --- a/doc/ref/clouds/all/salt.cloud.clouds.opennebula.rst +++ b/doc/ref/clouds/all/salt.cloud.clouds.opennebula.rst @@ -2,4 +2,4 @@ salt.cloud.clouds.opennebula ============================ .. automodule:: salt.cloud.clouds.opennebula - :members: \ No newline at end of file + :members: diff --git a/doc/ref/clouds/all/salt.cloud.clouds.parallels.rst b/doc/ref/clouds/all/salt.cloud.clouds.parallels.rst index b14f63060da..4b4281ed107 100644 --- a/doc/ref/clouds/all/salt.cloud.clouds.parallels.rst +++ b/doc/ref/clouds/all/salt.cloud.clouds.parallels.rst @@ -2,4 +2,4 @@ salt.cloud.clouds.parallels =========================== .. automodule:: salt.cloud.clouds.parallels - :members: \ No newline at end of file + :members: diff --git a/doc/ref/clouds/all/salt.cloud.clouds.proxmox.rst b/doc/ref/clouds/all/salt.cloud.clouds.proxmox.rst index e30af9a8ba9..891e70ac776 100644 --- a/doc/ref/clouds/all/salt.cloud.clouds.proxmox.rst +++ b/doc/ref/clouds/all/salt.cloud.clouds.proxmox.rst @@ -2,4 +2,4 @@ salt.cloud.clouds.proxmox ========================= .. automodule:: salt.cloud.clouds.proxmox - :members: \ No newline at end of file + :members: diff --git a/doc/ref/clouds/all/salt.cloud.clouds.pyrax.rst b/doc/ref/clouds/all/salt.cloud.clouds.pyrax.rst index e61c55ffd0c..555d4a1fbb7 100644 --- a/doc/ref/clouds/all/salt.cloud.clouds.pyrax.rst +++ b/doc/ref/clouds/all/salt.cloud.clouds.pyrax.rst @@ -2,4 +2,4 @@ salt.cloud.clouds.pyrax ======================= .. automodule:: salt.cloud.clouds.pyrax - :members: \ No newline at end of file + :members: diff --git a/doc/ref/clouds/all/salt.cloud.clouds.qingcloud.rst b/doc/ref/clouds/all/salt.cloud.clouds.qingcloud.rst index 68ae0b68218..e1492b3f22f 100644 --- a/doc/ref/clouds/all/salt.cloud.clouds.qingcloud.rst +++ b/doc/ref/clouds/all/salt.cloud.clouds.qingcloud.rst @@ -2,4 +2,4 @@ salt.cloud.clouds.qingcloud =========================== .. automodule:: salt.cloud.clouds.qingcloud - :members: \ No newline at end of file + :members: diff --git a/doc/ref/clouds/all/salt.cloud.clouds.saltify.rst b/doc/ref/clouds/all/salt.cloud.clouds.saltify.rst index 5d2ab569eda..b1895f7fa6f 100644 --- a/doc/ref/clouds/all/salt.cloud.clouds.saltify.rst +++ b/doc/ref/clouds/all/salt.cloud.clouds.saltify.rst @@ -2,4 +2,4 @@ salt.cloud.clouds.saltify ========================= .. automodule:: salt.cloud.clouds.saltify - :members: \ No newline at end of file + :members: diff --git a/doc/ref/clouds/all/salt.cloud.clouds.scaleway.rst b/doc/ref/clouds/all/salt.cloud.clouds.scaleway.rst index 5e0fa79f73c..10c8dd794f9 100644 --- a/doc/ref/clouds/all/salt.cloud.clouds.scaleway.rst +++ b/doc/ref/clouds/all/salt.cloud.clouds.scaleway.rst @@ -2,4 +2,4 @@ salt.cloud.clouds.scaleway ========================== .. automodule:: salt.cloud.clouds.scaleway - :members: \ No newline at end of file + :members: diff --git a/doc/ref/clouds/all/salt.cloud.clouds.softlayer.rst b/doc/ref/clouds/all/salt.cloud.clouds.softlayer.rst index d5ba12edce1..5c2d1e252f8 100644 --- a/doc/ref/clouds/all/salt.cloud.clouds.softlayer.rst +++ b/doc/ref/clouds/all/salt.cloud.clouds.softlayer.rst @@ -2,4 +2,4 @@ salt.cloud.clouds.softlayer =========================== .. automodule:: salt.cloud.clouds.softlayer - :members: \ No newline at end of file + :members: diff --git a/doc/ref/clouds/all/salt.cloud.clouds.softlayer_hw.rst b/doc/ref/clouds/all/salt.cloud.clouds.softlayer_hw.rst index ab7f39ad9d1..d1b2d098eb1 100644 --- a/doc/ref/clouds/all/salt.cloud.clouds.softlayer_hw.rst +++ b/doc/ref/clouds/all/salt.cloud.clouds.softlayer_hw.rst @@ -2,4 +2,4 @@ salt.cloud.clouds.softlayer_hw ============================== .. automodule:: salt.cloud.clouds.softlayer_hw - :members: \ No newline at end of file + :members: diff --git a/doc/ref/configuration/delta_proxy.rst b/doc/ref/configuration/delta_proxy.rst index e823a2d7280..be1831da399 100644 --- a/doc/ref/configuration/delta_proxy.rst +++ b/doc/ref/configuration/delta_proxy.rst @@ -433,4 +433,3 @@ For reference, see: * `Netmiko Salt proxy module `_ - diff --git a/doc/ref/configuration/index.rst b/doc/ref/configuration/index.rst index bd54bc25c5a..823d9820123 100644 --- a/doc/ref/configuration/index.rst +++ b/doc/ref/configuration/index.rst @@ -222,7 +222,7 @@ similar way: delta: 2018.3.4 -Each of the Minions should send a ``2018.3.4`` response as shown above, +Each of the Minions should send a ``2018.3.4`` response as shown above, or any other salt version installed. What's Next? diff --git a/doc/ref/configuration/logging/index.rst b/doc/ref/configuration/logging/index.rst index 0358212f056..1d1a0c09732 100644 --- a/doc/ref/configuration/logging/index.rst +++ b/doc/ref/configuration/logging/index.rst @@ -240,8 +240,8 @@ at the ``debug`` level, and sets a custom module to the ``all`` level: .. conf_log:: log_fmt_jid -You can determine what log call name to use here by adding ``%(module)s`` to the -log format. Typically, it is the path of the file which generates the log +You can determine what log call name to use here by adding ``%(module)s`` to the +log format. Typically, it is the path of the file which generates the log without the trailing ``.py`` and with path separators replaced with ``.`` diff --git a/doc/ref/engines/all/salt.engines.sqs_events.rst b/doc/ref/engines/all/salt.engines.sqs_events.rst index 646461012ee..101edf16746 100644 --- a/doc/ref/engines/all/salt.engines.sqs_events.rst +++ b/doc/ref/engines/all/salt.engines.sqs_events.rst @@ -2,4 +2,4 @@ salt.engines.sqs_events ======================= .. automodule:: salt.engines.sqs_events - :members: \ No newline at end of file + :members: diff --git a/doc/ref/engines/all/salt.engines.test.rst b/doc/ref/engines/all/salt.engines.test.rst index 66dc91a2837..e521ce58e63 100644 --- a/doc/ref/engines/all/salt.engines.test.rst +++ b/doc/ref/engines/all/salt.engines.test.rst @@ -2,4 +2,4 @@ salt.engines.test ================= .. automodule:: salt.engines.test - :members: \ No newline at end of file + :members: diff --git a/doc/ref/executors/all/salt.executors.direct_call.rst b/doc/ref/executors/all/salt.executors.direct_call.rst index 93a016a0ed8..e5b5e5378a5 100644 --- a/doc/ref/executors/all/salt.executors.direct_call.rst +++ b/doc/ref/executors/all/salt.executors.direct_call.rst @@ -3,4 +3,3 @@ salt.executors.direct_call .. automodule:: salt.executors.direct_call :members: - diff --git a/doc/ref/executors/all/salt.executors.docker.rst b/doc/ref/executors/all/salt.executors.docker.rst index 4c27f9ba322..5971e4777f8 100644 --- a/doc/ref/executors/all/salt.executors.docker.rst +++ b/doc/ref/executors/all/salt.executors.docker.rst @@ -3,4 +3,3 @@ salt.executors.docker .. automodule:: salt.executors.docker :members: - diff --git a/doc/ref/executors/all/salt.executors.splay.rst b/doc/ref/executors/all/salt.executors.splay.rst index 531505877bc..44ed2114f60 100644 --- a/doc/ref/executors/all/salt.executors.splay.rst +++ b/doc/ref/executors/all/salt.executors.splay.rst @@ -3,4 +3,3 @@ salt.executors.splay .. automodule:: salt.executors.splay :members: - diff --git a/doc/ref/executors/all/salt.executors.sudo.rst b/doc/ref/executors/all/salt.executors.sudo.rst index ff8e7133bb3..a19d95227ce 100644 --- a/doc/ref/executors/all/salt.executors.sudo.rst +++ b/doc/ref/executors/all/salt.executors.sudo.rst @@ -3,4 +3,3 @@ salt.executors.sudo .. automodule:: salt.executors.sudo :members: - diff --git a/doc/ref/executors/all/salt.executors.transactional_update.rst b/doc/ref/executors/all/salt.executors.transactional_update.rst index 17f00b2d276..10a4cb569b1 100644 --- a/doc/ref/executors/all/salt.executors.transactional_update.rst +++ b/doc/ref/executors/all/salt.executors.transactional_update.rst @@ -3,4 +3,3 @@ salt.executors.transactional_update module .. automodule:: salt.executors.transactional_update :members: - diff --git a/doc/ref/internals/exceptions.rst b/doc/ref/internals/exceptions.rst index 2a52951cdff..1e00c55fee0 100644 --- a/doc/ref/internals/exceptions.rst +++ b/doc/ref/internals/exceptions.rst @@ -10,4 +10,4 @@ display error messages appropriately. :toctree: :template: autosummary.rst.tmpl - salt.exceptions \ No newline at end of file + salt.exceptions diff --git a/doc/ref/internals/index.rst b/doc/ref/internals/index.rst index d5e05ee8d1e..646823213c8 100644 --- a/doc/ref/internals/index.rst +++ b/doc/ref/internals/index.rst @@ -10,4 +10,4 @@ Contents .. toctree:: :glob: - * \ No newline at end of file + * diff --git a/doc/ref/internals/salt.exceptions.rst b/doc/ref/internals/salt.exceptions.rst index f143c8e8c44..4c36146bef8 100644 --- a/doc/ref/internals/salt.exceptions.rst +++ b/doc/ref/internals/salt.exceptions.rst @@ -3,4 +3,4 @@ salt.exceptions =============== .. automodule:: salt.exceptions - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.aliases.rst b/doc/ref/modules/all/salt.modules.aliases.rst index c51d6cf1ad6..2f809cf6368 100644 --- a/doc/ref/modules/all/salt.modules.aliases.rst +++ b/doc/ref/modules/all/salt.modules.aliases.rst @@ -2,4 +2,4 @@ salt.modules.aliases ==================== .. automodule:: salt.modules.aliases - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.alternatives.rst b/doc/ref/modules/all/salt.modules.alternatives.rst index 317fc3f52aa..5d090edc9c2 100644 --- a/doc/ref/modules/all/salt.modules.alternatives.rst +++ b/doc/ref/modules/all/salt.modules.alternatives.rst @@ -2,4 +2,4 @@ salt.modules.alternatives ========================= .. automodule:: salt.modules.alternatives - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.apache.rst b/doc/ref/modules/all/salt.modules.apache.rst index 34b280614d7..90858f3b762 100644 --- a/doc/ref/modules/all/salt.modules.apache.rst +++ b/doc/ref/modules/all/salt.modules.apache.rst @@ -2,4 +2,4 @@ salt.modules.apache =================== .. automodule:: salt.modules.apache - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.aptpkg.rst b/doc/ref/modules/all/salt.modules.aptpkg.rst index 139ba124eaa..fa01450ca7e 100644 --- a/doc/ref/modules/all/salt.modules.aptpkg.rst +++ b/doc/ref/modules/all/salt.modules.aptpkg.rst @@ -3,4 +3,4 @@ salt.modules.aptpkg .. automodule:: salt.modules.aptpkg :members: - :exclude-members: available_version \ No newline at end of file + :exclude-members: available_version diff --git a/doc/ref/modules/all/salt.modules.archive.rst b/doc/ref/modules/all/salt.modules.archive.rst index 0d93708949a..d8271efc258 100644 --- a/doc/ref/modules/all/salt.modules.archive.rst +++ b/doc/ref/modules/all/salt.modules.archive.rst @@ -2,4 +2,4 @@ salt.modules.archive ==================== .. automodule:: salt.modules.archive - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.arista_pyeapi.rst b/doc/ref/modules/all/salt.modules.arista_pyeapi.rst index 03eb8f8bb62..b9699309d80 100644 --- a/doc/ref/modules/all/salt.modules.arista_pyeapi.rst +++ b/doc/ref/modules/all/salt.modules.arista_pyeapi.rst @@ -3,4 +3,3 @@ salt.modules.arista_pyeapi .. automodule:: salt.modules.arista_pyeapi :members: - diff --git a/doc/ref/modules/all/salt.modules.artifactory.rst b/doc/ref/modules/all/salt.modules.artifactory.rst index 274262be4d7..c6afce5409e 100644 --- a/doc/ref/modules/all/salt.modules.artifactory.rst +++ b/doc/ref/modules/all/salt.modules.artifactory.rst @@ -2,4 +2,4 @@ salt.modules.artifactory ======================== .. automodule:: salt.modules.artifactory - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.at.rst b/doc/ref/modules/all/salt.modules.at.rst index c555a9537f6..0004626a1ce 100644 --- a/doc/ref/modules/all/salt.modules.at.rst +++ b/doc/ref/modules/all/salt.modules.at.rst @@ -2,4 +2,4 @@ salt.modules.at =============== .. automodule:: salt.modules.at - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.augeas_cfg.rst b/doc/ref/modules/all/salt.modules.augeas_cfg.rst index 49f47659d57..a9b1219d1d6 100644 --- a/doc/ref/modules/all/salt.modules.augeas_cfg.rst +++ b/doc/ref/modules/all/salt.modules.augeas_cfg.rst @@ -2,4 +2,4 @@ salt.modules.augeas_cfg ======================= .. automodule:: salt.modules.augeas_cfg - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.aws_sqs.rst b/doc/ref/modules/all/salt.modules.aws_sqs.rst index b71e9bca69f..b6ed5b97d0a 100644 --- a/doc/ref/modules/all/salt.modules.aws_sqs.rst +++ b/doc/ref/modules/all/salt.modules.aws_sqs.rst @@ -2,4 +2,4 @@ salt.modules.aws_sqs ==================== .. automodule:: salt.modules.aws_sqs - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.azurearm_compute.rst b/doc/ref/modules/all/salt.modules.azurearm_compute.rst index e8ab1b8354d..f82507d2f99 100644 --- a/doc/ref/modules/all/salt.modules.azurearm_compute.rst +++ b/doc/ref/modules/all/salt.modules.azurearm_compute.rst @@ -2,4 +2,4 @@ salt.modules.azurearm_compute ============================= .. automodule:: salt.modules.azurearm_compute - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.azurearm_network.rst b/doc/ref/modules/all/salt.modules.azurearm_network.rst index 4d7def5f9c3..957649d3ea7 100644 --- a/doc/ref/modules/all/salt.modules.azurearm_network.rst +++ b/doc/ref/modules/all/salt.modules.azurearm_network.rst @@ -2,4 +2,4 @@ salt.modules.azurearm_network ============================= .. automodule:: salt.modules.azurearm_network - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.azurearm_resource.rst b/doc/ref/modules/all/salt.modules.azurearm_resource.rst index cff813af617..c020a588350 100644 --- a/doc/ref/modules/all/salt.modules.azurearm_resource.rst +++ b/doc/ref/modules/all/salt.modules.azurearm_resource.rst @@ -2,4 +2,4 @@ salt.modules.azurearm_resource ============================== .. automodule:: salt.modules.azurearm_resource - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.boto_asg.rst b/doc/ref/modules/all/salt.modules.boto_asg.rst index 864ef15bd2e..23ad5125d9b 100644 --- a/doc/ref/modules/all/salt.modules.boto_asg.rst +++ b/doc/ref/modules/all/salt.modules.boto_asg.rst @@ -2,4 +2,4 @@ salt.modules.boto_asg ===================== .. automodule:: salt.modules.boto_asg - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.boto_cloudwatch.rst b/doc/ref/modules/all/salt.modules.boto_cloudwatch.rst index 2bbe0056f31..3d5e9aef7ef 100644 --- a/doc/ref/modules/all/salt.modules.boto_cloudwatch.rst +++ b/doc/ref/modules/all/salt.modules.boto_cloudwatch.rst @@ -2,4 +2,4 @@ salt.modules.boto_cloudwatch ============================ .. automodule:: salt.modules.boto_cloudwatch - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.boto_dynamodb.rst b/doc/ref/modules/all/salt.modules.boto_dynamodb.rst index 9817dd316b5..f938f687e76 100644 --- a/doc/ref/modules/all/salt.modules.boto_dynamodb.rst +++ b/doc/ref/modules/all/salt.modules.boto_dynamodb.rst @@ -2,4 +2,4 @@ salt.modules.boto_dynamodb ========================== .. automodule:: salt.modules.boto_dynamodb - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.boto_elasticache.rst b/doc/ref/modules/all/salt.modules.boto_elasticache.rst index 6c1778db4d1..d62618d3b61 100644 --- a/doc/ref/modules/all/salt.modules.boto_elasticache.rst +++ b/doc/ref/modules/all/salt.modules.boto_elasticache.rst @@ -2,4 +2,4 @@ salt.modules.boto_elasticache ============================= .. automodule:: salt.modules.boto_elasticache - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.boto_elb.rst b/doc/ref/modules/all/salt.modules.boto_elb.rst index 2d001a435da..23542f60943 100644 --- a/doc/ref/modules/all/salt.modules.boto_elb.rst +++ b/doc/ref/modules/all/salt.modules.boto_elb.rst @@ -2,4 +2,4 @@ salt.modules.boto_elb ===================== .. automodule:: salt.modules.boto_elb - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.boto_iam.rst b/doc/ref/modules/all/salt.modules.boto_iam.rst index 1b6e2549469..91865fa1cc1 100644 --- a/doc/ref/modules/all/salt.modules.boto_iam.rst +++ b/doc/ref/modules/all/salt.modules.boto_iam.rst @@ -2,4 +2,4 @@ salt.modules.boto_iam ===================== .. automodule:: salt.modules.boto_iam - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.boto_kms.rst b/doc/ref/modules/all/salt.modules.boto_kms.rst index 207c7b0d5df..0a0a54caa48 100644 --- a/doc/ref/modules/all/salt.modules.boto_kms.rst +++ b/doc/ref/modules/all/salt.modules.boto_kms.rst @@ -2,4 +2,4 @@ salt.modules.boto_kms ===================== .. automodule:: salt.modules.boto_kms - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.boto_rds.rst b/doc/ref/modules/all/salt.modules.boto_rds.rst index 8f091d8d32f..7dc12243e8c 100644 --- a/doc/ref/modules/all/salt.modules.boto_rds.rst +++ b/doc/ref/modules/all/salt.modules.boto_rds.rst @@ -2,4 +2,4 @@ salt.modules.boto_rds ===================== .. automodule:: salt.modules.boto_rds - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.boto_route53.rst b/doc/ref/modules/all/salt.modules.boto_route53.rst index d83ce267d1b..30fbfff77b5 100644 --- a/doc/ref/modules/all/salt.modules.boto_route53.rst +++ b/doc/ref/modules/all/salt.modules.boto_route53.rst @@ -2,4 +2,4 @@ salt.modules.boto_route53 ========================= .. automodule:: salt.modules.boto_route53 - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.boto_secgroup.rst b/doc/ref/modules/all/salt.modules.boto_secgroup.rst index 422048681cf..1a12bf52de8 100644 --- a/doc/ref/modules/all/salt.modules.boto_secgroup.rst +++ b/doc/ref/modules/all/salt.modules.boto_secgroup.rst @@ -2,4 +2,4 @@ salt.modules.boto_secgroup ========================== .. automodule:: salt.modules.boto_secgroup - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.boto_sqs.rst b/doc/ref/modules/all/salt.modules.boto_sqs.rst index 3d347c85181..62119c9d522 100644 --- a/doc/ref/modules/all/salt.modules.boto_sqs.rst +++ b/doc/ref/modules/all/salt.modules.boto_sqs.rst @@ -2,4 +2,4 @@ salt.modules.boto_sqs ===================== .. automodule:: salt.modules.boto_sqs - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.bower.rst b/doc/ref/modules/all/salt.modules.bower.rst index 8bd43e930cd..4c9a3291660 100644 --- a/doc/ref/modules/all/salt.modules.bower.rst +++ b/doc/ref/modules/all/salt.modules.bower.rst @@ -2,4 +2,4 @@ salt.modules.bower ================== .. automodule:: salt.modules.bower - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.bridge.rst b/doc/ref/modules/all/salt.modules.bridge.rst index 5c917a25ebd..741eb4bb713 100644 --- a/doc/ref/modules/all/salt.modules.bridge.rst +++ b/doc/ref/modules/all/salt.modules.bridge.rst @@ -2,4 +2,4 @@ salt.modules.bridge =================== .. automodule:: salt.modules.bridge - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.bsd_shadow.rst b/doc/ref/modules/all/salt.modules.bsd_shadow.rst index 9790fd12498..0dfb2bdfb8d 100644 --- a/doc/ref/modules/all/salt.modules.bsd_shadow.rst +++ b/doc/ref/modules/all/salt.modules.bsd_shadow.rst @@ -2,4 +2,4 @@ salt.modules.bsd_shadow ======================= .. automodule:: salt.modules.bsd_shadow - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.cabal.rst b/doc/ref/modules/all/salt.modules.cabal.rst index 51adac652ce..f0527c9ef15 100644 --- a/doc/ref/modules/all/salt.modules.cabal.rst +++ b/doc/ref/modules/all/salt.modules.cabal.rst @@ -2,4 +2,4 @@ salt.modules.cabal ================== .. automodule:: salt.modules.cabal - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.cassandra_cql.rst b/doc/ref/modules/all/salt.modules.cassandra_cql.rst index 748cae3e774..9ab6a5ffebb 100644 --- a/doc/ref/modules/all/salt.modules.cassandra_cql.rst +++ b/doc/ref/modules/all/salt.modules.cassandra_cql.rst @@ -2,4 +2,4 @@ salt.modules.cassandra_cql ========================== .. automodule:: salt.modules.cassandra_cql - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.cassandra_mod.rst b/doc/ref/modules/all/salt.modules.cassandra_mod.rst index 86c186e0be6..68f64c0e313 100644 --- a/doc/ref/modules/all/salt.modules.cassandra_mod.rst +++ b/doc/ref/modules/all/salt.modules.cassandra_mod.rst @@ -2,4 +2,4 @@ salt.modules.cassandra_mod ========================== .. automodule:: salt.modules.cassandra_mod - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.chassis.rst b/doc/ref/modules/all/salt.modules.chassis.rst index e21ddedf8a2..560bec57228 100644 --- a/doc/ref/modules/all/salt.modules.chassis.rst +++ b/doc/ref/modules/all/salt.modules.chassis.rst @@ -2,4 +2,4 @@ salt.modules.chassis ==================== .. automodule:: salt.modules.chassis - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.chef.rst b/doc/ref/modules/all/salt.modules.chef.rst index 533b1f4ea43..af4c2a8c01c 100644 --- a/doc/ref/modules/all/salt.modules.chef.rst +++ b/doc/ref/modules/all/salt.modules.chef.rst @@ -2,4 +2,4 @@ salt.modules.chef ================= .. automodule:: salt.modules.chef - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.chocolatey.rst b/doc/ref/modules/all/salt.modules.chocolatey.rst index 75fa7b4f0af..1d49107ce12 100644 --- a/doc/ref/modules/all/salt.modules.chocolatey.rst +++ b/doc/ref/modules/all/salt.modules.chocolatey.rst @@ -2,4 +2,4 @@ salt.modules.chocolatey ======================= .. automodule:: salt.modules.chocolatey - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.ciscoconfparse_mod.rst b/doc/ref/modules/all/salt.modules.ciscoconfparse_mod.rst index ba26dd6642c..7b8a63027c7 100644 --- a/doc/ref/modules/all/salt.modules.ciscoconfparse_mod.rst +++ b/doc/ref/modules/all/salt.modules.ciscoconfparse_mod.rst @@ -3,4 +3,3 @@ salt.modules.ciscoconfparse_mod .. automodule:: salt.modules.ciscoconfparse_mod :members: - diff --git a/doc/ref/modules/all/salt.modules.cisconso.rst b/doc/ref/modules/all/salt.modules.cisconso.rst index 3230ec0b5bd..eda392c5501 100644 --- a/doc/ref/modules/all/salt.modules.cisconso.rst +++ b/doc/ref/modules/all/salt.modules.cisconso.rst @@ -1,6 +1,6 @@ -===================== -salt.modules.cisconso -===================== - -.. automodule:: salt.modules.cisconso - :members: \ No newline at end of file +===================== +salt.modules.cisconso +===================== + +.. automodule:: salt.modules.cisconso + :members: diff --git a/doc/ref/modules/all/salt.modules.cloud.rst b/doc/ref/modules/all/salt.modules.cloud.rst index 196539f97f2..377b550697f 100644 --- a/doc/ref/modules/all/salt.modules.cloud.rst +++ b/doc/ref/modules/all/salt.modules.cloud.rst @@ -2,4 +2,4 @@ salt.modules.cloud ================== .. automodule:: salt.modules.cloud - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.composer.rst b/doc/ref/modules/all/salt.modules.composer.rst index 44e3d97cf77..45205b23109 100644 --- a/doc/ref/modules/all/salt.modules.composer.rst +++ b/doc/ref/modules/all/salt.modules.composer.rst @@ -2,4 +2,4 @@ salt.modules.composer ===================== .. automodule:: salt.modules.composer - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.config.rst b/doc/ref/modules/all/salt.modules.config.rst index 34c7962c999..63097db2073 100644 --- a/doc/ref/modules/all/salt.modules.config.rst +++ b/doc/ref/modules/all/salt.modules.config.rst @@ -2,4 +2,4 @@ salt.modules.config =================== .. automodule:: salt.modules.config - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.container_resource.rst b/doc/ref/modules/all/salt.modules.container_resource.rst index 9b06f970c72..8ddb9b3c0e0 100644 --- a/doc/ref/modules/all/salt.modules.container_resource.rst +++ b/doc/ref/modules/all/salt.modules.container_resource.rst @@ -2,4 +2,4 @@ salt.modules.container_resource =============================== .. automodule:: salt.modules.container_resource - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.cp.rst b/doc/ref/modules/all/salt.modules.cp.rst index a07de23107d..9d90a1f2517 100644 --- a/doc/ref/modules/all/salt.modules.cp.rst +++ b/doc/ref/modules/all/salt.modules.cp.rst @@ -2,4 +2,4 @@ salt.modules.cp =============== .. automodule:: salt.modules.cp - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.cron.rst b/doc/ref/modules/all/salt.modules.cron.rst index 023658ce9d5..7cd88def4d7 100644 --- a/doc/ref/modules/all/salt.modules.cron.rst +++ b/doc/ref/modules/all/salt.modules.cron.rst @@ -2,4 +2,4 @@ salt.modules.cron ================= .. automodule:: salt.modules.cron - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.daemontools.rst b/doc/ref/modules/all/salt.modules.daemontools.rst index 123d0b4d775..e84b8287f49 100644 --- a/doc/ref/modules/all/salt.modules.daemontools.rst +++ b/doc/ref/modules/all/salt.modules.daemontools.rst @@ -2,4 +2,4 @@ salt.modules.daemontools ======================== .. automodule:: salt.modules.daemontools - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.data.rst b/doc/ref/modules/all/salt.modules.data.rst index 8071fa7b304..f2d279e1b91 100644 --- a/doc/ref/modules/all/salt.modules.data.rst +++ b/doc/ref/modules/all/salt.modules.data.rst @@ -2,4 +2,4 @@ salt.modules.data ================= .. automodule:: salt.modules.data - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.datadog_api.rst b/doc/ref/modules/all/salt.modules.datadog_api.rst index 64e731d72a1..7184c4701ba 100644 --- a/doc/ref/modules/all/salt.modules.datadog_api.rst +++ b/doc/ref/modules/all/salt.modules.datadog_api.rst @@ -2,4 +2,4 @@ salt.modules.datadog_api ======================== .. automodule:: salt.modules.datadog_api - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.ddns.rst b/doc/ref/modules/all/salt.modules.ddns.rst index f3d3ad34410..674bc0298a3 100644 --- a/doc/ref/modules/all/salt.modules.ddns.rst +++ b/doc/ref/modules/all/salt.modules.ddns.rst @@ -2,4 +2,4 @@ salt.modules.ddns ================= .. automodule:: salt.modules.ddns - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.deb_apache.rst b/doc/ref/modules/all/salt.modules.deb_apache.rst index 004127befbc..8fe0cafceb8 100644 --- a/doc/ref/modules/all/salt.modules.deb_apache.rst +++ b/doc/ref/modules/all/salt.modules.deb_apache.rst @@ -2,4 +2,4 @@ salt.modules.deb_apache ======================= .. automodule:: salt.modules.deb_apache - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.debconfmod.rst b/doc/ref/modules/all/salt.modules.debconfmod.rst index 587a07a798c..ac02da48965 100644 --- a/doc/ref/modules/all/salt.modules.debconfmod.rst +++ b/doc/ref/modules/all/salt.modules.debconfmod.rst @@ -2,4 +2,4 @@ salt.modules.debconfmod ======================= .. automodule:: salt.modules.debconfmod - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.debian_ip.rst b/doc/ref/modules/all/salt.modules.debian_ip.rst index 9147c0bff57..2cef085bc72 100644 --- a/doc/ref/modules/all/salt.modules.debian_ip.rst +++ b/doc/ref/modules/all/salt.modules.debian_ip.rst @@ -2,4 +2,4 @@ salt.modules.debian_ip ====================== .. automodule:: salt.modules.debian_ip - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.debian_service.rst b/doc/ref/modules/all/salt.modules.debian_service.rst index f8ea47cccfa..76114ee9d0a 100644 --- a/doc/ref/modules/all/salt.modules.debian_service.rst +++ b/doc/ref/modules/all/salt.modules.debian_service.rst @@ -2,4 +2,4 @@ salt.modules.debian_service =========================== .. automodule:: salt.modules.debian_service - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.defaults.rst b/doc/ref/modules/all/salt.modules.defaults.rst index 917b5cf31b8..8d7c73ecdca 100644 --- a/doc/ref/modules/all/salt.modules.defaults.rst +++ b/doc/ref/modules/all/salt.modules.defaults.rst @@ -2,4 +2,4 @@ salt.modules.defaults ===================== .. automodule:: salt.modules.defaults - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.dig.rst b/doc/ref/modules/all/salt.modules.dig.rst index 4255d08c07f..d753d23a0b4 100644 --- a/doc/ref/modules/all/salt.modules.dig.rst +++ b/doc/ref/modules/all/salt.modules.dig.rst @@ -3,4 +3,4 @@ salt.modules.dig .. automodule:: salt.modules.dig :members: - :exclude-members: a, aaaa, ns, spf, mx \ No newline at end of file + :exclude-members: a, aaaa, ns, spf, mx diff --git a/doc/ref/modules/all/salt.modules.disk.rst b/doc/ref/modules/all/salt.modules.disk.rst index 10d052c4b75..ddbf0a4a794 100644 --- a/doc/ref/modules/all/salt.modules.disk.rst +++ b/doc/ref/modules/all/salt.modules.disk.rst @@ -2,4 +2,4 @@ salt.modules.disk ================= .. automodule:: salt.modules.disk - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.djangomod.rst b/doc/ref/modules/all/salt.modules.djangomod.rst index a707bf13d34..b453a4fe475 100644 --- a/doc/ref/modules/all/salt.modules.djangomod.rst +++ b/doc/ref/modules/all/salt.modules.djangomod.rst @@ -2,4 +2,4 @@ salt.modules.djangomod ====================== .. automodule:: salt.modules.djangomod - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.dnsmasq.rst b/doc/ref/modules/all/salt.modules.dnsmasq.rst index c99455d8483..fe71cb918e4 100644 --- a/doc/ref/modules/all/salt.modules.dnsmasq.rst +++ b/doc/ref/modules/all/salt.modules.dnsmasq.rst @@ -2,4 +2,4 @@ salt.modules.dnsmasq ==================== .. automodule:: salt.modules.dnsmasq - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.dnsutil.rst b/doc/ref/modules/all/salt.modules.dnsutil.rst index 7a14d239cc0..43343ae285f 100644 --- a/doc/ref/modules/all/salt.modules.dnsutil.rst +++ b/doc/ref/modules/all/salt.modules.dnsutil.rst @@ -2,4 +2,4 @@ salt.modules.dnsutil ==================== .. automodule:: salt.modules.dnsutil - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.dracr.rst b/doc/ref/modules/all/salt.modules.dracr.rst index bc8ff9737ba..aaae59a9695 100644 --- a/doc/ref/modules/all/salt.modules.dracr.rst +++ b/doc/ref/modules/all/salt.modules.dracr.rst @@ -2,4 +2,4 @@ salt.modules.dracr ================== .. automodule:: salt.modules.dracr - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.eix.rst b/doc/ref/modules/all/salt.modules.eix.rst index e6d98eac35a..f3ce28211dc 100644 --- a/doc/ref/modules/all/salt.modules.eix.rst +++ b/doc/ref/modules/all/salt.modules.eix.rst @@ -2,4 +2,4 @@ salt.modules.eix ================ .. automodule:: salt.modules.eix - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.environ.rst b/doc/ref/modules/all/salt.modules.environ.rst index 552fcc7f796..a6be27b1ca2 100644 --- a/doc/ref/modules/all/salt.modules.environ.rst +++ b/doc/ref/modules/all/salt.modules.environ.rst @@ -2,4 +2,4 @@ salt.modules.environ ==================== .. automodule:: salt.modules.environ - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.eselect.rst b/doc/ref/modules/all/salt.modules.eselect.rst index 678d127ea35..8e850e2f1b6 100644 --- a/doc/ref/modules/all/salt.modules.eselect.rst +++ b/doc/ref/modules/all/salt.modules.eselect.rst @@ -2,4 +2,4 @@ salt.modules.eselect ==================== .. automodule:: salt.modules.eselect - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.esxi.rst b/doc/ref/modules/all/salt.modules.esxi.rst index f63798980ae..5c2cab0fabf 100644 --- a/doc/ref/modules/all/salt.modules.esxi.rst +++ b/doc/ref/modules/all/salt.modules.esxi.rst @@ -2,4 +2,4 @@ salt.modules.esxi ================= .. automodule:: salt.modules.esxi - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.etcd_mod.rst b/doc/ref/modules/all/salt.modules.etcd_mod.rst index a5919b8e491..e1f162eaf52 100644 --- a/doc/ref/modules/all/salt.modules.etcd_mod.rst +++ b/doc/ref/modules/all/salt.modules.etcd_mod.rst @@ -2,4 +2,4 @@ salt.modules.etcd_mod ===================== .. automodule:: salt.modules.etcd_mod - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.event.rst b/doc/ref/modules/all/salt.modules.event.rst index f4362672926..53504364928 100644 --- a/doc/ref/modules/all/salt.modules.event.rst +++ b/doc/ref/modules/all/salt.modules.event.rst @@ -2,4 +2,4 @@ salt.modules.event ================== .. automodule:: salt.modules.event - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.extfs.rst b/doc/ref/modules/all/salt.modules.extfs.rst index dd5267e206c..b909b84c260 100644 --- a/doc/ref/modules/all/salt.modules.extfs.rst +++ b/doc/ref/modules/all/salt.modules.extfs.rst @@ -2,4 +2,4 @@ salt.modules.extfs ================== .. automodule:: salt.modules.extfs - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.file.rst b/doc/ref/modules/all/salt.modules.file.rst index b02d7d807bf..fbc047293b5 100644 --- a/doc/ref/modules/all/salt.modules.file.rst +++ b/doc/ref/modules/all/salt.modules.file.rst @@ -3,4 +3,4 @@ salt.modules.file .. automodule:: salt.modules.file :members: - :exclude-members: list_backup, remove_backup \ No newline at end of file + :exclude-members: list_backup, remove_backup diff --git a/doc/ref/modules/all/salt.modules.freebsd_sysctl.rst b/doc/ref/modules/all/salt.modules.freebsd_sysctl.rst index ab7f6260be6..5e837a97515 100644 --- a/doc/ref/modules/all/salt.modules.freebsd_sysctl.rst +++ b/doc/ref/modules/all/salt.modules.freebsd_sysctl.rst @@ -2,4 +2,4 @@ salt.modules.freebsd_sysctl =========================== .. automodule:: salt.modules.freebsd_sysctl - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.freebsdjail.rst b/doc/ref/modules/all/salt.modules.freebsdjail.rst index 83783e337bd..1b496709e28 100644 --- a/doc/ref/modules/all/salt.modules.freebsdjail.rst +++ b/doc/ref/modules/all/salt.modules.freebsdjail.rst @@ -2,4 +2,4 @@ salt.modules.freebsdjail ======================== .. automodule:: salt.modules.freebsdjail - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.freebsdkmod.rst b/doc/ref/modules/all/salt.modules.freebsdkmod.rst index 1fd0ce51917..17df5da0e29 100644 --- a/doc/ref/modules/all/salt.modules.freebsdkmod.rst +++ b/doc/ref/modules/all/salt.modules.freebsdkmod.rst @@ -2,4 +2,4 @@ salt.modules.freebsdkmod ======================== .. automodule:: salt.modules.freebsdkmod - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.freebsdpkg.rst b/doc/ref/modules/all/salt.modules.freebsdpkg.rst index 747deac814e..df76d454671 100644 --- a/doc/ref/modules/all/salt.modules.freebsdpkg.rst +++ b/doc/ref/modules/all/salt.modules.freebsdpkg.rst @@ -3,4 +3,4 @@ salt.modules.freebsdpkg .. automodule:: salt.modules.freebsdpkg :members: - :exclude-members: available_version, delete, purge \ No newline at end of file + :exclude-members: available_version, delete, purge diff --git a/doc/ref/modules/all/salt.modules.freebsdports.rst b/doc/ref/modules/all/salt.modules.freebsdports.rst index 021823520dc..571a9626bbf 100644 --- a/doc/ref/modules/all/salt.modules.freebsdports.rst +++ b/doc/ref/modules/all/salt.modules.freebsdports.rst @@ -2,4 +2,4 @@ salt.modules.freebsdports ========================= .. automodule:: salt.modules.freebsdports - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.freebsdservice.rst b/doc/ref/modules/all/salt.modules.freebsdservice.rst index 02762997f3d..f608b2def22 100644 --- a/doc/ref/modules/all/salt.modules.freebsdservice.rst +++ b/doc/ref/modules/all/salt.modules.freebsdservice.rst @@ -2,4 +2,4 @@ salt.modules.freebsdservice =========================== .. automodule:: salt.modules.freebsdservice - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.gem.rst b/doc/ref/modules/all/salt.modules.gem.rst index c7f01af027d..faaed3330c2 100644 --- a/doc/ref/modules/all/salt.modules.gem.rst +++ b/doc/ref/modules/all/salt.modules.gem.rst @@ -2,4 +2,4 @@ salt.modules.gem ================ .. automodule:: salt.modules.gem - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.genesis.rst b/doc/ref/modules/all/salt.modules.genesis.rst index 860fceb1289..6a849a6a6ef 100644 --- a/doc/ref/modules/all/salt.modules.genesis.rst +++ b/doc/ref/modules/all/salt.modules.genesis.rst @@ -2,4 +2,4 @@ salt.modules.genesis ==================== .. automodule:: salt.modules.genesis - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.gentoo_service.rst b/doc/ref/modules/all/salt.modules.gentoo_service.rst index b35e1e55cf4..c59a79e53c1 100644 --- a/doc/ref/modules/all/salt.modules.gentoo_service.rst +++ b/doc/ref/modules/all/salt.modules.gentoo_service.rst @@ -2,4 +2,4 @@ salt.modules.gentoo_service =========================== .. automodule:: salt.modules.gentoo_service - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.gentoolkitmod.rst b/doc/ref/modules/all/salt.modules.gentoolkitmod.rst index 5b4e8b858d7..50c4a173341 100644 --- a/doc/ref/modules/all/salt.modules.gentoolkitmod.rst +++ b/doc/ref/modules/all/salt.modules.gentoolkitmod.rst @@ -2,4 +2,4 @@ salt.modules.gentoolkitmod ========================== .. automodule:: salt.modules.gentoolkitmod - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.glusterfs.rst b/doc/ref/modules/all/salt.modules.glusterfs.rst index 49acbbe9696..29ca56661bf 100644 --- a/doc/ref/modules/all/salt.modules.glusterfs.rst +++ b/doc/ref/modules/all/salt.modules.glusterfs.rst @@ -2,4 +2,4 @@ salt.modules.glusterfs ====================== .. automodule:: salt.modules.glusterfs - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.gnomedesktop.rst b/doc/ref/modules/all/salt.modules.gnomedesktop.rst index 4d36d2457e6..cf2388aa34d 100644 --- a/doc/ref/modules/all/salt.modules.gnomedesktop.rst +++ b/doc/ref/modules/all/salt.modules.gnomedesktop.rst @@ -2,4 +2,4 @@ salt.modules.gnomedesktop ========================= .. automodule:: salt.modules.gnomedesktop - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.grains.rst b/doc/ref/modules/all/salt.modules.grains.rst index 36d1a36c4bf..645d5b92328 100644 --- a/doc/ref/modules/all/salt.modules.grains.rst +++ b/doc/ref/modules/all/salt.modules.grains.rst @@ -2,4 +2,4 @@ salt.modules.grains =================== .. automodule:: salt.modules.grains - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.groupadd.rst b/doc/ref/modules/all/salt.modules.groupadd.rst index e69d642aec7..e3bff806aee 100644 --- a/doc/ref/modules/all/salt.modules.groupadd.rst +++ b/doc/ref/modules/all/salt.modules.groupadd.rst @@ -2,4 +2,4 @@ salt.modules.groupadd ===================== .. automodule:: salt.modules.groupadd - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.grub_legacy.rst b/doc/ref/modules/all/salt.modules.grub_legacy.rst index d85e87a2947..71a0f77d39e 100644 --- a/doc/ref/modules/all/salt.modules.grub_legacy.rst +++ b/doc/ref/modules/all/salt.modules.grub_legacy.rst @@ -2,4 +2,4 @@ salt.modules.grub_legacy ======================== .. automodule:: salt.modules.grub_legacy - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.guestfs.rst b/doc/ref/modules/all/salt.modules.guestfs.rst index 2c8681fa4f1..16995452ba0 100644 --- a/doc/ref/modules/all/salt.modules.guestfs.rst +++ b/doc/ref/modules/all/salt.modules.guestfs.rst @@ -2,4 +2,4 @@ salt.modules.guestfs ==================== .. automodule:: salt.modules.guestfs - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.hadoop.rst b/doc/ref/modules/all/salt.modules.hadoop.rst index d57d4d5db55..9589a658b8a 100644 --- a/doc/ref/modules/all/salt.modules.hadoop.rst +++ b/doc/ref/modules/all/salt.modules.hadoop.rst @@ -2,4 +2,4 @@ salt.modules.hadoop =================== .. automodule:: salt.modules.hadoop - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.haproxyconn.rst b/doc/ref/modules/all/salt.modules.haproxyconn.rst index a2f6b789134..8d2ebafd8d1 100644 --- a/doc/ref/modules/all/salt.modules.haproxyconn.rst +++ b/doc/ref/modules/all/salt.modules.haproxyconn.rst @@ -2,4 +2,4 @@ salt.modules.haproxyconn ======================== .. automodule:: salt.modules.haproxyconn - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.hashutil.rst b/doc/ref/modules/all/salt.modules.hashutil.rst index bd2b8a4d904..5a1ce0fe28c 100644 --- a/doc/ref/modules/all/salt.modules.hashutil.rst +++ b/doc/ref/modules/all/salt.modules.hashutil.rst @@ -2,4 +2,4 @@ salt.modules.hashutil ===================== .. automodule:: salt.modules.hashutil - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.hg.rst b/doc/ref/modules/all/salt.modules.hg.rst index dfd07787af3..d9468446f0f 100644 --- a/doc/ref/modules/all/salt.modules.hg.rst +++ b/doc/ref/modules/all/salt.modules.hg.rst @@ -2,4 +2,4 @@ salt.modules.hg =============== .. automodule:: salt.modules.hg - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.hosts.rst b/doc/ref/modules/all/salt.modules.hosts.rst index dc065b1c17c..c2465ae698c 100644 --- a/doc/ref/modules/all/salt.modules.hosts.rst +++ b/doc/ref/modules/all/salt.modules.hosts.rst @@ -2,4 +2,4 @@ salt.modules.hosts ================== .. automodule:: salt.modules.hosts - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.incron.rst b/doc/ref/modules/all/salt.modules.incron.rst index 8877c52dc31..34702006472 100644 --- a/doc/ref/modules/all/salt.modules.incron.rst +++ b/doc/ref/modules/all/salt.modules.incron.rst @@ -2,4 +2,4 @@ salt.modules.incron =================== .. automodule:: salt.modules.incron - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.ini_manage.rst b/doc/ref/modules/all/salt.modules.ini_manage.rst index 520dedf9b28..b9b2cee3e91 100644 --- a/doc/ref/modules/all/salt.modules.ini_manage.rst +++ b/doc/ref/modules/all/salt.modules.ini_manage.rst @@ -2,4 +2,4 @@ salt.modules.ini_manage ======================= .. automodule:: salt.modules.ini_manage - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.introspect.rst b/doc/ref/modules/all/salt.modules.introspect.rst index 0c69ddc97f6..fa740ac00d3 100644 --- a/doc/ref/modules/all/salt.modules.introspect.rst +++ b/doc/ref/modules/all/salt.modules.introspect.rst @@ -2,4 +2,4 @@ salt.modules.introspect ======================= .. automodule:: salt.modules.introspect - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.iosconfig.rst b/doc/ref/modules/all/salt.modules.iosconfig.rst index 623df4fa1b5..8c753101dc1 100644 --- a/doc/ref/modules/all/salt.modules.iosconfig.rst +++ b/doc/ref/modules/all/salt.modules.iosconfig.rst @@ -3,4 +3,3 @@ salt.modules.iosconfig .. automodule:: salt.modules.iosconfig :members: - diff --git a/doc/ref/modules/all/salt.modules.ipset.rst b/doc/ref/modules/all/salt.modules.ipset.rst index 63f0a96073c..9fb0c1f6cfc 100644 --- a/doc/ref/modules/all/salt.modules.ipset.rst +++ b/doc/ref/modules/all/salt.modules.ipset.rst @@ -2,4 +2,4 @@ salt.modules.ipset ================== .. automodule:: salt.modules.ipset - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.iptables.rst b/doc/ref/modules/all/salt.modules.iptables.rst index 27eac2991b5..618c75d84e4 100644 --- a/doc/ref/modules/all/salt.modules.iptables.rst +++ b/doc/ref/modules/all/salt.modules.iptables.rst @@ -2,4 +2,4 @@ salt.modules.iptables ===================== .. automodule:: salt.modules.iptables - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.jboss7.rst b/doc/ref/modules/all/salt.modules.jboss7.rst index 005495686a6..10a2a6b1604 100644 --- a/doc/ref/modules/all/salt.modules.jboss7.rst +++ b/doc/ref/modules/all/salt.modules.jboss7.rst @@ -2,4 +2,4 @@ salt.modules.jboss7 =================== .. automodule:: salt.modules.jboss7 - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.jboss7_cli.rst b/doc/ref/modules/all/salt.modules.jboss7_cli.rst index 4ea9ae2db69..e0bc98bc720 100644 --- a/doc/ref/modules/all/salt.modules.jboss7_cli.rst +++ b/doc/ref/modules/all/salt.modules.jboss7_cli.rst @@ -2,4 +2,4 @@ salt.modules.jboss7_cli ======================= .. automodule:: salt.modules.jboss7_cli - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.jira_mod.rst b/doc/ref/modules/all/salt.modules.jira_mod.rst index 5aa445e59cc..f7ab4c358c8 100644 --- a/doc/ref/modules/all/salt.modules.jira_mod.rst +++ b/doc/ref/modules/all/salt.modules.jira_mod.rst @@ -3,4 +3,3 @@ salt.modules.jira_mod .. automodule:: salt.modules.jira_mod :members: - diff --git a/doc/ref/modules/all/salt.modules.junos.rst b/doc/ref/modules/all/salt.modules.junos.rst index d6d4c813f2e..5acafb5d8ad 100644 --- a/doc/ref/modules/all/salt.modules.junos.rst +++ b/doc/ref/modules/all/salt.modules.junos.rst @@ -2,4 +2,4 @@ salt.modules.junos ================== .. automodule:: salt.modules.junos - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.kerberos.rst b/doc/ref/modules/all/salt.modules.kerberos.rst index 105af7b8f79..6ecc59cbc7b 100644 --- a/doc/ref/modules/all/salt.modules.kerberos.rst +++ b/doc/ref/modules/all/salt.modules.kerberos.rst @@ -2,4 +2,4 @@ salt.modules.kerberos ===================== .. automodule:: salt.modules.kerberos - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.kernelpkg_linux_apt.rst b/doc/ref/modules/all/salt.modules.kernelpkg_linux_apt.rst index 0f7bb20faa0..bd5990012b2 100644 --- a/doc/ref/modules/all/salt.modules.kernelpkg_linux_apt.rst +++ b/doc/ref/modules/all/salt.modules.kernelpkg_linux_apt.rst @@ -2,4 +2,4 @@ salt.modules.kernelpkg_linux_apt ================================ .. automodule:: salt.modules.kernelpkg_linux_apt - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.kernelpkg_linux_yum.rst b/doc/ref/modules/all/salt.modules.kernelpkg_linux_yum.rst index 9f5a108bd2d..aadb0990a2a 100644 --- a/doc/ref/modules/all/salt.modules.kernelpkg_linux_yum.rst +++ b/doc/ref/modules/all/salt.modules.kernelpkg_linux_yum.rst @@ -2,4 +2,4 @@ salt.modules.kernelpkg_linux_yum ================================ .. automodule:: salt.modules.kernelpkg_linux_yum - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.key.rst b/doc/ref/modules/all/salt.modules.key.rst index a148b7da0be..7ad4f1919cf 100644 --- a/doc/ref/modules/all/salt.modules.key.rst +++ b/doc/ref/modules/all/salt.modules.key.rst @@ -2,4 +2,4 @@ salt.modules.key ================ .. automodule:: salt.modules.key - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.keyboard.rst b/doc/ref/modules/all/salt.modules.keyboard.rst index 4ec564fa72a..624d98c2331 100644 --- a/doc/ref/modules/all/salt.modules.keyboard.rst +++ b/doc/ref/modules/all/salt.modules.keyboard.rst @@ -2,4 +2,4 @@ salt.modules.keyboard ===================== .. automodule:: salt.modules.keyboard - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.keystone.rst b/doc/ref/modules/all/salt.modules.keystone.rst index 11e1b83fc84..b2374ecb2bb 100644 --- a/doc/ref/modules/all/salt.modules.keystone.rst +++ b/doc/ref/modules/all/salt.modules.keystone.rst @@ -2,4 +2,4 @@ salt.modules.keystone ===================== .. automodule:: salt.modules.keystone - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.keystore.rst b/doc/ref/modules/all/salt.modules.keystore.rst index efbcf8b1614..d66ce25ffa3 100644 --- a/doc/ref/modules/all/salt.modules.keystore.rst +++ b/doc/ref/modules/all/salt.modules.keystore.rst @@ -2,4 +2,4 @@ salt.modules.keystore ===================== .. automodule:: salt.modules.keystore - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.kmod.rst b/doc/ref/modules/all/salt.modules.kmod.rst index ac41f0863c1..588d614d7e0 100644 --- a/doc/ref/modules/all/salt.modules.kmod.rst +++ b/doc/ref/modules/all/salt.modules.kmod.rst @@ -2,4 +2,4 @@ salt.modules.kmod ================= .. automodule:: salt.modules.kmod - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.layman.rst b/doc/ref/modules/all/salt.modules.layman.rst index 82929b61345..97771f135b9 100644 --- a/doc/ref/modules/all/salt.modules.layman.rst +++ b/doc/ref/modules/all/salt.modules.layman.rst @@ -2,4 +2,4 @@ salt.modules.layman =================== .. automodule:: salt.modules.layman - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.ldapmod.rst b/doc/ref/modules/all/salt.modules.ldapmod.rst index 445135aee93..5767353fbf7 100644 --- a/doc/ref/modules/all/salt.modules.ldapmod.rst +++ b/doc/ref/modules/all/salt.modules.ldapmod.rst @@ -2,4 +2,4 @@ salt.modules.ldapmod ==================== .. automodule:: salt.modules.ldapmod - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.libcloud_loadbalancer.rst b/doc/ref/modules/all/salt.modules.libcloud_loadbalancer.rst index 6fce10db9ae..7955a691d93 100644 --- a/doc/ref/modules/all/salt.modules.libcloud_loadbalancer.rst +++ b/doc/ref/modules/all/salt.modules.libcloud_loadbalancer.rst @@ -2,4 +2,4 @@ salt.modules.libcloud_loadbalancer ================================== .. automodule:: salt.modules.libcloud_loadbalancer - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.linux_acl.rst b/doc/ref/modules/all/salt.modules.linux_acl.rst index 00e94e7de9d..3d5e19b9f8e 100644 --- a/doc/ref/modules/all/salt.modules.linux_acl.rst +++ b/doc/ref/modules/all/salt.modules.linux_acl.rst @@ -2,4 +2,4 @@ salt.modules.linux_acl ====================== .. automodule:: salt.modules.linux_acl - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.linux_lvm.rst b/doc/ref/modules/all/salt.modules.linux_lvm.rst index ea28c7dca84..c1b0a83b8c6 100644 --- a/doc/ref/modules/all/salt.modules.linux_lvm.rst +++ b/doc/ref/modules/all/salt.modules.linux_lvm.rst @@ -2,4 +2,4 @@ salt.modules.linux_lvm ====================== .. automodule:: salt.modules.linux_lvm - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.linux_sysctl.rst b/doc/ref/modules/all/salt.modules.linux_sysctl.rst index 81665f08216..b3cb737af3b 100644 --- a/doc/ref/modules/all/salt.modules.linux_sysctl.rst +++ b/doc/ref/modules/all/salt.modules.linux_sysctl.rst @@ -2,4 +2,4 @@ salt.modules.linux_sysctl ========================= .. automodule:: salt.modules.linux_sysctl - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.localemod.rst b/doc/ref/modules/all/salt.modules.localemod.rst index 223fedbc9b5..e8dcb3839b2 100644 --- a/doc/ref/modules/all/salt.modules.localemod.rst +++ b/doc/ref/modules/all/salt.modules.localemod.rst @@ -2,4 +2,4 @@ salt.modules.localemod ====================== .. automodule:: salt.modules.localemod - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.locate.rst b/doc/ref/modules/all/salt.modules.locate.rst index b47a1ad1a6c..83793ef1776 100644 --- a/doc/ref/modules/all/salt.modules.locate.rst +++ b/doc/ref/modules/all/salt.modules.locate.rst @@ -2,4 +2,4 @@ salt.modules.locate =================== .. automodule:: salt.modules.locate - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.logadm.rst b/doc/ref/modules/all/salt.modules.logadm.rst index e1881569671..da60e638cef 100644 --- a/doc/ref/modules/all/salt.modules.logadm.rst +++ b/doc/ref/modules/all/salt.modules.logadm.rst @@ -2,4 +2,4 @@ salt.modules.logadm =================== .. automodule:: salt.modules.logadm - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.logrotate.rst b/doc/ref/modules/all/salt.modules.logrotate.rst index 51323868a12..9f3d07fbff3 100644 --- a/doc/ref/modules/all/salt.modules.logrotate.rst +++ b/doc/ref/modules/all/salt.modules.logrotate.rst @@ -2,4 +2,4 @@ salt.modules.logrotate ====================== .. automodule:: salt.modules.logrotate - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.lvs.rst b/doc/ref/modules/all/salt.modules.lvs.rst index 692b426fcdf..338f5357962 100644 --- a/doc/ref/modules/all/salt.modules.lvs.rst +++ b/doc/ref/modules/all/salt.modules.lvs.rst @@ -2,4 +2,4 @@ salt.modules.lvs ================ .. automodule:: salt.modules.lvs - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.lxd.rst b/doc/ref/modules/all/salt.modules.lxd.rst index 23884a55769..275369fd4cb 100644 --- a/doc/ref/modules/all/salt.modules.lxd.rst +++ b/doc/ref/modules/all/salt.modules.lxd.rst @@ -2,4 +2,4 @@ salt.modules.lxd ================ .. automodule:: salt.modules.lxd - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.mac_group.rst b/doc/ref/modules/all/salt.modules.mac_group.rst index ed521a9ece1..f14fd489248 100644 --- a/doc/ref/modules/all/salt.modules.mac_group.rst +++ b/doc/ref/modules/all/salt.modules.mac_group.rst @@ -2,4 +2,4 @@ salt.modules.mac_group ====================== .. automodule:: salt.modules.mac_group - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.mac_user.rst b/doc/ref/modules/all/salt.modules.mac_user.rst index 441904f733c..3fab2ae3979 100644 --- a/doc/ref/modules/all/salt.modules.mac_user.rst +++ b/doc/ref/modules/all/salt.modules.mac_user.rst @@ -2,4 +2,4 @@ salt.modules.mac_user ===================== .. automodule:: salt.modules.mac_user - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.makeconf.rst b/doc/ref/modules/all/salt.modules.makeconf.rst index dca1cb34388..c9733af347e 100644 --- a/doc/ref/modules/all/salt.modules.makeconf.rst +++ b/doc/ref/modules/all/salt.modules.makeconf.rst @@ -2,4 +2,4 @@ salt.modules.makeconf ===================== .. automodule:: salt.modules.makeconf - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.match.rst b/doc/ref/modules/all/salt.modules.match.rst index a55727bb729..cb3b438a618 100644 --- a/doc/ref/modules/all/salt.modules.match.rst +++ b/doc/ref/modules/all/salt.modules.match.rst @@ -2,4 +2,4 @@ salt.modules.match ================== .. automodule:: salt.modules.match - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.memcached.rst b/doc/ref/modules/all/salt.modules.memcached.rst index ebc316c7d3f..3a5dda1a2d0 100644 --- a/doc/ref/modules/all/salt.modules.memcached.rst +++ b/doc/ref/modules/all/salt.modules.memcached.rst @@ -3,4 +3,4 @@ salt.modules.memcached .. automodule:: salt.modules.memcached :members: - :exclude-members: incr, decr \ No newline at end of file + :exclude-members: incr, decr diff --git a/doc/ref/modules/all/salt.modules.mine.rst b/doc/ref/modules/all/salt.modules.mine.rst index 99d5c3631a7..936cfabf4e9 100644 --- a/doc/ref/modules/all/salt.modules.mine.rst +++ b/doc/ref/modules/all/salt.modules.mine.rst @@ -2,4 +2,4 @@ salt.modules.mine ================= .. automodule:: salt.modules.mine - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.mod_random.rst b/doc/ref/modules/all/salt.modules.mod_random.rst index 06f9057396b..18e7fca1cee 100644 --- a/doc/ref/modules/all/salt.modules.mod_random.rst +++ b/doc/ref/modules/all/salt.modules.mod_random.rst @@ -2,4 +2,4 @@ salt.modules.mod_random ======================= .. automodule:: salt.modules.mod_random - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.modjk.rst b/doc/ref/modules/all/salt.modules.modjk.rst index 76932460640..a13f4b97943 100644 --- a/doc/ref/modules/all/salt.modules.modjk.rst +++ b/doc/ref/modules/all/salt.modules.modjk.rst @@ -2,4 +2,4 @@ salt.modules.modjk ================== .. automodule:: salt.modules.modjk - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.mongodb.rst b/doc/ref/modules/all/salt.modules.mongodb.rst index a68667790e4..3b71403ea03 100644 --- a/doc/ref/modules/all/salt.modules.mongodb.rst +++ b/doc/ref/modules/all/salt.modules.mongodb.rst @@ -2,4 +2,4 @@ salt.modules.mongodb ==================== .. automodule:: salt.modules.mongodb - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.monit.rst b/doc/ref/modules/all/salt.modules.monit.rst index 40e3b511bfa..f3c75f6639b 100644 --- a/doc/ref/modules/all/salt.modules.monit.rst +++ b/doc/ref/modules/all/salt.modules.monit.rst @@ -2,4 +2,4 @@ salt.modules.monit ================== .. automodule:: salt.modules.monit - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.moosefs.rst b/doc/ref/modules/all/salt.modules.moosefs.rst index 2163b4ab182..523b9fba1b8 100644 --- a/doc/ref/modules/all/salt.modules.moosefs.rst +++ b/doc/ref/modules/all/salt.modules.moosefs.rst @@ -2,4 +2,4 @@ salt.modules.moosefs ==================== .. automodule:: salt.modules.moosefs - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.mount.rst b/doc/ref/modules/all/salt.modules.mount.rst index 1b37ff5f9cc..ab2d428d0bd 100644 --- a/doc/ref/modules/all/salt.modules.mount.rst +++ b/doc/ref/modules/all/salt.modules.mount.rst @@ -2,4 +2,4 @@ salt.modules.mount ================== .. automodule:: salt.modules.mount - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.mssql.rst b/doc/ref/modules/all/salt.modules.mssql.rst index 0f6e6f6d168..68a0f3c73cf 100644 --- a/doc/ref/modules/all/salt.modules.mssql.rst +++ b/doc/ref/modules/all/salt.modules.mssql.rst @@ -2,4 +2,4 @@ salt.modules.mssql ================== .. automodule:: salt.modules.mssql - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.munin.rst b/doc/ref/modules/all/salt.modules.munin.rst index f58d73c6120..084d2ce8180 100644 --- a/doc/ref/modules/all/salt.modules.munin.rst +++ b/doc/ref/modules/all/salt.modules.munin.rst @@ -2,4 +2,4 @@ salt.modules.munin ================== .. automodule:: salt.modules.munin - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.mysql.rst b/doc/ref/modules/all/salt.modules.mysql.rst index 8108233f051..07f9c9cdca8 100644 --- a/doc/ref/modules/all/salt.modules.mysql.rst +++ b/doc/ref/modules/all/salt.modules.mysql.rst @@ -2,4 +2,4 @@ salt.modules.mysql ================== .. automodule:: salt.modules.mysql - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.nacl.rst b/doc/ref/modules/all/salt.modules.nacl.rst index 214d8a87483..fff34957ded 100644 --- a/doc/ref/modules/all/salt.modules.nacl.rst +++ b/doc/ref/modules/all/salt.modules.nacl.rst @@ -2,4 +2,4 @@ salt.modules.nacl ================= .. automodule:: salt.modules.nacl - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.nagios.rst b/doc/ref/modules/all/salt.modules.nagios.rst index fe434c70a8e..982100cf24b 100644 --- a/doc/ref/modules/all/salt.modules.nagios.rst +++ b/doc/ref/modules/all/salt.modules.nagios.rst @@ -2,4 +2,4 @@ salt.modules.nagios =================== .. automodule:: salt.modules.nagios - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.nagios_rpc.rst b/doc/ref/modules/all/salt.modules.nagios_rpc.rst index 5e79b3c3fbf..738a6d0a778 100644 --- a/doc/ref/modules/all/salt.modules.nagios_rpc.rst +++ b/doc/ref/modules/all/salt.modules.nagios_rpc.rst @@ -2,4 +2,4 @@ salt.modules.nagios_rpc ======================= .. automodule:: salt.modules.nagios_rpc - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.napalm_bgp.rst b/doc/ref/modules/all/salt.modules.napalm_bgp.rst index d0ba73996db..48315ec405a 100644 --- a/doc/ref/modules/all/salt.modules.napalm_bgp.rst +++ b/doc/ref/modules/all/salt.modules.napalm_bgp.rst @@ -3,4 +3,3 @@ salt.modules.napalm_bgp .. automodule:: salt.modules.napalm_bgp :members: - diff --git a/doc/ref/modules/all/salt.modules.napalm_formula.rst b/doc/ref/modules/all/salt.modules.napalm_formula.rst index de7af41345b..11c888e1e58 100644 --- a/doc/ref/modules/all/salt.modules.napalm_formula.rst +++ b/doc/ref/modules/all/salt.modules.napalm_formula.rst @@ -3,4 +3,3 @@ salt.modules.napalm_formula .. automodule:: salt.modules.napalm_formula :members: - diff --git a/doc/ref/modules/all/salt.modules.napalm_mod.rst b/doc/ref/modules/all/salt.modules.napalm_mod.rst index 4b00b87f615..4d8b57c89b8 100644 --- a/doc/ref/modules/all/salt.modules.napalm_mod.rst +++ b/doc/ref/modules/all/salt.modules.napalm_mod.rst @@ -3,4 +3,3 @@ salt.modules.napalm_mod .. automodule:: salt.modules.napalm_mod :members: - diff --git a/doc/ref/modules/all/salt.modules.napalm_netacl.rst b/doc/ref/modules/all/salt.modules.napalm_netacl.rst index 03f4127f5e9..852e27ba849 100644 --- a/doc/ref/modules/all/salt.modules.napalm_netacl.rst +++ b/doc/ref/modules/all/salt.modules.napalm_netacl.rst @@ -3,4 +3,3 @@ salt.modules.napalm_netacl .. automodule:: salt.modules.napalm_netacl :members: - diff --git a/doc/ref/modules/all/salt.modules.napalm_ntp.rst b/doc/ref/modules/all/salt.modules.napalm_ntp.rst index fe94f26b4b7..72ff69b03a2 100644 --- a/doc/ref/modules/all/salt.modules.napalm_ntp.rst +++ b/doc/ref/modules/all/salt.modules.napalm_ntp.rst @@ -3,4 +3,3 @@ salt.modules.napalm_ntp .. automodule:: salt.modules.napalm_ntp :members: - diff --git a/doc/ref/modules/all/salt.modules.napalm_route.rst b/doc/ref/modules/all/salt.modules.napalm_route.rst index 7cc343a0d16..5b0cfe73e41 100644 --- a/doc/ref/modules/all/salt.modules.napalm_route.rst +++ b/doc/ref/modules/all/salt.modules.napalm_route.rst @@ -4,4 +4,3 @@ salt.modules.napalm_route .. automodule:: salt.modules.napalm_route :members: :undoc-members: - diff --git a/doc/ref/modules/all/salt.modules.napalm_snmp.rst b/doc/ref/modules/all/salt.modules.napalm_snmp.rst index 422a491cdda..6e500bf6c19 100644 --- a/doc/ref/modules/all/salt.modules.napalm_snmp.rst +++ b/doc/ref/modules/all/salt.modules.napalm_snmp.rst @@ -4,4 +4,3 @@ salt.modules.napalm_snmp .. automodule:: salt.modules.napalm_snmp :members: :undoc-members: - diff --git a/doc/ref/modules/all/salt.modules.napalm_users.rst b/doc/ref/modules/all/salt.modules.napalm_users.rst index e7cfe107c43..423549a627f 100644 --- a/doc/ref/modules/all/salt.modules.napalm_users.rst +++ b/doc/ref/modules/all/salt.modules.napalm_users.rst @@ -4,4 +4,3 @@ salt.modules.napalm_users .. automodule:: salt.modules.napalm_users :members: :undoc-members: - diff --git a/doc/ref/modules/all/salt.modules.netaddress.rst b/doc/ref/modules/all/salt.modules.netaddress.rst index aa4082172cf..f0b34b008e4 100644 --- a/doc/ref/modules/all/salt.modules.netaddress.rst +++ b/doc/ref/modules/all/salt.modules.netaddress.rst @@ -2,4 +2,4 @@ salt.modules.netaddress ======================= .. automodule:: salt.modules.netaddress - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.netbox.rst b/doc/ref/modules/all/salt.modules.netbox.rst index 809dc52f0b1..b00de0be6d0 100644 --- a/doc/ref/modules/all/salt.modules.netbox.rst +++ b/doc/ref/modules/all/salt.modules.netbox.rst @@ -3,4 +3,3 @@ salt.modules.netbox .. automodule:: salt.modules.netbox :members: - diff --git a/doc/ref/modules/all/salt.modules.netbsd_sysctl.rst b/doc/ref/modules/all/salt.modules.netbsd_sysctl.rst index 57c6f5feb88..85a84d1e2e6 100644 --- a/doc/ref/modules/all/salt.modules.netbsd_sysctl.rst +++ b/doc/ref/modules/all/salt.modules.netbsd_sysctl.rst @@ -2,4 +2,4 @@ salt.modules.netbsd_sysctl ========================== .. automodule:: salt.modules.netbsd_sysctl - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.netbsdservice.rst b/doc/ref/modules/all/salt.modules.netbsdservice.rst index e381bd18591..fa962b690ae 100644 --- a/doc/ref/modules/all/salt.modules.netbsdservice.rst +++ b/doc/ref/modules/all/salt.modules.netbsdservice.rst @@ -2,4 +2,4 @@ salt.modules.netbsdservice ========================== .. automodule:: salt.modules.netbsdservice - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.netmiko_mod.rst b/doc/ref/modules/all/salt.modules.netmiko_mod.rst index d89d4b5e28c..1146d4a72e2 100644 --- a/doc/ref/modules/all/salt.modules.netmiko_mod.rst +++ b/doc/ref/modules/all/salt.modules.netmiko_mod.rst @@ -3,4 +3,3 @@ salt.modules.netmiko_mod .. automodule:: salt.modules.netmiko_mod :members: - diff --git a/doc/ref/modules/all/salt.modules.network.rst b/doc/ref/modules/all/salt.modules.network.rst index d46bf3d8ba8..b5f734a162b 100644 --- a/doc/ref/modules/all/salt.modules.network.rst +++ b/doc/ref/modules/all/salt.modules.network.rst @@ -2,4 +2,4 @@ salt.modules.network ==================== .. automodule:: salt.modules.network - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.nfs3.rst b/doc/ref/modules/all/salt.modules.nfs3.rst index 3fd239e6405..9c7d789aba7 100644 --- a/doc/ref/modules/all/salt.modules.nfs3.rst +++ b/doc/ref/modules/all/salt.modules.nfs3.rst @@ -2,4 +2,4 @@ salt.modules.nfs3 ================= .. automodule:: salt.modules.nfs3 - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.nftables.rst b/doc/ref/modules/all/salt.modules.nftables.rst index 65677e6665d..336b64925c5 100644 --- a/doc/ref/modules/all/salt.modules.nftables.rst +++ b/doc/ref/modules/all/salt.modules.nftables.rst @@ -2,4 +2,4 @@ salt.modules.nftables ===================== .. automodule:: salt.modules.nftables - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.nginx.rst b/doc/ref/modules/all/salt.modules.nginx.rst index 1441ed05d8e..5171cd56f1a 100644 --- a/doc/ref/modules/all/salt.modules.nginx.rst +++ b/doc/ref/modules/all/salt.modules.nginx.rst @@ -2,4 +2,4 @@ salt.modules.nginx ================== .. automodule:: salt.modules.nginx - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.nova.rst b/doc/ref/modules/all/salt.modules.nova.rst index ba3b9ef44a7..4c35b8cf490 100644 --- a/doc/ref/modules/all/salt.modules.nova.rst +++ b/doc/ref/modules/all/salt.modules.nova.rst @@ -2,4 +2,4 @@ salt.modules.nova ================= .. automodule:: salt.modules.nova - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.npm.rst b/doc/ref/modules/all/salt.modules.npm.rst index b7eb1298bde..79d877721b0 100644 --- a/doc/ref/modules/all/salt.modules.npm.rst +++ b/doc/ref/modules/all/salt.modules.npm.rst @@ -2,4 +2,4 @@ salt.modules.npm ================ .. automodule:: salt.modules.npm - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.nxos.rst b/doc/ref/modules/all/salt.modules.nxos.rst index efc99abf3e5..1dad8508d00 100644 --- a/doc/ref/modules/all/salt.modules.nxos.rst +++ b/doc/ref/modules/all/salt.modules.nxos.rst @@ -3,4 +3,3 @@ salt.modules.nxos .. automodule:: salt.modules.nxos :members: - diff --git a/doc/ref/modules/all/salt.modules.nxos_api.rst b/doc/ref/modules/all/salt.modules.nxos_api.rst index 491f6bc4476..1e39b35bd0f 100644 --- a/doc/ref/modules/all/salt.modules.nxos_api.rst +++ b/doc/ref/modules/all/salt.modules.nxos_api.rst @@ -3,4 +3,3 @@ salt.modules.nxos_api .. automodule:: salt.modules.nxos_api :members: - diff --git a/doc/ref/modules/all/salt.modules.omapi.rst b/doc/ref/modules/all/salt.modules.omapi.rst index 853845b4e20..1962ff7052d 100644 --- a/doc/ref/modules/all/salt.modules.omapi.rst +++ b/doc/ref/modules/all/salt.modules.omapi.rst @@ -2,4 +2,4 @@ salt.modules.omapi ================== .. automodule:: salt.modules.omapi - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.openbsdpkg.rst b/doc/ref/modules/all/salt.modules.openbsdpkg.rst index 3593f868d42..6bf0b8a94df 100644 --- a/doc/ref/modules/all/salt.modules.openbsdpkg.rst +++ b/doc/ref/modules/all/salt.modules.openbsdpkg.rst @@ -3,4 +3,4 @@ salt.modules.openbsdpkg .. automodule:: salt.modules.openbsdpkg :members: - :exclude-members: available_version \ No newline at end of file + :exclude-members: available_version diff --git a/doc/ref/modules/all/salt.modules.openbsdservice.rst b/doc/ref/modules/all/salt.modules.openbsdservice.rst index ed035eaac0b..1f6bcfe3bcf 100644 --- a/doc/ref/modules/all/salt.modules.openbsdservice.rst +++ b/doc/ref/modules/all/salt.modules.openbsdservice.rst @@ -2,4 +2,4 @@ salt.modules.openbsdservice =========================== .. automodule:: salt.modules.openbsdservice - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.openstack_config.rst b/doc/ref/modules/all/salt.modules.openstack_config.rst index 42dab7a81b9..157ab70229d 100644 --- a/doc/ref/modules/all/salt.modules.openstack_config.rst +++ b/doc/ref/modules/all/salt.modules.openstack_config.rst @@ -2,4 +2,4 @@ salt.modules.openstack_config ============================= .. automodule:: salt.modules.openstack_config - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.oracle.rst b/doc/ref/modules/all/salt.modules.oracle.rst index 8136e81218e..ff7f89750d1 100644 --- a/doc/ref/modules/all/salt.modules.oracle.rst +++ b/doc/ref/modules/all/salt.modules.oracle.rst @@ -2,4 +2,4 @@ salt.modules.oracle =================== .. automodule:: salt.modules.oracle - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.osquery.rst b/doc/ref/modules/all/salt.modules.osquery.rst index c2002e21f9b..e1151b86578 100644 --- a/doc/ref/modules/all/salt.modules.osquery.rst +++ b/doc/ref/modules/all/salt.modules.osquery.rst @@ -2,4 +2,4 @@ salt.modules.osquery ==================== .. automodule:: salt.modules.osquery - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.pagerduty.rst b/doc/ref/modules/all/salt.modules.pagerduty.rst index af641d53206..651cebd017f 100644 --- a/doc/ref/modules/all/salt.modules.pagerduty.rst +++ b/doc/ref/modules/all/salt.modules.pagerduty.rst @@ -2,4 +2,4 @@ salt.modules.pagerduty ====================== .. automodule:: salt.modules.pagerduty - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.pam.rst b/doc/ref/modules/all/salt.modules.pam.rst index 98840f95cac..e3370714a8b 100644 --- a/doc/ref/modules/all/salt.modules.pam.rst +++ b/doc/ref/modules/all/salt.modules.pam.rst @@ -2,4 +2,4 @@ salt.modules.pam ================ .. automodule:: salt.modules.pam - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.parallels.rst b/doc/ref/modules/all/salt.modules.parallels.rst index 15ad93e5794..cb24363150d 100644 --- a/doc/ref/modules/all/salt.modules.parallels.rst +++ b/doc/ref/modules/all/salt.modules.parallels.rst @@ -3,4 +3,3 @@ salt.modules.parallels .. automodule:: salt.modules.parallels :members: - diff --git a/doc/ref/modules/all/salt.modules.pcs.rst b/doc/ref/modules/all/salt.modules.pcs.rst index e040e176b28..c4a879d1a40 100644 --- a/doc/ref/modules/all/salt.modules.pcs.rst +++ b/doc/ref/modules/all/salt.modules.pcs.rst @@ -3,4 +3,3 @@ salt.modules.pcs .. automodule:: salt.modules.pcs :members: - diff --git a/doc/ref/modules/all/salt.modules.pecl.rst b/doc/ref/modules/all/salt.modules.pecl.rst index 0e4179f3932..8c65a4dc9d0 100644 --- a/doc/ref/modules/all/salt.modules.pecl.rst +++ b/doc/ref/modules/all/salt.modules.pecl.rst @@ -2,4 +2,4 @@ salt.modules.pecl ================= .. automodule:: salt.modules.pecl - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.peeringdb.rst b/doc/ref/modules/all/salt.modules.peeringdb.rst index 4cb9eda90f9..f39714d9236 100644 --- a/doc/ref/modules/all/salt.modules.peeringdb.rst +++ b/doc/ref/modules/all/salt.modules.peeringdb.rst @@ -3,4 +3,3 @@ salt.modules.peeringdb .. automodule:: salt.modules.peeringdb :members: - diff --git a/doc/ref/modules/all/salt.modules.pillar.rst b/doc/ref/modules/all/salt.modules.pillar.rst index 2535a6ddfb0..bdea546f9f4 100644 --- a/doc/ref/modules/all/salt.modules.pillar.rst +++ b/doc/ref/modules/all/salt.modules.pillar.rst @@ -3,4 +3,4 @@ salt.modules.pillar .. automodule:: salt.modules.pillar :members: - :exclude-members: data \ No newline at end of file + :exclude-members: data diff --git a/doc/ref/modules/all/salt.modules.pip.rst b/doc/ref/modules/all/salt.modules.pip.rst index 922926763b6..54a881bfa60 100644 --- a/doc/ref/modules/all/salt.modules.pip.rst +++ b/doc/ref/modules/all/salt.modules.pip.rst @@ -2,4 +2,4 @@ salt.modules.pip ================ .. automodule:: salt.modules.pip - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.pkg_resource.rst b/doc/ref/modules/all/salt.modules.pkg_resource.rst index a89da6d35c7..24bd5fbde4d 100644 --- a/doc/ref/modules/all/salt.modules.pkg_resource.rst +++ b/doc/ref/modules/all/salt.modules.pkg_resource.rst @@ -2,4 +2,4 @@ salt.modules.pkg_resource ========================= .. automodule:: salt.modules.pkg_resource - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.pkgin.rst b/doc/ref/modules/all/salt.modules.pkgin.rst index 0d9405f95f1..525d5654529 100644 --- a/doc/ref/modules/all/salt.modules.pkgin.rst +++ b/doc/ref/modules/all/salt.modules.pkgin.rst @@ -2,4 +2,4 @@ salt.modules.pkgin ================== .. automodule:: salt.modules.pkgin - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.pkgng.rst b/doc/ref/modules/all/salt.modules.pkgng.rst index 8ec0b735c62..caf05eb30d0 100644 --- a/doc/ref/modules/all/salt.modules.pkgng.rst +++ b/doc/ref/modules/all/salt.modules.pkgng.rst @@ -3,4 +3,4 @@ salt.modules.pkgng .. automodule:: salt.modules.pkgng :members: - :exclude-members: available_version, delete, purge, update, info \ No newline at end of file + :exclude-members: available_version, delete, purge, update, info diff --git a/doc/ref/modules/all/salt.modules.pkgutil.rst b/doc/ref/modules/all/salt.modules.pkgutil.rst index 0e44f6d34e9..8b295cea287 100644 --- a/doc/ref/modules/all/salt.modules.pkgutil.rst +++ b/doc/ref/modules/all/salt.modules.pkgutil.rst @@ -3,4 +3,4 @@ salt.modules.pkgutil .. automodule:: salt.modules.pkgutil :members: - :exclude-members: available_version \ No newline at end of file + :exclude-members: available_version diff --git a/doc/ref/modules/all/salt.modules.portage_config.rst b/doc/ref/modules/all/salt.modules.portage_config.rst index fa909910e07..9175e2d4fcf 100644 --- a/doc/ref/modules/all/salt.modules.portage_config.rst +++ b/doc/ref/modules/all/salt.modules.portage_config.rst @@ -2,4 +2,4 @@ salt.modules.portage_config =========================== .. automodule:: salt.modules.portage_config - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.postfix.rst b/doc/ref/modules/all/salt.modules.postfix.rst index ad5d794378b..83c8c7f5fda 100644 --- a/doc/ref/modules/all/salt.modules.postfix.rst +++ b/doc/ref/modules/all/salt.modules.postfix.rst @@ -2,4 +2,4 @@ salt.modules.postfix ==================== .. automodule:: salt.modules.postfix - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.postgres.rst b/doc/ref/modules/all/salt.modules.postgres.rst index 20c8db93307..328b4627a71 100644 --- a/doc/ref/modules/all/salt.modules.postgres.rst +++ b/doc/ref/modules/all/salt.modules.postgres.rst @@ -2,4 +2,4 @@ salt.modules.postgres ===================== .. automodule:: salt.modules.postgres - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.poudriere.rst b/doc/ref/modules/all/salt.modules.poudriere.rst index 6a07940b62b..87f56bef762 100644 --- a/doc/ref/modules/all/salt.modules.poudriere.rst +++ b/doc/ref/modules/all/salt.modules.poudriere.rst @@ -2,4 +2,4 @@ salt.modules.poudriere ====================== .. automodule:: salt.modules.poudriere - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.powerpath.rst b/doc/ref/modules/all/salt.modules.powerpath.rst index e4e39e2d7e0..9d7bb48219b 100644 --- a/doc/ref/modules/all/salt.modules.powerpath.rst +++ b/doc/ref/modules/all/salt.modules.powerpath.rst @@ -2,4 +2,4 @@ salt.modules.powerpath ====================== .. automodule:: salt.modules.powerpath - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.ps.rst b/doc/ref/modules/all/salt.modules.ps.rst index d3df2ab843a..b328115449a 100644 --- a/doc/ref/modules/all/salt.modules.ps.rst +++ b/doc/ref/modules/all/salt.modules.ps.rst @@ -2,4 +2,4 @@ salt.modules.ps =============== .. automodule:: salt.modules.ps - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.publish.rst b/doc/ref/modules/all/salt.modules.publish.rst index a7fe672dfa4..0dd314b42ed 100644 --- a/doc/ref/modules/all/salt.modules.publish.rst +++ b/doc/ref/modules/all/salt.modules.publish.rst @@ -2,4 +2,4 @@ salt.modules.publish ==================== .. automodule:: salt.modules.publish - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.puppet.rst b/doc/ref/modules/all/salt.modules.puppet.rst index e83b487b046..bc23f5ac061 100644 --- a/doc/ref/modules/all/salt.modules.puppet.rst +++ b/doc/ref/modules/all/salt.modules.puppet.rst @@ -2,4 +2,4 @@ salt.modules.puppet =================== .. automodule:: salt.modules.puppet - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.pw_group.rst b/doc/ref/modules/all/salt.modules.pw_group.rst index e8402447437..39dcde9988c 100644 --- a/doc/ref/modules/all/salt.modules.pw_group.rst +++ b/doc/ref/modules/all/salt.modules.pw_group.rst @@ -2,4 +2,4 @@ salt.modules.pw_group ===================== .. automodule:: salt.modules.pw_group - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.pw_user.rst b/doc/ref/modules/all/salt.modules.pw_user.rst index 7507f517f56..9009b304b68 100644 --- a/doc/ref/modules/all/salt.modules.pw_user.rst +++ b/doc/ref/modules/all/salt.modules.pw_user.rst @@ -2,4 +2,4 @@ salt.modules.pw_user ==================== .. automodule:: salt.modules.pw_user - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.pyenv.rst b/doc/ref/modules/all/salt.modules.pyenv.rst index ba3e7ec1b85..ed8883a835e 100644 --- a/doc/ref/modules/all/salt.modules.pyenv.rst +++ b/doc/ref/modules/all/salt.modules.pyenv.rst @@ -2,4 +2,4 @@ salt.modules.pyenv ================== .. automodule:: salt.modules.pyenv - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.qemu_img.rst b/doc/ref/modules/all/salt.modules.qemu_img.rst index 304e5f8ebfc..883e2be26c4 100644 --- a/doc/ref/modules/all/salt.modules.qemu_img.rst +++ b/doc/ref/modules/all/salt.modules.qemu_img.rst @@ -2,4 +2,4 @@ salt.modules.qemu_img ===================== .. automodule:: salt.modules.qemu_img - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.qemu_nbd.rst b/doc/ref/modules/all/salt.modules.qemu_nbd.rst index 182a8d1ad57..f172bb40a30 100644 --- a/doc/ref/modules/all/salt.modules.qemu_nbd.rst +++ b/doc/ref/modules/all/salt.modules.qemu_nbd.rst @@ -2,4 +2,4 @@ salt.modules.qemu_nbd ===================== .. automodule:: salt.modules.qemu_nbd - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.quota.rst b/doc/ref/modules/all/salt.modules.quota.rst index 6f3b6b06b29..cc1984c5214 100644 --- a/doc/ref/modules/all/salt.modules.quota.rst +++ b/doc/ref/modules/all/salt.modules.quota.rst @@ -2,4 +2,4 @@ salt.modules.quota ================== .. automodule:: salt.modules.quota - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.rabbitmq.rst b/doc/ref/modules/all/salt.modules.rabbitmq.rst index 76b0a3bbe06..e2025f4ea7f 100644 --- a/doc/ref/modules/all/salt.modules.rabbitmq.rst +++ b/doc/ref/modules/all/salt.modules.rabbitmq.rst @@ -2,4 +2,4 @@ salt.modules.rabbitmq ===================== .. automodule:: salt.modules.rabbitmq - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.rbenv.rst b/doc/ref/modules/all/salt.modules.rbenv.rst index 67c5f44433e..52f2a33affb 100644 --- a/doc/ref/modules/all/salt.modules.rbenv.rst +++ b/doc/ref/modules/all/salt.modules.rbenv.rst @@ -2,4 +2,4 @@ salt.modules.rbenv ================== .. automodule:: salt.modules.rbenv - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.rdp.rst b/doc/ref/modules/all/salt.modules.rdp.rst index fb223084e6f..25623b8662d 100644 --- a/doc/ref/modules/all/salt.modules.rdp.rst +++ b/doc/ref/modules/all/salt.modules.rdp.rst @@ -2,4 +2,4 @@ salt.modules.rdp ================ .. automodule:: salt.modules.rdp - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.redismod.rst b/doc/ref/modules/all/salt.modules.redismod.rst index 4cf7e3d67b7..15b1199c9fe 100644 --- a/doc/ref/modules/all/salt.modules.redismod.rst +++ b/doc/ref/modules/all/salt.modules.redismod.rst @@ -2,4 +2,4 @@ salt.modules.redis ================== .. automodule:: salt.modules.redismod - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.reg.rst b/doc/ref/modules/all/salt.modules.reg.rst index 0bfbb3505f2..3a1de9a0c22 100644 --- a/doc/ref/modules/all/salt.modules.reg.rst +++ b/doc/ref/modules/all/salt.modules.reg.rst @@ -2,4 +2,4 @@ salt.modules.reg ================ .. automodule:: salt.modules.reg - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.rest_service.rst b/doc/ref/modules/all/salt.modules.rest_service.rst index 72e6ce695dc..98a58402e71 100644 --- a/doc/ref/modules/all/salt.modules.rest_service.rst +++ b/doc/ref/modules/all/salt.modules.rest_service.rst @@ -2,4 +2,4 @@ salt.modules.rest_service ========================= .. automodule:: salt.modules.rest_service - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.ret.rst b/doc/ref/modules/all/salt.modules.ret.rst index 25c7a4f1fde..c7eb92283b4 100644 --- a/doc/ref/modules/all/salt.modules.ret.rst +++ b/doc/ref/modules/all/salt.modules.ret.rst @@ -2,4 +2,4 @@ salt.modules.ret ================ .. automodule:: salt.modules.ret - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.rh_ip.rst b/doc/ref/modules/all/salt.modules.rh_ip.rst index 81bec3025e7..aed3ec2cbc0 100644 --- a/doc/ref/modules/all/salt.modules.rh_ip.rst +++ b/doc/ref/modules/all/salt.modules.rh_ip.rst @@ -2,4 +2,4 @@ salt.modules.rh_ip ================== .. automodule:: salt.modules.rh_ip - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.rh_service.rst b/doc/ref/modules/all/salt.modules.rh_service.rst index bb3f6f833f5..0ae2626b12e 100644 --- a/doc/ref/modules/all/salt.modules.rh_service.rst +++ b/doc/ref/modules/all/salt.modules.rh_service.rst @@ -2,4 +2,4 @@ salt.modules.rh_service ======================= .. automodule:: salt.modules.rh_service - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.riak.rst b/doc/ref/modules/all/salt.modules.riak.rst index d69e520db36..5f9906f95d7 100644 --- a/doc/ref/modules/all/salt.modules.riak.rst +++ b/doc/ref/modules/all/salt.modules.riak.rst @@ -2,4 +2,4 @@ salt.modules.riak ================= .. automodule:: salt.modules.riak - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.rsync.rst b/doc/ref/modules/all/salt.modules.rsync.rst index 29b05c14325..d9b75f9b280 100644 --- a/doc/ref/modules/all/salt.modules.rsync.rst +++ b/doc/ref/modules/all/salt.modules.rsync.rst @@ -2,4 +2,4 @@ salt.modules.rsync ================== .. automodule:: salt.modules.rsync - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.rvm.rst b/doc/ref/modules/all/salt.modules.rvm.rst index b9361fa00b4..c782694986d 100644 --- a/doc/ref/modules/all/salt.modules.rvm.rst +++ b/doc/ref/modules/all/salt.modules.rvm.rst @@ -2,4 +2,4 @@ salt.modules.rvm ================ .. automodule:: salt.modules.rvm - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.s3.rst b/doc/ref/modules/all/salt.modules.s3.rst index 3f2ba4f5f02..46e43bde601 100644 --- a/doc/ref/modules/all/salt.modules.s3.rst +++ b/doc/ref/modules/all/salt.modules.s3.rst @@ -2,4 +2,4 @@ salt.modules.s3 =============== .. automodule:: salt.modules.s3 - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.salt_version.rst b/doc/ref/modules/all/salt.modules.salt_version.rst index 1a3e5e2a064..b8c19ebc627 100644 --- a/doc/ref/modules/all/salt.modules.salt_version.rst +++ b/doc/ref/modules/all/salt.modules.salt_version.rst @@ -2,4 +2,4 @@ salt.modules.salt_version ========================= .. automodule:: salt.modules.salt_version - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.saltcloudmod.rst b/doc/ref/modules/all/salt.modules.saltcloudmod.rst index 1c6209620bb..171dfaa5454 100644 --- a/doc/ref/modules/all/salt.modules.saltcloudmod.rst +++ b/doc/ref/modules/all/salt.modules.saltcloudmod.rst @@ -2,4 +2,4 @@ salt.modules.saltcloudmod ========================= .. automodule:: salt.modules.saltcloudmod - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.schedule.rst b/doc/ref/modules/all/salt.modules.schedule.rst index 4c98826fc5b..d1ee19c6d99 100644 --- a/doc/ref/modules/all/salt.modules.schedule.rst +++ b/doc/ref/modules/all/salt.modules.schedule.rst @@ -2,4 +2,4 @@ salt.modules.schedule ===================== .. automodule:: salt.modules.schedule - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.scp_mod.rst b/doc/ref/modules/all/salt.modules.scp_mod.rst index d157ea02be0..7687540e665 100644 --- a/doc/ref/modules/all/salt.modules.scp_mod.rst +++ b/doc/ref/modules/all/salt.modules.scp_mod.rst @@ -3,4 +3,3 @@ salt.modules.scp .. automodule:: salt.modules.scp_mod :members: - diff --git a/doc/ref/modules/all/salt.modules.seed.rst b/doc/ref/modules/all/salt.modules.seed.rst index edda58a9099..25b99832e9a 100644 --- a/doc/ref/modules/all/salt.modules.seed.rst +++ b/doc/ref/modules/all/salt.modules.seed.rst @@ -2,4 +2,4 @@ salt.modules.seed ================= .. automodule:: salt.modules.seed - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.selinux.rst b/doc/ref/modules/all/salt.modules.selinux.rst index c66816d9c14..b505e47a896 100644 --- a/doc/ref/modules/all/salt.modules.selinux.rst +++ b/doc/ref/modules/all/salt.modules.selinux.rst @@ -2,4 +2,4 @@ salt.modules.selinux ==================== .. automodule:: salt.modules.selinux - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.sensehat.rst b/doc/ref/modules/all/salt.modules.sensehat.rst index da3a5dce8cc..065ab63827c 100644 --- a/doc/ref/modules/all/salt.modules.sensehat.rst +++ b/doc/ref/modules/all/salt.modules.sensehat.rst @@ -2,4 +2,4 @@ salt.modules.sensehat ===================== .. automodule:: salt.modules.sensehat - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.sensors.rst b/doc/ref/modules/all/salt.modules.sensors.rst index 3e07eec065a..8d1046b7e10 100644 --- a/doc/ref/modules/all/salt.modules.sensors.rst +++ b/doc/ref/modules/all/salt.modules.sensors.rst @@ -2,4 +2,4 @@ salt.modules.sensors ==================== .. automodule:: salt.modules.sensors - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.serverdensity_device.rst b/doc/ref/modules/all/salt.modules.serverdensity_device.rst index 3b2595935c6..5de96cb5b2b 100644 --- a/doc/ref/modules/all/salt.modules.serverdensity_device.rst +++ b/doc/ref/modules/all/salt.modules.serverdensity_device.rst @@ -2,4 +2,4 @@ salt.modules.serverdensity_device ================================= .. automodule:: salt.modules.serverdensity_device - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.service.rst b/doc/ref/modules/all/salt.modules.service.rst index bd2e474a21e..06449f4ee25 100644 --- a/doc/ref/modules/all/salt.modules.service.rst +++ b/doc/ref/modules/all/salt.modules.service.rst @@ -32,4 +32,3 @@ Execution Module Used for :py:mod:`~salt.modules.upstart_service` Ubuntu-based distros using upstart :py:mod:`~salt.modules.win_service` Windows ========================================= ======================================== - diff --git a/doc/ref/modules/all/salt.modules.slsutil.rst b/doc/ref/modules/all/salt.modules.slsutil.rst index 4046c6e7091..213b4126332 100644 --- a/doc/ref/modules/all/salt.modules.slsutil.rst +++ b/doc/ref/modules/all/salt.modules.slsutil.rst @@ -2,4 +2,4 @@ salt.modules.slsutil ==================== .. automodule:: salt.modules.slsutil - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.smartos_imgadm.rst b/doc/ref/modules/all/salt.modules.smartos_imgadm.rst index 91f4a712067..974c45e51f3 100644 --- a/doc/ref/modules/all/salt.modules.smartos_imgadm.rst +++ b/doc/ref/modules/all/salt.modules.smartos_imgadm.rst @@ -2,4 +2,4 @@ salt.modules.smartos_imgadm =========================== .. automodule:: salt.modules.smartos_imgadm - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.smartos_vmadm.rst b/doc/ref/modules/all/salt.modules.smartos_vmadm.rst index f2b7f5e48db..f01d9479d2e 100644 --- a/doc/ref/modules/all/salt.modules.smartos_vmadm.rst +++ b/doc/ref/modules/all/salt.modules.smartos_vmadm.rst @@ -2,4 +2,4 @@ salt.modules.smartos_vmadm ========================== .. automodule:: salt.modules.smartos_vmadm - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.smbios.rst b/doc/ref/modules/all/salt.modules.smbios.rst index 148355515fd..463a719c784 100644 --- a/doc/ref/modules/all/salt.modules.smbios.rst +++ b/doc/ref/modules/all/salt.modules.smbios.rst @@ -2,4 +2,4 @@ salt.modules.smbios =================== .. automodule:: salt.modules.smbios - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.smtp.rst b/doc/ref/modules/all/salt.modules.smtp.rst index 7d081e9d433..45c3ea74f17 100644 --- a/doc/ref/modules/all/salt.modules.smtp.rst +++ b/doc/ref/modules/all/salt.modules.smtp.rst @@ -2,4 +2,4 @@ salt.modules.smtp ================= .. automodule:: salt.modules.smtp - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.solaris_group.rst b/doc/ref/modules/all/salt.modules.solaris_group.rst index 839e3e382dc..fbee1ffc47d 100644 --- a/doc/ref/modules/all/salt.modules.solaris_group.rst +++ b/doc/ref/modules/all/salt.modules.solaris_group.rst @@ -2,4 +2,4 @@ salt.modules.solaris_group ========================== .. automodule:: salt.modules.solaris_group - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.solaris_shadow.rst b/doc/ref/modules/all/salt.modules.solaris_shadow.rst index 3c27c2f2c9f..3fadca22e6c 100644 --- a/doc/ref/modules/all/salt.modules.solaris_shadow.rst +++ b/doc/ref/modules/all/salt.modules.solaris_shadow.rst @@ -2,4 +2,4 @@ salt.modules.solaris_shadow =========================== .. automodule:: salt.modules.solaris_shadow - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.solaris_user.rst b/doc/ref/modules/all/salt.modules.solaris_user.rst index be70dc5c111..c2f41207cb5 100644 --- a/doc/ref/modules/all/salt.modules.solaris_user.rst +++ b/doc/ref/modules/all/salt.modules.solaris_user.rst @@ -2,4 +2,4 @@ salt.modules.solaris_user ========================= .. automodule:: salt.modules.solaris_user - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.solarispkg.rst b/doc/ref/modules/all/salt.modules.solarispkg.rst index a55de22c511..5890158f3e8 100644 --- a/doc/ref/modules/all/salt.modules.solarispkg.rst +++ b/doc/ref/modules/all/salt.modules.solarispkg.rst @@ -3,4 +3,4 @@ salt.modules.solarispkg .. automodule:: salt.modules.solarispkg :members: - :exclude-members: available_version \ No newline at end of file + :exclude-members: available_version diff --git a/doc/ref/modules/all/salt.modules.solr.rst b/doc/ref/modules/all/salt.modules.solr.rst index b839db86689..9a8bfc6b491 100644 --- a/doc/ref/modules/all/salt.modules.solr.rst +++ b/doc/ref/modules/all/salt.modules.solr.rst @@ -2,4 +2,4 @@ salt.modules.solr ================= .. automodule:: salt.modules.solr - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.splunk.rst b/doc/ref/modules/all/salt.modules.splunk.rst index 8ebf0d971c7..8873fe27702 100644 --- a/doc/ref/modules/all/salt.modules.splunk.rst +++ b/doc/ref/modules/all/salt.modules.splunk.rst @@ -2,4 +2,4 @@ salt.modules.splunk =================== .. automodule:: salt.modules.splunk - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.sqlite3.rst b/doc/ref/modules/all/salt.modules.sqlite3.rst index 312d48c3ef2..35c4bdb1f5a 100644 --- a/doc/ref/modules/all/salt.modules.sqlite3.rst +++ b/doc/ref/modules/all/salt.modules.sqlite3.rst @@ -2,4 +2,4 @@ salt.modules.sqlite3 ==================== .. automodule:: salt.modules.sqlite3 - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.state.rst b/doc/ref/modules/all/salt.modules.state.rst index f76b88039c3..5c208b801ec 100644 --- a/doc/ref/modules/all/salt.modules.state.rst +++ b/doc/ref/modules/all/salt.modules.state.rst @@ -2,4 +2,4 @@ salt.modules.state ================== .. automodule:: salt.modules.state - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.status.rst b/doc/ref/modules/all/salt.modules.status.rst index 23f15836e42..c590a2ee166 100644 --- a/doc/ref/modules/all/salt.modules.status.rst +++ b/doc/ref/modules/all/salt.modules.status.rst @@ -2,4 +2,4 @@ salt.modules.status =================== .. automodule:: salt.modules.status - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.supervisord.rst b/doc/ref/modules/all/salt.modules.supervisord.rst index e37ee9b095b..d876e8a9757 100644 --- a/doc/ref/modules/all/salt.modules.supervisord.rst +++ b/doc/ref/modules/all/salt.modules.supervisord.rst @@ -2,4 +2,4 @@ salt.modules.supervisord ======================== .. automodule:: salt.modules.supervisord - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.suse_apache.rst b/doc/ref/modules/all/salt.modules.suse_apache.rst index cd72959c5af..2ece82552a2 100644 --- a/doc/ref/modules/all/salt.modules.suse_apache.rst +++ b/doc/ref/modules/all/salt.modules.suse_apache.rst @@ -2,4 +2,4 @@ salt.modules.suse_apache ======================== .. automodule:: salt.modules.suse_apache - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.suse_ip.rst b/doc/ref/modules/all/salt.modules.suse_ip.rst index 14ea09f6007..ba46716723e 100644 --- a/doc/ref/modules/all/salt.modules.suse_ip.rst +++ b/doc/ref/modules/all/salt.modules.suse_ip.rst @@ -1,6 +1,6 @@ -==================== +==================== salt.modules.suse_ip ==================== .. automodule:: salt.modules.suse_ip - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.svn.rst b/doc/ref/modules/all/salt.modules.svn.rst index d6724f234e1..8c4f97b30ab 100644 --- a/doc/ref/modules/all/salt.modules.svn.rst +++ b/doc/ref/modules/all/salt.modules.svn.rst @@ -2,4 +2,4 @@ salt.modules.svn ================ .. automodule:: salt.modules.svn - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.swift.rst b/doc/ref/modules/all/salt.modules.swift.rst index 2b95d779c87..df4a86c50b1 100644 --- a/doc/ref/modules/all/salt.modules.swift.rst +++ b/doc/ref/modules/all/salt.modules.swift.rst @@ -2,4 +2,4 @@ salt.modules.swift ================== .. automodule:: salt.modules.swift - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.sysbench.rst b/doc/ref/modules/all/salt.modules.sysbench.rst index 60bd5cca2fb..b6ac322d7d5 100644 --- a/doc/ref/modules/all/salt.modules.sysbench.rst +++ b/doc/ref/modules/all/salt.modules.sysbench.rst @@ -2,4 +2,4 @@ salt.modules.sysbench ===================== .. automodule:: salt.modules.sysbench - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.syslog_ng.rst b/doc/ref/modules/all/salt.modules.syslog_ng.rst index 217a4670207..abd4e910393 100644 --- a/doc/ref/modules/all/salt.modules.syslog_ng.rst +++ b/doc/ref/modules/all/salt.modules.syslog_ng.rst @@ -2,4 +2,4 @@ salt.modules.syslog_ng ====================== .. automodule:: salt.modules.syslog_ng - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.sysmod.rst b/doc/ref/modules/all/salt.modules.sysmod.rst index 4288c86b661..8f5d5928aa0 100644 --- a/doc/ref/modules/all/salt.modules.sysmod.rst +++ b/doc/ref/modules/all/salt.modules.sysmod.rst @@ -2,4 +2,4 @@ salt.modules.sysmod =================== .. automodule:: salt.modules.sysmod - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.system.rst b/doc/ref/modules/all/salt.modules.system.rst index 010089bf7ea..230bcfc4082 100644 --- a/doc/ref/modules/all/salt.modules.system.rst +++ b/doc/ref/modules/all/salt.modules.system.rst @@ -2,4 +2,4 @@ salt.modules.system =================== .. automodule:: salt.modules.system - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.telegram.rst b/doc/ref/modules/all/salt.modules.telegram.rst index 9d4d5650893..8fb96ccf37d 100644 --- a/doc/ref/modules/all/salt.modules.telegram.rst +++ b/doc/ref/modules/all/salt.modules.telegram.rst @@ -2,4 +2,4 @@ salt.modules.telegram ===================== .. automodule:: salt.modules.telegram - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.telemetry.rst b/doc/ref/modules/all/salt.modules.telemetry.rst index e2a64335f53..fb269dfb7c2 100644 --- a/doc/ref/modules/all/salt.modules.telemetry.rst +++ b/doc/ref/modules/all/salt.modules.telemetry.rst @@ -2,4 +2,4 @@ salt.modules.telemetry ====================== .. automodule:: salt.modules.telemetry - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.test_virtual.rst b/doc/ref/modules/all/salt.modules.test_virtual.rst index 5ddf629e195..b8e8f258d5e 100644 --- a/doc/ref/modules/all/salt.modules.test_virtual.rst +++ b/doc/ref/modules/all/salt.modules.test_virtual.rst @@ -2,4 +2,4 @@ salt.modules.test_virtual ========================= .. automodule:: salt.modules.test_virtual - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.timezone.rst b/doc/ref/modules/all/salt.modules.timezone.rst index 52148f8ba72..4cf53883dca 100644 --- a/doc/ref/modules/all/salt.modules.timezone.rst +++ b/doc/ref/modules/all/salt.modules.timezone.rst @@ -2,4 +2,4 @@ salt.modules.timezone ===================== .. automodule:: salt.modules.timezone - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.tls.rst b/doc/ref/modules/all/salt.modules.tls.rst index 83a45b26556..aeb8f4e174b 100644 --- a/doc/ref/modules/all/salt.modules.tls.rst +++ b/doc/ref/modules/all/salt.modules.tls.rst @@ -2,4 +2,4 @@ salt.modules.tls ================ .. automodule:: salt.modules.tls - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.tomcat.rst b/doc/ref/modules/all/salt.modules.tomcat.rst index 1f0bd589a58..108df736142 100644 --- a/doc/ref/modules/all/salt.modules.tomcat.rst +++ b/doc/ref/modules/all/salt.modules.tomcat.rst @@ -2,4 +2,4 @@ salt.modules.tomcat =================== .. automodule:: salt.modules.tomcat - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.twilio_notify.rst b/doc/ref/modules/all/salt.modules.twilio_notify.rst index 7a697c0fd2d..7b7006cc046 100644 --- a/doc/ref/modules/all/salt.modules.twilio_notify.rst +++ b/doc/ref/modules/all/salt.modules.twilio_notify.rst @@ -2,4 +2,4 @@ salt.modules.twilio_notify ========================== .. automodule:: salt.modules.twilio_notify - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.useradd.rst b/doc/ref/modules/all/salt.modules.useradd.rst index 3b15c8c4b1e..046822ad85e 100644 --- a/doc/ref/modules/all/salt.modules.useradd.rst +++ b/doc/ref/modules/all/salt.modules.useradd.rst @@ -2,4 +2,4 @@ salt.modules.useradd ==================== .. automodule:: salt.modules.useradd - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.uwsgi.rst b/doc/ref/modules/all/salt.modules.uwsgi.rst index 5b325e677df..f2162427cbf 100644 --- a/doc/ref/modules/all/salt.modules.uwsgi.rst +++ b/doc/ref/modules/all/salt.modules.uwsgi.rst @@ -2,4 +2,4 @@ salt.modules.uwsgi ================== .. automodule:: salt.modules.uwsgi - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.vagrant.rst b/doc/ref/modules/all/salt.modules.vagrant.rst index ee181de96cb..73c98c86602 100644 --- a/doc/ref/modules/all/salt.modules.vagrant.rst +++ b/doc/ref/modules/all/salt.modules.vagrant.rst @@ -2,4 +2,4 @@ salt.modules.vagrant ==================== .. automodule:: salt.modules.vagrant - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.varnish.rst b/doc/ref/modules/all/salt.modules.varnish.rst index 5237549654d..0b48bb8e3cf 100644 --- a/doc/ref/modules/all/salt.modules.varnish.rst +++ b/doc/ref/modules/all/salt.modules.varnish.rst @@ -2,4 +2,4 @@ salt.modules.varnish ==================== .. automodule:: salt.modules.varnish - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.virt.rst b/doc/ref/modules/all/salt.modules.virt.rst index 00a3a3bb2b0..43c79f2d052 100644 --- a/doc/ref/modules/all/salt.modules.virt.rst +++ b/doc/ref/modules/all/salt.modules.virt.rst @@ -2,4 +2,4 @@ salt.modules.virt ================= .. automodule:: salt.modules.virt - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.virtualenv_mod.rst b/doc/ref/modules/all/salt.modules.virtualenv_mod.rst index 1856d64ff1c..4d2eafb4a62 100644 --- a/doc/ref/modules/all/salt.modules.virtualenv_mod.rst +++ b/doc/ref/modules/all/salt.modules.virtualenv_mod.rst @@ -2,4 +2,4 @@ salt.modules.virtualenv ======================= .. automodule:: salt.modules.virtualenv_mod - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.vsphere.rst b/doc/ref/modules/all/salt.modules.vsphere.rst index d6dbb9be9da..a887ab18ffe 100644 --- a/doc/ref/modules/all/salt.modules.vsphere.rst +++ b/doc/ref/modules/all/salt.modules.vsphere.rst @@ -2,4 +2,4 @@ salt.modules.vsphere ==================== .. automodule:: salt.modules.vsphere - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.win_autoruns.rst b/doc/ref/modules/all/salt.modules.win_autoruns.rst index ba44d54ced6..ff9bd12851c 100644 --- a/doc/ref/modules/all/salt.modules.win_autoruns.rst +++ b/doc/ref/modules/all/salt.modules.win_autoruns.rst @@ -2,4 +2,4 @@ salt.modules.win_autoruns ========================= .. automodule:: salt.modules.win_autoruns - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.win_dacl.rst b/doc/ref/modules/all/salt.modules.win_dacl.rst index f318906c8fe..978ab57bb89 100644 --- a/doc/ref/modules/all/salt.modules.win_dacl.rst +++ b/doc/ref/modules/all/salt.modules.win_dacl.rst @@ -2,4 +2,4 @@ salt.modules.win_dacl ===================== .. automodule:: salt.modules.win_dacl - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.win_disk.rst b/doc/ref/modules/all/salt.modules.win_disk.rst index d2fc2f62870..cfdf6e2fc09 100644 --- a/doc/ref/modules/all/salt.modules.win_disk.rst +++ b/doc/ref/modules/all/salt.modules.win_disk.rst @@ -2,4 +2,4 @@ salt.modules.win_disk ===================== .. automodule:: salt.modules.win_disk - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.win_dns_client.rst b/doc/ref/modules/all/salt.modules.win_dns_client.rst index 8dcbdd430de..44708034bd5 100644 --- a/doc/ref/modules/all/salt.modules.win_dns_client.rst +++ b/doc/ref/modules/all/salt.modules.win_dns_client.rst @@ -2,4 +2,4 @@ salt.modules.win_dns_client =========================== .. automodule:: salt.modules.win_dns_client - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.win_file.rst b/doc/ref/modules/all/salt.modules.win_file.rst index ca463ab6cca..423c2bc1894 100644 --- a/doc/ref/modules/all/salt.modules.win_file.rst +++ b/doc/ref/modules/all/salt.modules.win_file.rst @@ -2,4 +2,4 @@ salt.modules.win_file ===================== .. automodule:: salt.modules.win_file - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.win_firewall.rst b/doc/ref/modules/all/salt.modules.win_firewall.rst index 839d35c0ca7..ebdb4422e6b 100644 --- a/doc/ref/modules/all/salt.modules.win_firewall.rst +++ b/doc/ref/modules/all/salt.modules.win_firewall.rst @@ -2,4 +2,4 @@ salt.modules.win_firewall ========================= .. automodule:: salt.modules.win_firewall - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.win_groupadd.rst b/doc/ref/modules/all/salt.modules.win_groupadd.rst index 68389aa9123..15afc7ebd82 100644 --- a/doc/ref/modules/all/salt.modules.win_groupadd.rst +++ b/doc/ref/modules/all/salt.modules.win_groupadd.rst @@ -2,4 +2,4 @@ salt.modules.win_groupadd ========================= .. automodule:: salt.modules.win_groupadd - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.win_ip.rst b/doc/ref/modules/all/salt.modules.win_ip.rst index a571d4149a2..e2f6b23f520 100644 --- a/doc/ref/modules/all/salt.modules.win_ip.rst +++ b/doc/ref/modules/all/salt.modules.win_ip.rst @@ -2,4 +2,4 @@ salt.modules.win_ip =================== .. automodule:: salt.modules.win_ip - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.win_network.rst b/doc/ref/modules/all/salt.modules.win_network.rst index 1dcd88af7a5..e76190751a1 100644 --- a/doc/ref/modules/all/salt.modules.win_network.rst +++ b/doc/ref/modules/all/salt.modules.win_network.rst @@ -2,4 +2,4 @@ salt.modules.win_network ======================== .. automodule:: salt.modules.win_network - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.win_ntp.rst b/doc/ref/modules/all/salt.modules.win_ntp.rst index 213ca72851a..2e83900c04b 100644 --- a/doc/ref/modules/all/salt.modules.win_ntp.rst +++ b/doc/ref/modules/all/salt.modules.win_ntp.rst @@ -2,4 +2,4 @@ salt.modules.win_ntp ==================== .. automodule:: salt.modules.win_ntp - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.win_path.rst b/doc/ref/modules/all/salt.modules.win_path.rst index 14f544ec8a7..af28e6df8ea 100644 --- a/doc/ref/modules/all/salt.modules.win_path.rst +++ b/doc/ref/modules/all/salt.modules.win_path.rst @@ -2,4 +2,4 @@ salt.modules.win_path ===================== .. automodule:: salt.modules.win_path - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.win_pkg.rst b/doc/ref/modules/all/salt.modules.win_pkg.rst index 67422cc263c..28364d92f0d 100644 --- a/doc/ref/modules/all/salt.modules.win_pkg.rst +++ b/doc/ref/modules/all/salt.modules.win_pkg.rst @@ -3,4 +3,4 @@ salt.modules.win_pkg .. automodule:: salt.modules.win_pkg :members: - :exclude-members: available_version \ No newline at end of file + :exclude-members: available_version diff --git a/doc/ref/modules/all/salt.modules.win_powercfg.rst b/doc/ref/modules/all/salt.modules.win_powercfg.rst index d9a3d9c7817..45aaf9de770 100644 --- a/doc/ref/modules/all/salt.modules.win_powercfg.rst +++ b/doc/ref/modules/all/salt.modules.win_powercfg.rst @@ -2,4 +2,4 @@ salt.modules.win_powercfg ========================= .. automodule:: salt.modules.win_powercfg - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.win_servermanager.rst b/doc/ref/modules/all/salt.modules.win_servermanager.rst index 30182f191fa..7a0e2e782ff 100644 --- a/doc/ref/modules/all/salt.modules.win_servermanager.rst +++ b/doc/ref/modules/all/salt.modules.win_servermanager.rst @@ -2,4 +2,4 @@ salt.modules.win_servermanager ============================== .. automodule:: salt.modules.win_servermanager - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.win_service.rst b/doc/ref/modules/all/salt.modules.win_service.rst index 33e0edf093f..00676175d4e 100644 --- a/doc/ref/modules/all/salt.modules.win_service.rst +++ b/doc/ref/modules/all/salt.modules.win_service.rst @@ -2,4 +2,4 @@ salt.modules.win_service ======================== .. automodule:: salt.modules.win_service - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.win_shadow.rst b/doc/ref/modules/all/salt.modules.win_shadow.rst index ef7073b21f4..7b69b6cd974 100644 --- a/doc/ref/modules/all/salt.modules.win_shadow.rst +++ b/doc/ref/modules/all/salt.modules.win_shadow.rst @@ -2,4 +2,4 @@ salt.modules.win_shadow ======================= .. automodule:: salt.modules.win_shadow - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.win_smtp_server.rst b/doc/ref/modules/all/salt.modules.win_smtp_server.rst index 3450487c58b..31411d59d16 100644 --- a/doc/ref/modules/all/salt.modules.win_smtp_server.rst +++ b/doc/ref/modules/all/salt.modules.win_smtp_server.rst @@ -3,4 +3,3 @@ salt.modules.win_smtp_server .. automodule:: salt.modules.win_smtp_server :members: - diff --git a/doc/ref/modules/all/salt.modules.win_status.rst b/doc/ref/modules/all/salt.modules.win_status.rst index bcf542db949..6871857ec4e 100644 --- a/doc/ref/modules/all/salt.modules.win_status.rst +++ b/doc/ref/modules/all/salt.modules.win_status.rst @@ -2,4 +2,4 @@ salt.modules.win_status ======================= .. automodule:: salt.modules.win_status - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.win_system.rst b/doc/ref/modules/all/salt.modules.win_system.rst index 9d54cf41c21..95e925ce21d 100644 --- a/doc/ref/modules/all/salt.modules.win_system.rst +++ b/doc/ref/modules/all/salt.modules.win_system.rst @@ -3,4 +3,4 @@ salt.modules.win_system .. automodule:: salt.modules.win_system :members: - :exclude-members: get_computer_description, set_computer_description \ No newline at end of file + :exclude-members: get_computer_description, set_computer_description diff --git a/doc/ref/modules/all/salt.modules.win_timezone.rst b/doc/ref/modules/all/salt.modules.win_timezone.rst index 7fc15e12a19..b032ac5a963 100644 --- a/doc/ref/modules/all/salt.modules.win_timezone.rst +++ b/doc/ref/modules/all/salt.modules.win_timezone.rst @@ -2,4 +2,4 @@ salt.modules.win_timezone ========================= .. automodule:: salt.modules.win_timezone - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.win_useradd.rst b/doc/ref/modules/all/salt.modules.win_useradd.rst index 112303c89dd..0524a5fb5cb 100644 --- a/doc/ref/modules/all/salt.modules.win_useradd.rst +++ b/doc/ref/modules/all/salt.modules.win_useradd.rst @@ -2,4 +2,4 @@ salt.modules.win_useradd ======================== .. automodule:: salt.modules.win_useradd - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.xmpp.rst b/doc/ref/modules/all/salt.modules.xmpp.rst index 6b12c54d1b8..6bf919731bd 100644 --- a/doc/ref/modules/all/salt.modules.xmpp.rst +++ b/doc/ref/modules/all/salt.modules.xmpp.rst @@ -2,4 +2,4 @@ salt.modules.xmpp ================= .. automodule:: salt.modules.xmpp - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.zcbuildout.rst b/doc/ref/modules/all/salt.modules.zcbuildout.rst index cc729689b4e..4554bdfb2fe 100644 --- a/doc/ref/modules/all/salt.modules.zcbuildout.rst +++ b/doc/ref/modules/all/salt.modules.zcbuildout.rst @@ -2,4 +2,4 @@ salt.modules.zcbuildout ======================= .. automodule:: salt.modules.zcbuildout - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.zfs.rst b/doc/ref/modules/all/salt.modules.zfs.rst index 6569894a5e3..5191df65008 100644 --- a/doc/ref/modules/all/salt.modules.zfs.rst +++ b/doc/ref/modules/all/salt.modules.zfs.rst @@ -2,4 +2,4 @@ salt.modules.zfs ================ .. automodule:: salt.modules.zfs - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.znc.rst b/doc/ref/modules/all/salt.modules.znc.rst index 8eceafa3c56..b90be977bb5 100644 --- a/doc/ref/modules/all/salt.modules.znc.rst +++ b/doc/ref/modules/all/salt.modules.znc.rst @@ -2,4 +2,4 @@ salt.modules.znc ================ .. automodule:: salt.modules.znc - :members: \ No newline at end of file + :members: diff --git a/doc/ref/modules/all/salt.modules.zpool.rst b/doc/ref/modules/all/salt.modules.zpool.rst index e5988baad96..d11b90d3cc8 100644 --- a/doc/ref/modules/all/salt.modules.zpool.rst +++ b/doc/ref/modules/all/salt.modules.zpool.rst @@ -2,4 +2,4 @@ salt.modules.zpool ================== .. automodule:: salt.modules.zpool - :members: \ No newline at end of file + :members: diff --git a/doc/ref/netapi/all/salt.netapi.rest_wsgi.rst b/doc/ref/netapi/all/salt.netapi.rest_wsgi.rst index 1bbfc51c56c..0398e78ce0e 100644 --- a/doc/ref/netapi/all/salt.netapi.rest_wsgi.rst +++ b/doc/ref/netapi/all/salt.netapi.rest_wsgi.rst @@ -3,4 +3,4 @@ rest_wsgi .. automodule:: salt.netapi.rest_wsgi -.. py:currentmodule:: salt.netapi.rest_wsgi \ No newline at end of file +.. py:currentmodule:: salt.netapi.rest_wsgi diff --git a/doc/ref/output/all/salt.output.highstate.rst b/doc/ref/output/all/salt.output.highstate.rst index 8821301d1b0..fc3906d9942 100644 --- a/doc/ref/output/all/salt.output.highstate.rst +++ b/doc/ref/output/all/salt.output.highstate.rst @@ -2,4 +2,4 @@ salt.output.highstate ===================== .. automodule:: salt.output.highstate - :members: \ No newline at end of file + :members: diff --git a/doc/ref/output/all/salt.output.json_out.rst b/doc/ref/output/all/salt.output.json_out.rst index 599b44650c7..0abdfbfd779 100644 --- a/doc/ref/output/all/salt.output.json_out.rst +++ b/doc/ref/output/all/salt.output.json_out.rst @@ -2,4 +2,4 @@ salt.output.json_out ==================== .. automodule:: salt.output.json_out - :members: \ No newline at end of file + :members: diff --git a/doc/ref/output/all/salt.output.key.rst b/doc/ref/output/all/salt.output.key.rst index 2819fb4a293..f16b163708a 100644 --- a/doc/ref/output/all/salt.output.key.rst +++ b/doc/ref/output/all/salt.output.key.rst @@ -2,4 +2,4 @@ salt.output.key =============== .. automodule:: salt.output.key - :members: \ No newline at end of file + :members: diff --git a/doc/ref/output/all/salt.output.nested.rst b/doc/ref/output/all/salt.output.nested.rst index cb1174abbaf..7668cd573a9 100644 --- a/doc/ref/output/all/salt.output.nested.rst +++ b/doc/ref/output/all/salt.output.nested.rst @@ -2,4 +2,4 @@ salt.output.nested ================== .. automodule:: salt.output.nested - :members: \ No newline at end of file + :members: diff --git a/doc/ref/output/all/salt.output.newline_values_only.rst b/doc/ref/output/all/salt.output.newline_values_only.rst index 73a8b7a92e0..80048846803 100644 --- a/doc/ref/output/all/salt.output.newline_values_only.rst +++ b/doc/ref/output/all/salt.output.newline_values_only.rst @@ -2,4 +2,4 @@ salt.output.newline_values_only =============================== .. automodule:: salt.output.newline_values_only - :members: \ No newline at end of file + :members: diff --git a/doc/ref/output/all/salt.output.no_return.rst b/doc/ref/output/all/salt.output.no_return.rst index 3b6abb25db9..e50116b2465 100644 --- a/doc/ref/output/all/salt.output.no_return.rst +++ b/doc/ref/output/all/salt.output.no_return.rst @@ -2,4 +2,4 @@ salt.output.no_return ===================== .. automodule:: salt.output.no_return - :members: \ No newline at end of file + :members: diff --git a/doc/ref/output/all/salt.output.overstatestage.rst b/doc/ref/output/all/salt.output.overstatestage.rst index 19c4318f4e8..bc2b60c2234 100644 --- a/doc/ref/output/all/salt.output.overstatestage.rst +++ b/doc/ref/output/all/salt.output.overstatestage.rst @@ -2,4 +2,4 @@ salt.output.overstatestage ========================== .. automodule:: salt.output.overstatestage - :members: \ No newline at end of file + :members: diff --git a/doc/ref/output/all/salt.output.pprint_out.rst b/doc/ref/output/all/salt.output.pprint_out.rst index ff57fe28b71..0677da601d7 100644 --- a/doc/ref/output/all/salt.output.pprint_out.rst +++ b/doc/ref/output/all/salt.output.pprint_out.rst @@ -2,4 +2,4 @@ salt.output.pprint_out ====================== .. automodule:: salt.output.pprint_out - :members: \ No newline at end of file + :members: diff --git a/doc/ref/output/all/salt.output.profile.rst b/doc/ref/output/all/salt.output.profile.rst index 9fd80339451..9f387ff30f7 100644 --- a/doc/ref/output/all/salt.output.profile.rst +++ b/doc/ref/output/all/salt.output.profile.rst @@ -2,4 +2,4 @@ salt.output.profile =================== .. automodule:: salt.output.profile - :members: \ No newline at end of file + :members: diff --git a/doc/ref/output/all/salt.output.raw.rst b/doc/ref/output/all/salt.output.raw.rst index 9ce43e6a553..cc909f453c6 100644 --- a/doc/ref/output/all/salt.output.raw.rst +++ b/doc/ref/output/all/salt.output.raw.rst @@ -2,4 +2,4 @@ salt.output.raw =============== .. automodule:: salt.output.raw - :members: \ No newline at end of file + :members: diff --git a/doc/ref/output/all/salt.output.txt.rst b/doc/ref/output/all/salt.output.txt.rst index 22141abbf0c..6035e513bba 100644 --- a/doc/ref/output/all/salt.output.txt.rst +++ b/doc/ref/output/all/salt.output.txt.rst @@ -2,4 +2,4 @@ salt.output.txt =============== .. automodule:: salt.output.txt - :members: \ No newline at end of file + :members: diff --git a/doc/ref/output/all/salt.output.virt_query.rst b/doc/ref/output/all/salt.output.virt_query.rst index a91f1daef35..4c32ded98b4 100644 --- a/doc/ref/output/all/salt.output.virt_query.rst +++ b/doc/ref/output/all/salt.output.virt_query.rst @@ -2,4 +2,4 @@ salt.output.virt_query ====================== .. automodule:: salt.output.virt_query - :members: \ No newline at end of file + :members: diff --git a/doc/ref/output/all/salt.output.yaml_out.rst b/doc/ref/output/all/salt.output.yaml_out.rst index 502379347c0..09978128378 100644 --- a/doc/ref/output/all/salt.output.yaml_out.rst +++ b/doc/ref/output/all/salt.output.yaml_out.rst @@ -2,4 +2,4 @@ salt.output.yaml_out ==================== .. automodule:: salt.output.yaml_out - :members: \ No newline at end of file + :members: diff --git a/doc/ref/pillar/all/salt.pillar.cmd_json.rst b/doc/ref/pillar/all/salt.pillar.cmd_json.rst index 7441cd4fd92..16a3fae8396 100644 --- a/doc/ref/pillar/all/salt.pillar.cmd_json.rst +++ b/doc/ref/pillar/all/salt.pillar.cmd_json.rst @@ -2,4 +2,4 @@ salt.pillar.cmd_json ==================== .. automodule:: salt.pillar.cmd_json - :members: \ No newline at end of file + :members: diff --git a/doc/ref/pillar/all/salt.pillar.cmd_yaml.rst b/doc/ref/pillar/all/salt.pillar.cmd_yaml.rst index 3e8bf047776..0c92e515b6c 100644 --- a/doc/ref/pillar/all/salt.pillar.cmd_yaml.rst +++ b/doc/ref/pillar/all/salt.pillar.cmd_yaml.rst @@ -2,4 +2,4 @@ salt.pillar.cmd_yaml ==================== .. automodule:: salt.pillar.cmd_yaml - :members: \ No newline at end of file + :members: diff --git a/doc/ref/pillar/all/salt.pillar.cmd_yamlex.rst b/doc/ref/pillar/all/salt.pillar.cmd_yamlex.rst index 63b72047277..d07d1c458a3 100644 --- a/doc/ref/pillar/all/salt.pillar.cmd_yamlex.rst +++ b/doc/ref/pillar/all/salt.pillar.cmd_yamlex.rst @@ -2,4 +2,4 @@ salt.pillar.cmd_yamlex ====================== .. automodule:: salt.pillar.cmd_yamlex - :members: \ No newline at end of file + :members: diff --git a/doc/ref/pillar/all/salt.pillar.cobbler.rst b/doc/ref/pillar/all/salt.pillar.cobbler.rst index f69e8ab9f44..3d0d5e00b99 100644 --- a/doc/ref/pillar/all/salt.pillar.cobbler.rst +++ b/doc/ref/pillar/all/salt.pillar.cobbler.rst @@ -2,4 +2,4 @@ salt.pillar.cobbler =================== .. automodule:: salt.pillar.cobbler - :members: \ No newline at end of file + :members: diff --git a/doc/ref/pillar/all/salt.pillar.confidant.rst b/doc/ref/pillar/all/salt.pillar.confidant.rst index 64689d58465..5fc47a80482 100644 --- a/doc/ref/pillar/all/salt.pillar.confidant.rst +++ b/doc/ref/pillar/all/salt.pillar.confidant.rst @@ -2,4 +2,4 @@ salt.pillar.confidant ===================== .. automodule:: salt.pillar.confidant - :members: \ No newline at end of file + :members: diff --git a/doc/ref/pillar/all/salt.pillar.django_orm.rst b/doc/ref/pillar/all/salt.pillar.django_orm.rst index d8465e67f5b..e8078618d3d 100644 --- a/doc/ref/pillar/all/salt.pillar.django_orm.rst +++ b/doc/ref/pillar/all/salt.pillar.django_orm.rst @@ -2,4 +2,4 @@ salt.pillar.django_orm ====================== .. automodule:: salt.pillar.django_orm - :members: \ No newline at end of file + :members: diff --git a/doc/ref/pillar/all/salt.pillar.ec2_pillar.rst b/doc/ref/pillar/all/salt.pillar.ec2_pillar.rst index 832f412e9ab..ca365a6bee7 100644 --- a/doc/ref/pillar/all/salt.pillar.ec2_pillar.rst +++ b/doc/ref/pillar/all/salt.pillar.ec2_pillar.rst @@ -2,4 +2,4 @@ salt.pillar.ec2_pillar ====================== .. automodule:: salt.pillar.ec2_pillar - :members: \ No newline at end of file + :members: diff --git a/doc/ref/pillar/all/salt.pillar.etcd_pillar.rst b/doc/ref/pillar/all/salt.pillar.etcd_pillar.rst index 6298874b1a6..d7c176e7b07 100644 --- a/doc/ref/pillar/all/salt.pillar.etcd_pillar.rst +++ b/doc/ref/pillar/all/salt.pillar.etcd_pillar.rst @@ -2,4 +2,4 @@ salt.pillar.etcd_pillar ======================= .. automodule:: salt.pillar.etcd_pillar - :members: \ No newline at end of file + :members: diff --git a/doc/ref/pillar/all/salt.pillar.foreman.rst b/doc/ref/pillar/all/salt.pillar.foreman.rst index 684b38edb41..6f3004dbc6a 100644 --- a/doc/ref/pillar/all/salt.pillar.foreman.rst +++ b/doc/ref/pillar/all/salt.pillar.foreman.rst @@ -2,4 +2,4 @@ salt.pillar.foreman =================== .. automodule:: salt.pillar.foreman - :members: \ No newline at end of file + :members: diff --git a/doc/ref/pillar/all/salt.pillar.git_pillar.rst b/doc/ref/pillar/all/salt.pillar.git_pillar.rst index 860df85a5d7..4add5730e8e 100644 --- a/doc/ref/pillar/all/salt.pillar.git_pillar.rst +++ b/doc/ref/pillar/all/salt.pillar.git_pillar.rst @@ -2,4 +2,4 @@ salt.pillar.git_pillar ====================== .. automodule:: salt.pillar.git_pillar - :members: \ No newline at end of file + :members: diff --git a/doc/ref/pillar/all/salt.pillar.hg_pillar.rst b/doc/ref/pillar/all/salt.pillar.hg_pillar.rst index 6b9e5cf958b..cb44a01f963 100644 --- a/doc/ref/pillar/all/salt.pillar.hg_pillar.rst +++ b/doc/ref/pillar/all/salt.pillar.hg_pillar.rst @@ -2,4 +2,4 @@ salt.pillar.hg_pillar ===================== .. automodule:: salt.pillar.hg_pillar - :members: \ No newline at end of file + :members: diff --git a/doc/ref/pillar/all/salt.pillar.hiera.rst b/doc/ref/pillar/all/salt.pillar.hiera.rst index 8d659973aa0..12a9fd8a86e 100644 --- a/doc/ref/pillar/all/salt.pillar.hiera.rst +++ b/doc/ref/pillar/all/salt.pillar.hiera.rst @@ -2,4 +2,4 @@ salt.pillar.hiera ================= .. automodule:: salt.pillar.hiera - :members: \ No newline at end of file + :members: diff --git a/doc/ref/pillar/all/salt.pillar.libvirt.rst b/doc/ref/pillar/all/salt.pillar.libvirt.rst index 0e04bec757d..0119fddcfd7 100644 --- a/doc/ref/pillar/all/salt.pillar.libvirt.rst +++ b/doc/ref/pillar/all/salt.pillar.libvirt.rst @@ -2,4 +2,4 @@ salt.pillar.libvirt =================== .. automodule:: salt.pillar.libvirt - :members: \ No newline at end of file + :members: diff --git a/doc/ref/pillar/all/salt.pillar.mongo.rst b/doc/ref/pillar/all/salt.pillar.mongo.rst index 4589468b075..96ee523b503 100644 --- a/doc/ref/pillar/all/salt.pillar.mongo.rst +++ b/doc/ref/pillar/all/salt.pillar.mongo.rst @@ -2,4 +2,4 @@ salt.pillar.mongo ================= .. automodule:: salt.pillar.mongo - :members: \ No newline at end of file + :members: diff --git a/doc/ref/pillar/all/salt.pillar.mysql.rst b/doc/ref/pillar/all/salt.pillar.mysql.rst index cf9f01c5ce1..0f35514b00f 100644 --- a/doc/ref/pillar/all/salt.pillar.mysql.rst +++ b/doc/ref/pillar/all/salt.pillar.mysql.rst @@ -2,4 +2,4 @@ salt.pillar.mysql ================= .. automodule:: salt.pillar.mysql - :members: \ No newline at end of file + :members: diff --git a/doc/ref/pillar/all/salt.pillar.pepa.rst b/doc/ref/pillar/all/salt.pillar.pepa.rst index e6efebca74f..d6dbb5c597e 100644 --- a/doc/ref/pillar/all/salt.pillar.pepa.rst +++ b/doc/ref/pillar/all/salt.pillar.pepa.rst @@ -2,4 +2,4 @@ salt.pillar.pepa ================ .. automodule:: salt.pillar.pepa - :members: \ No newline at end of file + :members: diff --git a/doc/ref/pillar/all/salt.pillar.pillar_ldap.rst b/doc/ref/pillar/all/salt.pillar.pillar_ldap.rst index 06a4090128d..2b034cc339f 100644 --- a/doc/ref/pillar/all/salt.pillar.pillar_ldap.rst +++ b/doc/ref/pillar/all/salt.pillar.pillar_ldap.rst @@ -2,4 +2,4 @@ salt.pillar.pillar_ldap ======================= .. automodule:: salt.pillar.pillar_ldap - :members: \ No newline at end of file + :members: diff --git a/doc/ref/pillar/all/salt.pillar.puppet.rst b/doc/ref/pillar/all/salt.pillar.puppet.rst index 5c015a2f387..074db0004ec 100644 --- a/doc/ref/pillar/all/salt.pillar.puppet.rst +++ b/doc/ref/pillar/all/salt.pillar.puppet.rst @@ -2,4 +2,4 @@ salt.pillar.puppet ================== .. automodule:: salt.pillar.puppet - :members: \ No newline at end of file + :members: diff --git a/doc/ref/pillar/all/salt.pillar.reclass_adapter.rst b/doc/ref/pillar/all/salt.pillar.reclass_adapter.rst index 09044d00e62..b0f983d6390 100644 --- a/doc/ref/pillar/all/salt.pillar.reclass_adapter.rst +++ b/doc/ref/pillar/all/salt.pillar.reclass_adapter.rst @@ -2,4 +2,4 @@ salt.pillar.reclass_adapter =========================== .. automodule:: salt.pillar.reclass_adapter - :members: \ No newline at end of file + :members: diff --git a/doc/ref/pillar/all/salt.pillar.redismod.rst b/doc/ref/pillar/all/salt.pillar.redismod.rst index f17e520b242..4c4f43a17e5 100644 --- a/doc/ref/pillar/all/salt.pillar.redismod.rst +++ b/doc/ref/pillar/all/salt.pillar.redismod.rst @@ -2,4 +2,4 @@ salt.pillar.redismod ==================== .. automodule:: salt.pillar.redismod - :members: \ No newline at end of file + :members: diff --git a/doc/ref/pillar/all/salt.pillar.s3.rst b/doc/ref/pillar/all/salt.pillar.s3.rst index 298efca6ab2..a829ab68b6d 100644 --- a/doc/ref/pillar/all/salt.pillar.s3.rst +++ b/doc/ref/pillar/all/salt.pillar.s3.rst @@ -2,4 +2,4 @@ salt.pillar.s3 ============== .. automodule:: salt.pillar.s3 - :members: \ No newline at end of file + :members: diff --git a/doc/ref/pillar/all/salt.pillar.stack.rst b/doc/ref/pillar/all/salt.pillar.stack.rst index dff0461c5ca..99332dce5f6 100644 --- a/doc/ref/pillar/all/salt.pillar.stack.rst +++ b/doc/ref/pillar/all/salt.pillar.stack.rst @@ -2,4 +2,4 @@ salt.pillar.stack ================= .. automodule:: salt.pillar.stack - :members: \ No newline at end of file + :members: diff --git a/doc/ref/pillar/all/salt.pillar.svn_pillar.rst b/doc/ref/pillar/all/salt.pillar.svn_pillar.rst index d68541978a4..4e820faf2df 100644 --- a/doc/ref/pillar/all/salt.pillar.svn_pillar.rst +++ b/doc/ref/pillar/all/salt.pillar.svn_pillar.rst @@ -2,4 +2,4 @@ salt.pillar.svn_pillar ====================== .. automodule:: salt.pillar.svn_pillar - :members: \ No newline at end of file + :members: diff --git a/doc/ref/pillar/all/salt.pillar.virtkey.rst b/doc/ref/pillar/all/salt.pillar.virtkey.rst index 0ac3137052d..75187ee00f5 100644 --- a/doc/ref/pillar/all/salt.pillar.virtkey.rst +++ b/doc/ref/pillar/all/salt.pillar.virtkey.rst @@ -2,4 +2,4 @@ salt.pillar.virtkey =================== .. automodule:: salt.pillar.virtkey - :members: \ No newline at end of file + :members: diff --git a/doc/ref/proxy/all/salt.proxy.cisconso.rst b/doc/ref/proxy/all/salt.proxy.cisconso.rst index 745ca377b59..5b268fe6597 100644 --- a/doc/ref/proxy/all/salt.proxy.cisconso.rst +++ b/doc/ref/proxy/all/salt.proxy.cisconso.rst @@ -1,6 +1,6 @@ -=================== -salt.proxy.cisconso -=================== - -.. automodule:: salt.proxy.cisconso - :members: +=================== +salt.proxy.cisconso +=================== + +.. automodule:: salt.proxy.cisconso + :members: diff --git a/doc/ref/proxy/all/salt.proxy.nxos.rst b/doc/ref/proxy/all/salt.proxy.nxos.rst index 181a3bf42f7..a579b2c8a47 100644 --- a/doc/ref/proxy/all/salt.proxy.nxos.rst +++ b/doc/ref/proxy/all/salt.proxy.nxos.rst @@ -3,4 +3,3 @@ salt.proxy.nxos .. automodule:: salt.proxy.nxos :members: - diff --git a/doc/ref/proxy/all/salt.proxy.nxos_api.rst b/doc/ref/proxy/all/salt.proxy.nxos_api.rst index 01b482425fe..f0b838152f1 100644 --- a/doc/ref/proxy/all/salt.proxy.nxos_api.rst +++ b/doc/ref/proxy/all/salt.proxy.nxos_api.rst @@ -3,4 +3,3 @@ salt.proxy.nxos_api .. automodule:: salt.proxy.nxos_api :members: - diff --git a/doc/ref/python-api.rst b/doc/ref/python-api.rst index 1d150b85cfd..59a1cb88cc5 100644 --- a/doc/ref/python-api.rst +++ b/doc/ref/python-api.rst @@ -4,4 +4,4 @@ Python client API ================= -.. seealso:: Moved to :ref:`client-apis` \ No newline at end of file +.. seealso:: Moved to :ref:`client-apis` diff --git a/doc/ref/renderers/all/salt.renderers.gpg.rst b/doc/ref/renderers/all/salt.renderers.gpg.rst index 257618fc521..37ba556d00b 100644 --- a/doc/ref/renderers/all/salt.renderers.gpg.rst +++ b/doc/ref/renderers/all/salt.renderers.gpg.rst @@ -2,4 +2,4 @@ salt.renderers.gpg ================== .. automodule:: salt.renderers.gpg - :members: \ No newline at end of file + :members: diff --git a/doc/ref/renderers/all/salt.renderers.jinja.rst b/doc/ref/renderers/all/salt.renderers.jinja.rst index 28e5a2d74c8..e5c72b865a1 100644 --- a/doc/ref/renderers/all/salt.renderers.jinja.rst +++ b/doc/ref/renderers/all/salt.renderers.jinja.rst @@ -6,4 +6,4 @@ salt.renderers.jinja .. automodule:: salt.renderers.jinja :members: -.. autoclass:: salt.utils.jinja.SerializerExtension \ No newline at end of file +.. autoclass:: salt.utils.jinja.SerializerExtension diff --git a/doc/ref/renderers/all/salt.renderers.json.rst b/doc/ref/renderers/all/salt.renderers.json.rst index 68ebca23b97..e3b40dbc5d3 100644 --- a/doc/ref/renderers/all/salt.renderers.json.rst +++ b/doc/ref/renderers/all/salt.renderers.json.rst @@ -2,4 +2,4 @@ salt.renderers.json =================== .. automodule:: salt.renderers.json - :members: \ No newline at end of file + :members: diff --git a/doc/ref/renderers/all/salt.renderers.json5.rst b/doc/ref/renderers/all/salt.renderers.json5.rst index 6e7a84d642e..3c77b845de4 100644 --- a/doc/ref/renderers/all/salt.renderers.json5.rst +++ b/doc/ref/renderers/all/salt.renderers.json5.rst @@ -2,4 +2,4 @@ salt.renderers.json5 ==================== .. automodule:: salt.renderers.json5 - :members: \ No newline at end of file + :members: diff --git a/doc/ref/renderers/all/salt.renderers.mako.rst b/doc/ref/renderers/all/salt.renderers.mako.rst index ab4f75d8262..b20beaef065 100644 --- a/doc/ref/renderers/all/salt.renderers.mako.rst +++ b/doc/ref/renderers/all/salt.renderers.mako.rst @@ -2,4 +2,4 @@ salt.renderers.mako =================== .. automodule:: salt.renderers.mako - :members: \ No newline at end of file + :members: diff --git a/doc/ref/renderers/all/salt.renderers.msgpack.rst b/doc/ref/renderers/all/salt.renderers.msgpack.rst index 73de2a90bab..cbac58444e8 100644 --- a/doc/ref/renderers/all/salt.renderers.msgpack.rst +++ b/doc/ref/renderers/all/salt.renderers.msgpack.rst @@ -2,4 +2,4 @@ salt.renderers.msgpack ====================== .. automodule:: salt.renderers.msgpack - :members: \ No newline at end of file + :members: diff --git a/doc/ref/renderers/all/salt.renderers.py.rst b/doc/ref/renderers/all/salt.renderers.py.rst index ee70750508d..0c58fe9a792 100644 --- a/doc/ref/renderers/all/salt.renderers.py.rst +++ b/doc/ref/renderers/all/salt.renderers.py.rst @@ -2,4 +2,4 @@ salt.renderers.py ================= .. automodule:: salt.renderers.py - :members: \ No newline at end of file + :members: diff --git a/doc/ref/renderers/all/salt.renderers.pydsl.rst b/doc/ref/renderers/all/salt.renderers.pydsl.rst index 9a7dda9f3d0..f881c47bc71 100644 --- a/doc/ref/renderers/all/salt.renderers.pydsl.rst +++ b/doc/ref/renderers/all/salt.renderers.pydsl.rst @@ -2,4 +2,4 @@ salt.renderers.pydsl ==================== .. automodule:: salt.renderers.pydsl - :members: \ No newline at end of file + :members: diff --git a/doc/ref/renderers/all/salt.renderers.pyobjects.rst b/doc/ref/renderers/all/salt.renderers.pyobjects.rst index 729d1d4a1ca..b597edb10cf 100644 --- a/doc/ref/renderers/all/salt.renderers.pyobjects.rst +++ b/doc/ref/renderers/all/salt.renderers.pyobjects.rst @@ -2,4 +2,4 @@ salt.renderers.pyobjects ======================== .. automodule:: salt.renderers.pyobjects - :members: \ No newline at end of file + :members: diff --git a/doc/ref/renderers/all/salt.renderers.wempy.rst b/doc/ref/renderers/all/salt.renderers.wempy.rst index 3e6d61cbfde..ffc15b5bfac 100644 --- a/doc/ref/renderers/all/salt.renderers.wempy.rst +++ b/doc/ref/renderers/all/salt.renderers.wempy.rst @@ -2,4 +2,4 @@ salt.renderers.wempy ==================== .. automodule:: salt.renderers.wempy - :members: \ No newline at end of file + :members: diff --git a/doc/ref/renderers/all/salt.renderers.yaml.rst b/doc/ref/renderers/all/salt.renderers.yaml.rst index d58425524bd..8ec5c81ade1 100644 --- a/doc/ref/renderers/all/salt.renderers.yaml.rst +++ b/doc/ref/renderers/all/salt.renderers.yaml.rst @@ -79,4 +79,4 @@ Reference --------- .. automodule:: salt.renderers.yaml - :members: \ No newline at end of file + :members: diff --git a/doc/ref/renderers/all/salt.renderers.yamlex.rst b/doc/ref/renderers/all/salt.renderers.yamlex.rst index 5e54fa40862..e7077f0c41e 100644 --- a/doc/ref/renderers/all/salt.renderers.yamlex.rst +++ b/doc/ref/renderers/all/salt.renderers.yamlex.rst @@ -36,4 +36,4 @@ Reference --------- .. automodule:: salt.renderers.yamlex - :members: \ No newline at end of file + :members: diff --git a/doc/ref/returners/all/salt.returners.carbon_return.rst b/doc/ref/returners/all/salt.returners.carbon_return.rst index 00c5ed0b51e..ebb67ffe4b1 100644 --- a/doc/ref/returners/all/salt.returners.carbon_return.rst +++ b/doc/ref/returners/all/salt.returners.carbon_return.rst @@ -2,4 +2,4 @@ salt.returners.carbon_return ============================ .. automodule:: salt.returners.carbon_return - :members: \ No newline at end of file + :members: diff --git a/doc/ref/returners/all/salt.returners.cassandra_return.rst b/doc/ref/returners/all/salt.returners.cassandra_return.rst index 197fdab9649..a67ef5f0eff 100644 --- a/doc/ref/returners/all/salt.returners.cassandra_return.rst +++ b/doc/ref/returners/all/salt.returners.cassandra_return.rst @@ -2,4 +2,4 @@ salt.returners.cassandra_return =============================== .. automodule:: salt.returners.cassandra_return - :members: \ No newline at end of file + :members: diff --git a/doc/ref/returners/all/salt.returners.couchbase_return.rst b/doc/ref/returners/all/salt.returners.couchbase_return.rst index c0bc6c13541..6fcb0ca6fa6 100644 --- a/doc/ref/returners/all/salt.returners.couchbase_return.rst +++ b/doc/ref/returners/all/salt.returners.couchbase_return.rst @@ -2,4 +2,4 @@ salt.returners.couchbase_return =============================== .. automodule:: salt.returners.couchbase_return - :members: \ No newline at end of file + :members: diff --git a/doc/ref/returners/all/salt.returners.elasticsearch_return.rst b/doc/ref/returners/all/salt.returners.elasticsearch_return.rst index f3b7df77a6a..7275613f349 100644 --- a/doc/ref/returners/all/salt.returners.elasticsearch_return.rst +++ b/doc/ref/returners/all/salt.returners.elasticsearch_return.rst @@ -2,4 +2,4 @@ salt.returners.elasticsearch_return =================================== .. automodule:: salt.returners.elasticsearch_return - :members: \ No newline at end of file + :members: diff --git a/doc/ref/returners/all/salt.returners.librato_return.rst b/doc/ref/returners/all/salt.returners.librato_return.rst index 735cb8ea3fa..2bfe3791bbb 100644 --- a/doc/ref/returners/all/salt.returners.librato_return.rst +++ b/doc/ref/returners/all/salt.returners.librato_return.rst @@ -2,4 +2,4 @@ salt.returners.librato_return ============================= .. automodule:: salt.returners.librato_return - :members: \ No newline at end of file + :members: diff --git a/doc/ref/returners/all/salt.returners.local.rst b/doc/ref/returners/all/salt.returners.local.rst index 431cd1bd1b8..6d912360218 100644 --- a/doc/ref/returners/all/salt.returners.local.rst +++ b/doc/ref/returners/all/salt.returners.local.rst @@ -2,4 +2,4 @@ salt.returners.local ==================== .. automodule:: salt.returners.local - :members: \ No newline at end of file + :members: diff --git a/doc/ref/returners/all/salt.returners.local_cache.rst b/doc/ref/returners/all/salt.returners.local_cache.rst index 5777a564e0d..be97ded3348 100644 --- a/doc/ref/returners/all/salt.returners.local_cache.rst +++ b/doc/ref/returners/all/salt.returners.local_cache.rst @@ -2,4 +2,4 @@ salt.returners.local_cache ========================== .. automodule:: salt.returners.local_cache - :members: \ No newline at end of file + :members: diff --git a/doc/ref/returners/all/salt.returners.nagios_nrdp_return.rst b/doc/ref/returners/all/salt.returners.nagios_nrdp_return.rst index 62b13289def..8f84811e2f9 100644 --- a/doc/ref/returners/all/salt.returners.nagios_nrdp_return.rst +++ b/doc/ref/returners/all/salt.returners.nagios_nrdp_return.rst @@ -2,4 +2,4 @@ salt.returners.nagios_nrdp_return ================================= .. automodule:: salt.returners.nagios_nrdp_return - :members: \ No newline at end of file + :members: diff --git a/doc/ref/returners/all/salt.returners.rawfile_json.rst b/doc/ref/returners/all/salt.returners.rawfile_json.rst index 86d69204f4f..f4cc71eba2b 100644 --- a/doc/ref/returners/all/salt.returners.rawfile_json.rst +++ b/doc/ref/returners/all/salt.returners.rawfile_json.rst @@ -2,4 +2,4 @@ salt.returners.rawfile_json =========================== .. automodule:: salt.returners.rawfile_json - :members: \ No newline at end of file + :members: diff --git a/doc/ref/returners/all/salt.returners.sentry_return.rst b/doc/ref/returners/all/salt.returners.sentry_return.rst index 033ed46fc32..2a7fed9796b 100644 --- a/doc/ref/returners/all/salt.returners.sentry_return.rst +++ b/doc/ref/returners/all/salt.returners.sentry_return.rst @@ -2,4 +2,4 @@ salt.returners.sentry_return ============================ .. automodule:: salt.returners.sentry_return - :members: \ No newline at end of file + :members: diff --git a/doc/ref/returners/all/salt.returners.smtp_return.rst b/doc/ref/returners/all/salt.returners.smtp_return.rst index 514b18eb05a..af158c8ca02 100644 --- a/doc/ref/returners/all/salt.returners.smtp_return.rst +++ b/doc/ref/returners/all/salt.returners.smtp_return.rst @@ -2,4 +2,4 @@ salt.returners.smtp_return ========================== .. automodule:: salt.returners.smtp_return - :members: \ No newline at end of file + :members: diff --git a/doc/ref/returners/all/salt.returners.syslog_return.rst b/doc/ref/returners/all/salt.returners.syslog_return.rst index 92a6c99300f..ae6f2c99f8e 100644 --- a/doc/ref/returners/all/salt.returners.syslog_return.rst +++ b/doc/ref/returners/all/salt.returners.syslog_return.rst @@ -2,4 +2,4 @@ salt.returners.syslog_return ============================ .. automodule:: salt.returners.syslog_return - :members: \ No newline at end of file + :members: diff --git a/doc/ref/returners/all/salt.returners.telegram_return.rst b/doc/ref/returners/all/salt.returners.telegram_return.rst index 32efdf5ba20..14e9ef6e048 100644 --- a/doc/ref/returners/all/salt.returners.telegram_return.rst +++ b/doc/ref/returners/all/salt.returners.telegram_return.rst @@ -2,4 +2,4 @@ salt.returners.telegram_return ============================== .. automodule:: salt.returners.telegram_return - :members: \ No newline at end of file + :members: diff --git a/doc/ref/roster/all/salt.roster.ansible.rst b/doc/ref/roster/all/salt.roster.ansible.rst index ab3f569a164..1d7f4c8b5a5 100644 --- a/doc/ref/roster/all/salt.roster.ansible.rst +++ b/doc/ref/roster/all/salt.roster.ansible.rst @@ -2,4 +2,4 @@ salt.roster.ansible =================== .. automodule:: salt.roster.ansible - :members: \ No newline at end of file + :members: diff --git a/doc/ref/roster/all/salt.roster.cache.rst b/doc/ref/roster/all/salt.roster.cache.rst index 1336edf69f1..3d41d2b1568 100644 --- a/doc/ref/roster/all/salt.roster.cache.rst +++ b/doc/ref/roster/all/salt.roster.cache.rst @@ -2,4 +2,4 @@ salt.roster.cache ================= .. automodule:: salt.roster.cache - :members: \ No newline at end of file + :members: diff --git a/doc/ref/roster/all/salt.roster.cloud.rst b/doc/ref/roster/all/salt.roster.cloud.rst index fe794b41ef5..96db467227b 100644 --- a/doc/ref/roster/all/salt.roster.cloud.rst +++ b/doc/ref/roster/all/salt.roster.cloud.rst @@ -2,4 +2,4 @@ salt.roster.cloud ================= .. automodule:: salt.roster.cloud - :members: \ No newline at end of file + :members: diff --git a/doc/ref/roster/all/salt.roster.clustershell.rst b/doc/ref/roster/all/salt.roster.clustershell.rst index 34d42c5728e..afb510a536d 100644 --- a/doc/ref/roster/all/salt.roster.clustershell.rst +++ b/doc/ref/roster/all/salt.roster.clustershell.rst @@ -2,4 +2,4 @@ salt.roster.clustershell ======================== .. automodule:: salt.roster.clustershell - :members: \ No newline at end of file + :members: diff --git a/doc/ref/roster/all/salt.roster.flat.rst b/doc/ref/roster/all/salt.roster.flat.rst index fcb0c6b4588..1430a34691b 100644 --- a/doc/ref/roster/all/salt.roster.flat.rst +++ b/doc/ref/roster/all/salt.roster.flat.rst @@ -2,4 +2,4 @@ salt.roster.flat ================ .. automodule:: salt.roster.flat - :members: \ No newline at end of file + :members: diff --git a/doc/ref/roster/all/salt.roster.scan.rst b/doc/ref/roster/all/salt.roster.scan.rst index fb3e24394d9..9000ea48742 100644 --- a/doc/ref/roster/all/salt.roster.scan.rst +++ b/doc/ref/roster/all/salt.roster.scan.rst @@ -2,4 +2,4 @@ salt.roster.scan ================ .. automodule:: salt.roster.scan - :members: \ No newline at end of file + :members: diff --git a/doc/ref/runners/all/salt.runners.cache.rst b/doc/ref/runners/all/salt.runners.cache.rst index d7a45cb52d5..8fef3e68cfd 100644 --- a/doc/ref/runners/all/salt.runners.cache.rst +++ b/doc/ref/runners/all/salt.runners.cache.rst @@ -2,4 +2,4 @@ salt.runners.cache ================== .. automodule:: salt.runners.cache - :members: \ No newline at end of file + :members: diff --git a/doc/ref/runners/all/salt.runners.cloud.rst b/doc/ref/runners/all/salt.runners.cloud.rst index 534aee88012..d7acf831f19 100644 --- a/doc/ref/runners/all/salt.runners.cloud.rst +++ b/doc/ref/runners/all/salt.runners.cloud.rst @@ -2,4 +2,4 @@ salt.runners.cloud ================== .. automodule:: salt.runners.cloud - :members: \ No newline at end of file + :members: diff --git a/doc/ref/runners/all/salt.runners.doc.rst b/doc/ref/runners/all/salt.runners.doc.rst index 1a1245787c2..3121e5a65ff 100644 --- a/doc/ref/runners/all/salt.runners.doc.rst +++ b/doc/ref/runners/all/salt.runners.doc.rst @@ -2,4 +2,4 @@ salt.runners.doc ================ .. automodule:: salt.runners.doc - :members: \ No newline at end of file + :members: diff --git a/doc/ref/runners/all/salt.runners.error.rst b/doc/ref/runners/all/salt.runners.error.rst index 0d88fca9152..dc46becded5 100644 --- a/doc/ref/runners/all/salt.runners.error.rst +++ b/doc/ref/runners/all/salt.runners.error.rst @@ -2,4 +2,4 @@ salt.runners.error ================== .. automodule:: salt.runners.error - :members: \ No newline at end of file + :members: diff --git a/doc/ref/runners/all/salt.runners.fileserver.rst b/doc/ref/runners/all/salt.runners.fileserver.rst index 8eb5c7f3aa0..a20f2b03e76 100644 --- a/doc/ref/runners/all/salt.runners.fileserver.rst +++ b/doc/ref/runners/all/salt.runners.fileserver.rst @@ -2,4 +2,4 @@ salt.runners.fileserver ======================= .. automodule:: salt.runners.fileserver - :members: \ No newline at end of file + :members: diff --git a/doc/ref/runners/all/salt.runners.git_pillar.rst b/doc/ref/runners/all/salt.runners.git_pillar.rst index 7d41d1b9454..f8b966a7d1a 100644 --- a/doc/ref/runners/all/salt.runners.git_pillar.rst +++ b/doc/ref/runners/all/salt.runners.git_pillar.rst @@ -2,4 +2,4 @@ salt.runners.git_pillar ======================= .. automodule:: salt.runners.git_pillar - :members: \ No newline at end of file + :members: diff --git a/doc/ref/runners/all/salt.runners.jobs.rst b/doc/ref/runners/all/salt.runners.jobs.rst index 220be107b2d..aa5ab5f8426 100644 --- a/doc/ref/runners/all/salt.runners.jobs.rst +++ b/doc/ref/runners/all/salt.runners.jobs.rst @@ -2,4 +2,4 @@ salt.runners.jobs ================= .. automodule:: salt.runners.jobs - :members: \ No newline at end of file + :members: diff --git a/doc/ref/runners/all/salt.runners.launchd.rst b/doc/ref/runners/all/salt.runners.launchd.rst index ed9b114ee51..7642a651719 100644 --- a/doc/ref/runners/all/salt.runners.launchd.rst +++ b/doc/ref/runners/all/salt.runners.launchd.rst @@ -2,4 +2,4 @@ salt.runners.launchd ==================== .. automodule:: salt.runners.launchd - :members: \ No newline at end of file + :members: diff --git a/doc/ref/runners/all/salt.runners.lxc.rst b/doc/ref/runners/all/salt.runners.lxc.rst index b784950c8b1..9a2c57c6d91 100644 --- a/doc/ref/runners/all/salt.runners.lxc.rst +++ b/doc/ref/runners/all/salt.runners.lxc.rst @@ -2,4 +2,4 @@ salt.runners.lxc ================ .. automodule:: salt.runners.lxc - :members: \ No newline at end of file + :members: diff --git a/doc/ref/runners/all/salt.runners.manage.rst b/doc/ref/runners/all/salt.runners.manage.rst index c5f3eac6eef..0ab99f607c6 100644 --- a/doc/ref/runners/all/salt.runners.manage.rst +++ b/doc/ref/runners/all/salt.runners.manage.rst @@ -2,4 +2,4 @@ salt.runners.manage =================== .. automodule:: salt.runners.manage - :members: \ No newline at end of file + :members: diff --git a/doc/ref/runners/all/salt.runners.mine.rst b/doc/ref/runners/all/salt.runners.mine.rst index b9e5c85f6d9..8889d004023 100644 --- a/doc/ref/runners/all/salt.runners.mine.rst +++ b/doc/ref/runners/all/salt.runners.mine.rst @@ -2,4 +2,4 @@ salt.runners.mine ================= .. automodule:: salt.runners.mine - :members: \ No newline at end of file + :members: diff --git a/doc/ref/runners/all/salt.runners.network.rst b/doc/ref/runners/all/salt.runners.network.rst index 8fbf488dcd3..0a900fdaf55 100644 --- a/doc/ref/runners/all/salt.runners.network.rst +++ b/doc/ref/runners/all/salt.runners.network.rst @@ -2,4 +2,4 @@ salt.runners.network ==================== .. automodule:: salt.runners.network - :members: \ No newline at end of file + :members: diff --git a/doc/ref/runners/all/salt.runners.pillar.rst b/doc/ref/runners/all/salt.runners.pillar.rst index 0e64bcb3b28..0f8cccc4946 100644 --- a/doc/ref/runners/all/salt.runners.pillar.rst +++ b/doc/ref/runners/all/salt.runners.pillar.rst @@ -2,4 +2,4 @@ salt.runners.pillar =================== .. automodule:: salt.runners.pillar - :members: \ No newline at end of file + :members: diff --git a/doc/ref/runners/all/salt.runners.queue.rst b/doc/ref/runners/all/salt.runners.queue.rst index e9ee77a2d7d..6ffa9910993 100644 --- a/doc/ref/runners/all/salt.runners.queue.rst +++ b/doc/ref/runners/all/salt.runners.queue.rst @@ -2,4 +2,4 @@ salt.runners.queue ================== .. automodule:: salt.runners.queue - :members: \ No newline at end of file + :members: diff --git a/doc/ref/runners/all/salt.runners.reactor.rst b/doc/ref/runners/all/salt.runners.reactor.rst index 8408906d16f..a2f464cd5ae 100644 --- a/doc/ref/runners/all/salt.runners.reactor.rst +++ b/doc/ref/runners/all/salt.runners.reactor.rst @@ -2,4 +2,4 @@ salt.runners.reactor ==================== .. automodule:: salt.runners.reactor - :members: \ No newline at end of file + :members: diff --git a/doc/ref/runners/all/salt.runners.sdb.rst b/doc/ref/runners/all/salt.runners.sdb.rst index 4b6f0322bda..992bb8e8334 100644 --- a/doc/ref/runners/all/salt.runners.sdb.rst +++ b/doc/ref/runners/all/salt.runners.sdb.rst @@ -2,4 +2,4 @@ salt.runners.sdb ================ .. automodule:: salt.runners.sdb - :members: \ No newline at end of file + :members: diff --git a/doc/ref/runners/all/salt.runners.survey.rst b/doc/ref/runners/all/salt.runners.survey.rst index b8f29ede6c9..865c16f60c2 100644 --- a/doc/ref/runners/all/salt.runners.survey.rst +++ b/doc/ref/runners/all/salt.runners.survey.rst @@ -2,4 +2,4 @@ salt.runners.survey =================== .. automodule:: salt.runners.survey - :members: \ No newline at end of file + :members: diff --git a/doc/ref/runners/all/salt.runners.thin.rst b/doc/ref/runners/all/salt.runners.thin.rst index d2525471e71..090e8f568c3 100644 --- a/doc/ref/runners/all/salt.runners.thin.rst +++ b/doc/ref/runners/all/salt.runners.thin.rst @@ -2,4 +2,4 @@ salt.runners.thin ================= .. automodule:: salt.runners.thin - :members: \ No newline at end of file + :members: diff --git a/doc/ref/runners/all/salt.runners.virt.rst b/doc/ref/runners/all/salt.runners.virt.rst index 2f7c13796a4..04d5275d552 100644 --- a/doc/ref/runners/all/salt.runners.virt.rst +++ b/doc/ref/runners/all/salt.runners.virt.rst @@ -2,4 +2,4 @@ salt.runners.virt ================= .. automodule:: salt.runners.virt - :members: \ No newline at end of file + :members: diff --git a/doc/ref/runners/all/salt.runners.winrepo.rst b/doc/ref/runners/all/salt.runners.winrepo.rst index ec7bd7273e0..9f22cbabc5d 100644 --- a/doc/ref/runners/all/salt.runners.winrepo.rst +++ b/doc/ref/runners/all/salt.runners.winrepo.rst @@ -2,4 +2,4 @@ salt.runners.winrepo ==================== .. automodule:: salt.runners.winrepo - :members: \ No newline at end of file + :members: diff --git a/doc/ref/sdb/all/index.rst b/doc/ref/sdb/all/index.rst index 3e34d4e4c67..958970eac38 100644 --- a/doc/ref/sdb/all/index.rst +++ b/doc/ref/sdb/all/index.rst @@ -24,4 +24,3 @@ sdb modules tism vault yaml - diff --git a/doc/ref/sdb/all/salt.sdb.confidant.rst b/doc/ref/sdb/all/salt.sdb.confidant.rst index 5294489d8c4..b47aee30994 100644 --- a/doc/ref/sdb/all/salt.sdb.confidant.rst +++ b/doc/ref/sdb/all/salt.sdb.confidant.rst @@ -2,4 +2,4 @@ salt.sdb.confidant ================== .. automodule:: salt.sdb.confidant - :members: \ No newline at end of file + :members: diff --git a/doc/ref/sdb/all/salt.sdb.couchdb.rst b/doc/ref/sdb/all/salt.sdb.couchdb.rst index 05132a4d5fb..e57f5615f92 100644 --- a/doc/ref/sdb/all/salt.sdb.couchdb.rst +++ b/doc/ref/sdb/all/salt.sdb.couchdb.rst @@ -2,4 +2,4 @@ salt.sdb.couchdb ================ .. automodule:: salt.sdb.couchdb - :members: \ No newline at end of file + :members: diff --git a/doc/ref/sdb/all/salt.sdb.etcd_db.rst b/doc/ref/sdb/all/salt.sdb.etcd_db.rst index cf21f6f7e66..a2870b97377 100644 --- a/doc/ref/sdb/all/salt.sdb.etcd_db.rst +++ b/doc/ref/sdb/all/salt.sdb.etcd_db.rst @@ -2,4 +2,4 @@ salt.sdb.etcd_db ================ .. automodule:: salt.sdb.etcd_db - :members: \ No newline at end of file + :members: diff --git a/doc/ref/sdb/all/salt.sdb.keyring_db.rst b/doc/ref/sdb/all/salt.sdb.keyring_db.rst index b9b6560fabe..1b52dd44b51 100644 --- a/doc/ref/sdb/all/salt.sdb.keyring_db.rst +++ b/doc/ref/sdb/all/salt.sdb.keyring_db.rst @@ -2,4 +2,4 @@ salt.sdb.keyring_db =================== .. automodule:: salt.sdb.keyring_db - :members: \ No newline at end of file + :members: diff --git a/doc/ref/sdb/all/salt.sdb.memcached.rst b/doc/ref/sdb/all/salt.sdb.memcached.rst index 58e684c755b..39b55ff29a2 100644 --- a/doc/ref/sdb/all/salt.sdb.memcached.rst +++ b/doc/ref/sdb/all/salt.sdb.memcached.rst @@ -2,4 +2,4 @@ salt.sdb.memcached ================== .. automodule:: salt.sdb.memcached - :members: \ No newline at end of file + :members: diff --git a/doc/ref/sdb/all/salt.sdb.sqlite3.rst b/doc/ref/sdb/all/salt.sdb.sqlite3.rst index 64702f37fb1..59ba45a2509 100644 --- a/doc/ref/sdb/all/salt.sdb.sqlite3.rst +++ b/doc/ref/sdb/all/salt.sdb.sqlite3.rst @@ -2,4 +2,4 @@ salt.sdb.sqlite3 ================ .. automodule:: salt.sdb.sqlite3 - :members: \ No newline at end of file + :members: diff --git a/doc/ref/serializers/all/salt.serializers.json.rst b/doc/ref/serializers/all/salt.serializers.json.rst index 6b8a277227d..47e5b58b46e 100644 --- a/doc/ref/serializers/all/salt.serializers.json.rst +++ b/doc/ref/serializers/all/salt.serializers.json.rst @@ -2,4 +2,4 @@ salt.serializers.json ===================== .. automodule:: salt.serializers.json - :members: \ No newline at end of file + :members: diff --git a/doc/ref/serializers/all/salt.serializers.keyvalue.rst b/doc/ref/serializers/all/salt.serializers.keyvalue.rst index e8e1fc766f2..1766a466453 100644 --- a/doc/ref/serializers/all/salt.serializers.keyvalue.rst +++ b/doc/ref/serializers/all/salt.serializers.keyvalue.rst @@ -3,4 +3,3 @@ salt.serializers.keyvalue .. automodule:: salt.serializers.keyvalue :members: - diff --git a/doc/ref/serializers/all/salt.serializers.msgpack.rst b/doc/ref/serializers/all/salt.serializers.msgpack.rst index 479b88b4d27..8c97e23134a 100644 --- a/doc/ref/serializers/all/salt.serializers.msgpack.rst +++ b/doc/ref/serializers/all/salt.serializers.msgpack.rst @@ -2,4 +2,4 @@ salt.serializers.msgpack ======================== .. automodule:: salt.serializers.msgpack - :members: \ No newline at end of file + :members: diff --git a/doc/ref/serializers/all/salt.serializers.plist.rst b/doc/ref/serializers/all/salt.serializers.plist.rst index abf9f2a8e67..c5f5fded399 100644 --- a/doc/ref/serializers/all/salt.serializers.plist.rst +++ b/doc/ref/serializers/all/salt.serializers.plist.rst @@ -2,4 +2,4 @@ salt.serializers.plist ====================== .. automodule:: salt.serializers.plist - :members: \ No newline at end of file + :members: diff --git a/doc/ref/serializers/all/salt.serializers.yaml.rst b/doc/ref/serializers/all/salt.serializers.yaml.rst index 5c47341cdc4..f41ffef1b72 100644 --- a/doc/ref/serializers/all/salt.serializers.yaml.rst +++ b/doc/ref/serializers/all/salt.serializers.yaml.rst @@ -2,4 +2,4 @@ salt.serializers.yaml ===================== .. automodule:: salt.serializers.yaml - :members: \ No newline at end of file + :members: diff --git a/doc/ref/serializers/all/salt.serializers.yamlex.rst b/doc/ref/serializers/all/salt.serializers.yamlex.rst index 8ba08faa357..6fe4b74ecc8 100644 --- a/doc/ref/serializers/all/salt.serializers.yamlex.rst +++ b/doc/ref/serializers/all/salt.serializers.yamlex.rst @@ -2,4 +2,4 @@ salt.serializers.yamlex ======================= .. automodule:: salt.serializers.yamlex - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.alias.rst b/doc/ref/states/all/salt.states.alias.rst index e0674453d02..e66857609ab 100644 --- a/doc/ref/states/all/salt.states.alias.rst +++ b/doc/ref/states/all/salt.states.alias.rst @@ -2,4 +2,4 @@ salt.states.alias ================= .. automodule:: salt.states.alias - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.alternatives.rst b/doc/ref/states/all/salt.states.alternatives.rst index c9c1118b9e6..30e0a9ee1a0 100644 --- a/doc/ref/states/all/salt.states.alternatives.rst +++ b/doc/ref/states/all/salt.states.alternatives.rst @@ -2,4 +2,4 @@ salt.states.alternatives ======================== .. automodule:: salt.states.alternatives - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.apache.rst b/doc/ref/states/all/salt.states.apache.rst index 564c776a7b4..61940dbd885 100644 --- a/doc/ref/states/all/salt.states.apache.rst +++ b/doc/ref/states/all/salt.states.apache.rst @@ -2,4 +2,4 @@ salt.states.apache ================== .. automodule:: salt.states.apache - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.apache_module.rst b/doc/ref/states/all/salt.states.apache_module.rst index bb9b91d5435..cb68a0cde64 100644 --- a/doc/ref/states/all/salt.states.apache_module.rst +++ b/doc/ref/states/all/salt.states.apache_module.rst @@ -2,4 +2,4 @@ salt.states.apache_module ========================= .. automodule:: salt.states.apache_module - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.archive.rst b/doc/ref/states/all/salt.states.archive.rst index 9722e13807e..11b52f0b741 100644 --- a/doc/ref/states/all/salt.states.archive.rst +++ b/doc/ref/states/all/salt.states.archive.rst @@ -2,4 +2,4 @@ salt.states.archive =================== .. automodule:: salt.states.archive - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.artifactory.rst b/doc/ref/states/all/salt.states.artifactory.rst index dee5b0adf09..ad7cb3c4cbc 100644 --- a/doc/ref/states/all/salt.states.artifactory.rst +++ b/doc/ref/states/all/salt.states.artifactory.rst @@ -2,4 +2,4 @@ salt.states.artifactory ======================= .. automodule:: salt.states.artifactory - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.at.rst b/doc/ref/states/all/salt.states.at.rst index a4e67a36d2c..58a70027d10 100644 --- a/doc/ref/states/all/salt.states.at.rst +++ b/doc/ref/states/all/salt.states.at.rst @@ -2,4 +2,4 @@ salt.states.at ============== .. automodule:: salt.states.at - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.augeas.rst b/doc/ref/states/all/salt.states.augeas.rst index fc134c5ae7d..6a4564d8c2c 100644 --- a/doc/ref/states/all/salt.states.augeas.rst +++ b/doc/ref/states/all/salt.states.augeas.rst @@ -2,4 +2,4 @@ salt.states.augeas ================== .. automodule:: salt.states.augeas - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.aws_sqs.rst b/doc/ref/states/all/salt.states.aws_sqs.rst index fbd5cbcaa6b..4f6570eafd3 100644 --- a/doc/ref/states/all/salt.states.aws_sqs.rst +++ b/doc/ref/states/all/salt.states.aws_sqs.rst @@ -2,4 +2,4 @@ salt.states.aws_sqs =================== .. automodule:: salt.states.aws_sqs - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.azurearm_compute.rst b/doc/ref/states/all/salt.states.azurearm_compute.rst index 76714be1dca..0f545fed4ef 100644 --- a/doc/ref/states/all/salt.states.azurearm_compute.rst +++ b/doc/ref/states/all/salt.states.azurearm_compute.rst @@ -2,4 +2,4 @@ salt.states.azurearm_compute ============================ .. automodule:: salt.states.azurearm_compute - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.azurearm_network.rst b/doc/ref/states/all/salt.states.azurearm_network.rst index 3c6be3796a8..adc0754716e 100644 --- a/doc/ref/states/all/salt.states.azurearm_network.rst +++ b/doc/ref/states/all/salt.states.azurearm_network.rst @@ -2,4 +2,4 @@ salt.states.azurearm_network ============================ .. automodule:: salt.states.azurearm_network - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.azurearm_resource.rst b/doc/ref/states/all/salt.states.azurearm_resource.rst index 8ce8be2baf5..4ea24a8dde3 100644 --- a/doc/ref/states/all/salt.states.azurearm_resource.rst +++ b/doc/ref/states/all/salt.states.azurearm_resource.rst @@ -2,4 +2,4 @@ salt.states.azurearm_resource ============================= .. automodule:: salt.states.azurearm_resource - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.blockdev.rst b/doc/ref/states/all/salt.states.blockdev.rst index 15ea5c61a36..b6ecbda5168 100644 --- a/doc/ref/states/all/salt.states.blockdev.rst +++ b/doc/ref/states/all/salt.states.blockdev.rst @@ -2,4 +2,4 @@ salt.states.blockdev ==================== .. automodule:: salt.states.blockdev - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.boto_asg.rst b/doc/ref/states/all/salt.states.boto_asg.rst index 2a4471732ac..0761259e88d 100644 --- a/doc/ref/states/all/salt.states.boto_asg.rst +++ b/doc/ref/states/all/salt.states.boto_asg.rst @@ -2,4 +2,4 @@ salt.states.boto_asg ==================== .. automodule:: salt.states.boto_asg - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.boto_cfn.rst b/doc/ref/states/all/salt.states.boto_cfn.rst index 26db57d9e73..094bbb7c72f 100644 --- a/doc/ref/states/all/salt.states.boto_cfn.rst +++ b/doc/ref/states/all/salt.states.boto_cfn.rst @@ -2,4 +2,4 @@ salt.states.boto_cfn ==================== .. automodule:: salt.states.boto_cfn - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.boto_cloudwatch_alarm.rst b/doc/ref/states/all/salt.states.boto_cloudwatch_alarm.rst index 1e45daf5fdd..66f6fb29441 100644 --- a/doc/ref/states/all/salt.states.boto_cloudwatch_alarm.rst +++ b/doc/ref/states/all/salt.states.boto_cloudwatch_alarm.rst @@ -2,4 +2,4 @@ salt.states.boto_cloudwatch_alarm ================================= .. automodule:: salt.states.boto_cloudwatch_alarm - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.boto_dynamodb.rst b/doc/ref/states/all/salt.states.boto_dynamodb.rst index 2c8ae7c17ea..7d866ca9ec6 100644 --- a/doc/ref/states/all/salt.states.boto_dynamodb.rst +++ b/doc/ref/states/all/salt.states.boto_dynamodb.rst @@ -2,4 +2,4 @@ salt.states.boto_dynamodb ========================= .. automodule:: salt.states.boto_dynamodb - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.boto_ec2.rst b/doc/ref/states/all/salt.states.boto_ec2.rst index 4e469ad96e3..57a3cbec72e 100644 --- a/doc/ref/states/all/salt.states.boto_ec2.rst +++ b/doc/ref/states/all/salt.states.boto_ec2.rst @@ -2,4 +2,4 @@ salt.states.boto_ec2 ==================== .. automodule:: salt.states.boto_ec2 - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.boto_elasticache.rst b/doc/ref/states/all/salt.states.boto_elasticache.rst index 2d56a5af994..1f2267c3504 100644 --- a/doc/ref/states/all/salt.states.boto_elasticache.rst +++ b/doc/ref/states/all/salt.states.boto_elasticache.rst @@ -2,4 +2,4 @@ salt.states.boto_elasticache ============================ .. automodule:: salt.states.boto_elasticache - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.boto_elb.rst b/doc/ref/states/all/salt.states.boto_elb.rst index 5efd86a0e1a..edb35f07553 100644 --- a/doc/ref/states/all/salt.states.boto_elb.rst +++ b/doc/ref/states/all/salt.states.boto_elb.rst @@ -2,4 +2,4 @@ salt.states.boto_elb ==================== .. automodule:: salt.states.boto_elb - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.boto_iam.rst b/doc/ref/states/all/salt.states.boto_iam.rst index d4fe54d979e..ad3f0663e75 100644 --- a/doc/ref/states/all/salt.states.boto_iam.rst +++ b/doc/ref/states/all/salt.states.boto_iam.rst @@ -2,4 +2,4 @@ salt.states.boto_iam ==================== .. automodule:: salt.states.boto_iam - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.boto_iam_role.rst b/doc/ref/states/all/salt.states.boto_iam_role.rst index 90d2af6c01b..00644e76739 100644 --- a/doc/ref/states/all/salt.states.boto_iam_role.rst +++ b/doc/ref/states/all/salt.states.boto_iam_role.rst @@ -2,4 +2,4 @@ salt.states.boto_iam_role ========================= .. automodule:: salt.states.boto_iam_role - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.boto_kms.rst b/doc/ref/states/all/salt.states.boto_kms.rst index 223d1c8beaf..1a9f3779805 100644 --- a/doc/ref/states/all/salt.states.boto_kms.rst +++ b/doc/ref/states/all/salt.states.boto_kms.rst @@ -2,4 +2,4 @@ salt.states.boto_kms ==================== .. automodule:: salt.states.boto_kms - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.boto_lc.rst b/doc/ref/states/all/salt.states.boto_lc.rst index 99d72a18d35..c7e44f71c23 100644 --- a/doc/ref/states/all/salt.states.boto_lc.rst +++ b/doc/ref/states/all/salt.states.boto_lc.rst @@ -2,4 +2,4 @@ salt.states.boto_lc =================== .. automodule:: salt.states.boto_lc - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.boto_rds.rst b/doc/ref/states/all/salt.states.boto_rds.rst index b69e4a7bfef..0d07836d1df 100644 --- a/doc/ref/states/all/salt.states.boto_rds.rst +++ b/doc/ref/states/all/salt.states.boto_rds.rst @@ -2,4 +2,4 @@ salt.states.boto_rds ==================== .. automodule:: salt.states.boto_rds - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.boto_route53.rst b/doc/ref/states/all/salt.states.boto_route53.rst index c37513e8134..947a8983d9c 100644 --- a/doc/ref/states/all/salt.states.boto_route53.rst +++ b/doc/ref/states/all/salt.states.boto_route53.rst @@ -2,4 +2,4 @@ salt.states.boto_route53 ======================== .. automodule:: salt.states.boto_route53 - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.boto_secgroup.rst b/doc/ref/states/all/salt.states.boto_secgroup.rst index 9607d9f11b8..605f0198435 100644 --- a/doc/ref/states/all/salt.states.boto_secgroup.rst +++ b/doc/ref/states/all/salt.states.boto_secgroup.rst @@ -2,4 +2,4 @@ salt.states.boto_secgroup ========================= .. automodule:: salt.states.boto_secgroup - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.boto_sqs.rst b/doc/ref/states/all/salt.states.boto_sqs.rst index 5791d0cb094..74ddd3da946 100644 --- a/doc/ref/states/all/salt.states.boto_sqs.rst +++ b/doc/ref/states/all/salt.states.boto_sqs.rst @@ -2,4 +2,4 @@ salt.states.boto_sqs ==================== .. automodule:: salt.states.boto_sqs - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.boto_vpc.rst b/doc/ref/states/all/salt.states.boto_vpc.rst index 5691bbca702..063495e9003 100644 --- a/doc/ref/states/all/salt.states.boto_vpc.rst +++ b/doc/ref/states/all/salt.states.boto_vpc.rst @@ -2,4 +2,4 @@ salt.states.boto_vpc ==================== .. automodule:: salt.states.boto_vpc - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.cabal.rst b/doc/ref/states/all/salt.states.cabal.rst index 941bb41903f..114162c5495 100644 --- a/doc/ref/states/all/salt.states.cabal.rst +++ b/doc/ref/states/all/salt.states.cabal.rst @@ -2,4 +2,4 @@ salt.states.cabal ================= .. automodule:: salt.states.cabal - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.cimc.rst b/doc/ref/states/all/salt.states.cimc.rst index bbd5af398b0..3c109222be6 100644 --- a/doc/ref/states/all/salt.states.cimc.rst +++ b/doc/ref/states/all/salt.states.cimc.rst @@ -2,4 +2,4 @@ salt.states.cimc ================ .. automodule:: salt.states.cimc - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.cisconso.rst b/doc/ref/states/all/salt.states.cisconso.rst index 068f0d37008..0d58fa6c285 100644 --- a/doc/ref/states/all/salt.states.cisconso.rst +++ b/doc/ref/states/all/salt.states.cisconso.rst @@ -1,6 +1,6 @@ -==================== -salt.states.cisconso -==================== - -.. automodule:: salt.states.cisconso - :members: \ No newline at end of file +==================== +salt.states.cisconso +==================== + +.. automodule:: salt.states.cisconso + :members: diff --git a/doc/ref/states/all/salt.states.cloud.rst b/doc/ref/states/all/salt.states.cloud.rst index 876864e24a3..025d471511c 100644 --- a/doc/ref/states/all/salt.states.cloud.rst +++ b/doc/ref/states/all/salt.states.cloud.rst @@ -2,4 +2,4 @@ salt.states.cloud ================= .. automodule:: salt.states.cloud - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.cmd.rst b/doc/ref/states/all/salt.states.cmd.rst index 8c689e1b05e..14250fdaeba 100644 --- a/doc/ref/states/all/salt.states.cmd.rst +++ b/doc/ref/states/all/salt.states.cmd.rst @@ -3,4 +3,4 @@ salt.states.cmd .. automodule:: salt.states.cmd :members: - :exclude-members: watch \ No newline at end of file + :exclude-members: watch diff --git a/doc/ref/states/all/salt.states.composer.rst b/doc/ref/states/all/salt.states.composer.rst index a9ffff9cafd..032d6fdd32a 100644 --- a/doc/ref/states/all/salt.states.composer.rst +++ b/doc/ref/states/all/salt.states.composer.rst @@ -2,4 +2,4 @@ salt.states.composer ==================== .. automodule:: salt.states.composer - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.consul.rst b/doc/ref/states/all/salt.states.consul.rst index b0934a9eb72..a28a69c9175 100644 --- a/doc/ref/states/all/salt.states.consul.rst +++ b/doc/ref/states/all/salt.states.consul.rst @@ -3,4 +3,4 @@ salt.states.consul ================== .. automodule:: salt.states.consul - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.cron.rst b/doc/ref/states/all/salt.states.cron.rst index 7b472e227d3..1df99941b02 100644 --- a/doc/ref/states/all/salt.states.cron.rst +++ b/doc/ref/states/all/salt.states.cron.rst @@ -2,4 +2,4 @@ salt.states.cron ================ .. automodule:: salt.states.cron - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.ddns.rst b/doc/ref/states/all/salt.states.ddns.rst index b49f736cba9..3e12f65f917 100644 --- a/doc/ref/states/all/salt.states.ddns.rst +++ b/doc/ref/states/all/salt.states.ddns.rst @@ -2,4 +2,4 @@ salt.states.ddns ================ .. automodule:: salt.states.ddns - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.debconfmod.rst b/doc/ref/states/all/salt.states.debconfmod.rst index 4b30dd3308f..cebd59773f6 100644 --- a/doc/ref/states/all/salt.states.debconfmod.rst +++ b/doc/ref/states/all/salt.states.debconfmod.rst @@ -2,4 +2,4 @@ salt.states.debconfmod ====================== .. automodule:: salt.states.debconfmod - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.dellchassis.rst b/doc/ref/states/all/salt.states.dellchassis.rst index 20782fea5d5..dfff9ef4601 100644 --- a/doc/ref/states/all/salt.states.dellchassis.rst +++ b/doc/ref/states/all/salt.states.dellchassis.rst @@ -2,4 +2,4 @@ salt.states.dellchassis ======================= .. automodule:: salt.states.dellchassis - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.disk.rst b/doc/ref/states/all/salt.states.disk.rst index 9d15857df2f..9d696feca4a 100644 --- a/doc/ref/states/all/salt.states.disk.rst +++ b/doc/ref/states/all/salt.states.disk.rst @@ -2,4 +2,4 @@ salt.states.disk ================ .. automodule:: salt.states.disk - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.environ.rst b/doc/ref/states/all/salt.states.environ.rst index 4f23dfaa515..de020b39c8f 100644 --- a/doc/ref/states/all/salt.states.environ.rst +++ b/doc/ref/states/all/salt.states.environ.rst @@ -2,4 +2,4 @@ salt.states.environ =================== .. automodule:: salt.states.environ - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.eselect.rst b/doc/ref/states/all/salt.states.eselect.rst index c555b898b17..af2fa40cb0c 100644 --- a/doc/ref/states/all/salt.states.eselect.rst +++ b/doc/ref/states/all/salt.states.eselect.rst @@ -2,4 +2,4 @@ salt.states.eselect =================== .. automodule:: salt.states.eselect - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.esxi.rst b/doc/ref/states/all/salt.states.esxi.rst index a5c01eb0307..aa87cb6cf7f 100644 --- a/doc/ref/states/all/salt.states.esxi.rst +++ b/doc/ref/states/all/salt.states.esxi.rst @@ -2,4 +2,4 @@ salt.states.esxi ================ .. automodule:: salt.states.esxi - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.event.rst b/doc/ref/states/all/salt.states.event.rst index 875b6b7b931..cec415f2a1d 100644 --- a/doc/ref/states/all/salt.states.event.rst +++ b/doc/ref/states/all/salt.states.event.rst @@ -3,4 +3,4 @@ salt.states.event .. automodule:: salt.states.event :members: - :exclude-members: fire_master, mod_watch \ No newline at end of file + :exclude-members: fire_master, mod_watch diff --git a/doc/ref/states/all/salt.states.file.rst b/doc/ref/states/all/salt.states.file.rst index eaa46f0bc69..bf4d7a79f87 100644 --- a/doc/ref/states/all/salt.states.file.rst +++ b/doc/ref/states/all/salt.states.file.rst @@ -2,4 +2,4 @@ salt.states.file ================ .. automodule:: salt.states.file - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.gem.rst b/doc/ref/states/all/salt.states.gem.rst index 86abb9148ad..f81acabab1b 100644 --- a/doc/ref/states/all/salt.states.gem.rst +++ b/doc/ref/states/all/salt.states.gem.rst @@ -2,4 +2,4 @@ salt.states.gem =============== .. automodule:: salt.states.gem - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.glusterfs.rst b/doc/ref/states/all/salt.states.glusterfs.rst index 921a7b17bc4..ec2e3d62d6b 100644 --- a/doc/ref/states/all/salt.states.glusterfs.rst +++ b/doc/ref/states/all/salt.states.glusterfs.rst @@ -2,4 +2,4 @@ salt.states.glusterfs ===================== .. automodule:: salt.states.glusterfs - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.gnomedesktop.rst b/doc/ref/states/all/salt.states.gnomedesktop.rst index be5f33a1193..3da7581bc97 100644 --- a/doc/ref/states/all/salt.states.gnomedesktop.rst +++ b/doc/ref/states/all/salt.states.gnomedesktop.rst @@ -2,4 +2,4 @@ salt.states.gnomedesktop ======================== .. automodule:: salt.states.gnomedesktop - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.grains.rst b/doc/ref/states/all/salt.states.grains.rst index 7f412a94c55..585cc2e835e 100644 --- a/doc/ref/states/all/salt.states.grains.rst +++ b/doc/ref/states/all/salt.states.grains.rst @@ -2,4 +2,4 @@ salt.states.grains ================== .. automodule:: salt.states.grains - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.group.rst b/doc/ref/states/all/salt.states.group.rst index 9c14c810c39..304bc9496f5 100644 --- a/doc/ref/states/all/salt.states.group.rst +++ b/doc/ref/states/all/salt.states.group.rst @@ -2,4 +2,4 @@ salt.states.group ================= .. automodule:: salt.states.group - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.hg.rst b/doc/ref/states/all/salt.states.hg.rst index d2071c60b03..1742f6903b2 100644 --- a/doc/ref/states/all/salt.states.hg.rst +++ b/doc/ref/states/all/salt.states.hg.rst @@ -2,4 +2,4 @@ salt.states.hg ============== .. automodule:: salt.states.hg - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.host.rst b/doc/ref/states/all/salt.states.host.rst index b7b80fe90c7..f35d1af1e72 100644 --- a/doc/ref/states/all/salt.states.host.rst +++ b/doc/ref/states/all/salt.states.host.rst @@ -2,4 +2,4 @@ salt.states.host ================ .. automodule:: salt.states.host - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.incron.rst b/doc/ref/states/all/salt.states.incron.rst index 35bcb3eb914..e9b23602b20 100644 --- a/doc/ref/states/all/salt.states.incron.rst +++ b/doc/ref/states/all/salt.states.incron.rst @@ -2,4 +2,4 @@ salt.states.incron ================== .. automodule:: salt.states.incron - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.influxdb_database.rst b/doc/ref/states/all/salt.states.influxdb_database.rst index 0a31588de79..07252d3f494 100644 --- a/doc/ref/states/all/salt.states.influxdb_database.rst +++ b/doc/ref/states/all/salt.states.influxdb_database.rst @@ -2,4 +2,4 @@ salt.states.influxdb_database ============================= .. automodule:: salt.states.influxdb_database - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.influxdb_user.rst b/doc/ref/states/all/salt.states.influxdb_user.rst index 08a8c3312f1..20c2421120a 100644 --- a/doc/ref/states/all/salt.states.influxdb_user.rst +++ b/doc/ref/states/all/salt.states.influxdb_user.rst @@ -2,4 +2,4 @@ salt.states.influxdb_user ========================= .. automodule:: salt.states.influxdb_user - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.ini_manage.rst b/doc/ref/states/all/salt.states.ini_manage.rst index 0c0fd14ce4e..d7b97604aa2 100644 --- a/doc/ref/states/all/salt.states.ini_manage.rst +++ b/doc/ref/states/all/salt.states.ini_manage.rst @@ -2,4 +2,4 @@ salt.states.ini_manage ====================== .. automodule:: salt.states.ini_manage - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.ipmi.rst b/doc/ref/states/all/salt.states.ipmi.rst index 735dc0c5f37..a5470189eed 100644 --- a/doc/ref/states/all/salt.states.ipmi.rst +++ b/doc/ref/states/all/salt.states.ipmi.rst @@ -2,4 +2,4 @@ salt.states.ipmi ================ .. automodule:: salt.states.ipmi - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.ipset.rst b/doc/ref/states/all/salt.states.ipset.rst index 29b8b445cdc..efd3fdb2e2e 100644 --- a/doc/ref/states/all/salt.states.ipset.rst +++ b/doc/ref/states/all/salt.states.ipset.rst @@ -2,4 +2,4 @@ salt.states.ipset ================= .. automodule:: salt.states.ipset - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.iptables.rst b/doc/ref/states/all/salt.states.iptables.rst index 86898690aab..78ffea1df9f 100644 --- a/doc/ref/states/all/salt.states.iptables.rst +++ b/doc/ref/states/all/salt.states.iptables.rst @@ -2,4 +2,4 @@ salt.states.iptables ==================== .. automodule:: salt.states.iptables - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.jboss7.rst b/doc/ref/states/all/salt.states.jboss7.rst index bde1b6d57af..bdaa19ac929 100644 --- a/doc/ref/states/all/salt.states.jboss7.rst +++ b/doc/ref/states/all/salt.states.jboss7.rst @@ -2,4 +2,4 @@ salt.states.jboss7 ================== .. automodule:: salt.states.jboss7 - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.kernelpkg.rst b/doc/ref/states/all/salt.states.kernelpkg.rst index c7d62f7a992..198c70a18b6 100644 --- a/doc/ref/states/all/salt.states.kernelpkg.rst +++ b/doc/ref/states/all/salt.states.kernelpkg.rst @@ -2,4 +2,4 @@ salt.states.kernelpkg ===================== .. automodule:: salt.states.kernelpkg - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.keyboard.rst b/doc/ref/states/all/salt.states.keyboard.rst index f1df1bdfc38..76a3e0e211e 100644 --- a/doc/ref/states/all/salt.states.keyboard.rst +++ b/doc/ref/states/all/salt.states.keyboard.rst @@ -2,4 +2,4 @@ salt.states.keyboard ==================== .. automodule:: salt.states.keyboard - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.keystone.rst b/doc/ref/states/all/salt.states.keystone.rst index 7df1367346c..6c74cf72724 100644 --- a/doc/ref/states/all/salt.states.keystone.rst +++ b/doc/ref/states/all/salt.states.keystone.rst @@ -2,4 +2,4 @@ salt.states.keystone ==================== .. automodule:: salt.states.keystone - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.keystore.rst b/doc/ref/states/all/salt.states.keystore.rst index ae58877090e..eed003c4593 100644 --- a/doc/ref/states/all/salt.states.keystore.rst +++ b/doc/ref/states/all/salt.states.keystore.rst @@ -2,4 +2,4 @@ salt.states.keystore ==================== .. automodule:: salt.states.keystore - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.kmod.rst b/doc/ref/states/all/salt.states.kmod.rst index 08611559d21..8ddc23d218e 100644 --- a/doc/ref/states/all/salt.states.kmod.rst +++ b/doc/ref/states/all/salt.states.kmod.rst @@ -2,4 +2,4 @@ salt.states.kmod ================ .. automodule:: salt.states.kmod - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.layman.rst b/doc/ref/states/all/salt.states.layman.rst index ff757acd71d..b9296db2abe 100644 --- a/doc/ref/states/all/salt.states.layman.rst +++ b/doc/ref/states/all/salt.states.layman.rst @@ -2,4 +2,4 @@ salt.states.layman ================== .. automodule:: salt.states.layman - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.locale.rst b/doc/ref/states/all/salt.states.locale.rst index 5228f76b361..97284f5dddf 100644 --- a/doc/ref/states/all/salt.states.locale.rst +++ b/doc/ref/states/all/salt.states.locale.rst @@ -2,4 +2,4 @@ salt.states.locale ================== .. automodule:: salt.states.locale - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.lvm.rst b/doc/ref/states/all/salt.states.lvm.rst index 2fe1cfd37af..0dd2592fa5c 100644 --- a/doc/ref/states/all/salt.states.lvm.rst +++ b/doc/ref/states/all/salt.states.lvm.rst @@ -2,4 +2,4 @@ salt.states.lvm =============== .. automodule:: salt.states.lvm - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.lvs_server.rst b/doc/ref/states/all/salt.states.lvs_server.rst index 14fce02a907..98dfe394ddb 100644 --- a/doc/ref/states/all/salt.states.lvs_server.rst +++ b/doc/ref/states/all/salt.states.lvs_server.rst @@ -2,4 +2,4 @@ salt.states.lvs_server ====================== .. automodule:: salt.states.lvs_server - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.lvs_service.rst b/doc/ref/states/all/salt.states.lvs_service.rst index c17c36803df..4d57461b5ef 100644 --- a/doc/ref/states/all/salt.states.lvs_service.rst +++ b/doc/ref/states/all/salt.states.lvs_service.rst @@ -2,4 +2,4 @@ salt.states.lvs_service ======================= .. automodule:: salt.states.lvs_service - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.lxc.rst b/doc/ref/states/all/salt.states.lxc.rst index 5c79418f44b..123f77140fb 100644 --- a/doc/ref/states/all/salt.states.lxc.rst +++ b/doc/ref/states/all/salt.states.lxc.rst @@ -2,4 +2,4 @@ salt.states.lxc =============== .. automodule:: salt.states.lxc - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.makeconf.rst b/doc/ref/states/all/salt.states.makeconf.rst index 65987ee14a7..f0bfeca5687 100644 --- a/doc/ref/states/all/salt.states.makeconf.rst +++ b/doc/ref/states/all/salt.states.makeconf.rst @@ -2,4 +2,4 @@ salt.states.makeconf ==================== .. automodule:: salt.states.makeconf - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.memcached.rst b/doc/ref/states/all/salt.states.memcached.rst index 1ccd2a03a7c..ad9c7655d63 100644 --- a/doc/ref/states/all/salt.states.memcached.rst +++ b/doc/ref/states/all/salt.states.memcached.rst @@ -2,4 +2,4 @@ salt.states.memcached ===================== .. automodule:: salt.states.memcached - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.modjk.rst b/doc/ref/states/all/salt.states.modjk.rst index ae0e82989c2..543efe5f53d 100644 --- a/doc/ref/states/all/salt.states.modjk.rst +++ b/doc/ref/states/all/salt.states.modjk.rst @@ -2,4 +2,4 @@ salt.states.modjk ================= .. automodule:: salt.states.modjk - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.modjk_worker.rst b/doc/ref/states/all/salt.states.modjk_worker.rst index ed26bcd004e..0f2c1e344c9 100644 --- a/doc/ref/states/all/salt.states.modjk_worker.rst +++ b/doc/ref/states/all/salt.states.modjk_worker.rst @@ -2,4 +2,4 @@ salt.states.modjk_worker ======================== .. automodule:: salt.states.modjk_worker - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.module.rst b/doc/ref/states/all/salt.states.module.rst index c17ce91ca80..173127f2e3b 100644 --- a/doc/ref/states/all/salt.states.module.rst +++ b/doc/ref/states/all/salt.states.module.rst @@ -3,4 +3,4 @@ salt.states.module .. automodule:: salt.states.module :members: - :exclude-members: watch \ No newline at end of file + :exclude-members: watch diff --git a/doc/ref/states/all/salt.states.mongodb_database.rst b/doc/ref/states/all/salt.states.mongodb_database.rst index d0e3c6830ee..9beaac4ae61 100644 --- a/doc/ref/states/all/salt.states.mongodb_database.rst +++ b/doc/ref/states/all/salt.states.mongodb_database.rst @@ -2,4 +2,4 @@ salt.states.mongodb_database ============================ .. automodule:: salt.states.mongodb_database - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.mongodb_user.rst b/doc/ref/states/all/salt.states.mongodb_user.rst index b0e8734204d..4bea009d48c 100644 --- a/doc/ref/states/all/salt.states.mongodb_user.rst +++ b/doc/ref/states/all/salt.states.mongodb_user.rst @@ -2,4 +2,4 @@ salt.states.mongodb_user ======================== .. automodule:: salt.states.mongodb_user - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.monit.rst b/doc/ref/states/all/salt.states.monit.rst index 911a669ac0c..516d9cb2cc1 100644 --- a/doc/ref/states/all/salt.states.monit.rst +++ b/doc/ref/states/all/salt.states.monit.rst @@ -2,4 +2,4 @@ salt.states.monit ================= .. automodule:: salt.states.monit - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.mount.rst b/doc/ref/states/all/salt.states.mount.rst index cba45720f31..5c12c85c7c9 100644 --- a/doc/ref/states/all/salt.states.mount.rst +++ b/doc/ref/states/all/salt.states.mount.rst @@ -2,4 +2,4 @@ salt.states.mount ================= .. automodule:: salt.states.mount - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.mysql_database.rst b/doc/ref/states/all/salt.states.mysql_database.rst index 97467936ff6..8a9e2d66426 100644 --- a/doc/ref/states/all/salt.states.mysql_database.rst +++ b/doc/ref/states/all/salt.states.mysql_database.rst @@ -2,4 +2,4 @@ salt.states.mysql_database ========================== .. automodule:: salt.states.mysql_database - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.mysql_grants.rst b/doc/ref/states/all/salt.states.mysql_grants.rst index 4197fa0d1e8..a90c86c144a 100644 --- a/doc/ref/states/all/salt.states.mysql_grants.rst +++ b/doc/ref/states/all/salt.states.mysql_grants.rst @@ -2,4 +2,4 @@ salt.states.mysql_grants ======================== .. automodule:: salt.states.mysql_grants - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.mysql_query.rst b/doc/ref/states/all/salt.states.mysql_query.rst index 08a832c9358..c47a913361a 100644 --- a/doc/ref/states/all/salt.states.mysql_query.rst +++ b/doc/ref/states/all/salt.states.mysql_query.rst @@ -2,4 +2,4 @@ salt.states.mysql_query ======================= .. automodule:: salt.states.mysql_query - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.mysql_user.rst b/doc/ref/states/all/salt.states.mysql_user.rst index 19dee72a50b..226884ce9fe 100644 --- a/doc/ref/states/all/salt.states.mysql_user.rst +++ b/doc/ref/states/all/salt.states.mysql_user.rst @@ -2,4 +2,4 @@ salt.states.mysql_user ====================== .. automodule:: salt.states.mysql_user - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.net_napalm_yang.rst b/doc/ref/states/all/salt.states.net_napalm_yang.rst index 81c678d863d..e37ae633e35 100644 --- a/doc/ref/states/all/salt.states.net_napalm_yang.rst +++ b/doc/ref/states/all/salt.states.net_napalm_yang.rst @@ -3,4 +3,3 @@ salt.states.net_napalm_yang .. automodule:: salt.states.net_napalm_yang :members: - diff --git a/doc/ref/states/all/salt.states.netacl.rst b/doc/ref/states/all/salt.states.netacl.rst index 7a01a6ace50..82fbdebf945 100644 --- a/doc/ref/states/all/salt.states.netacl.rst +++ b/doc/ref/states/all/salt.states.netacl.rst @@ -3,4 +3,3 @@ salt.states.netacl .. automodule:: salt.states.netacl :members: - diff --git a/doc/ref/states/all/salt.states.netntp.rst b/doc/ref/states/all/salt.states.netntp.rst index c64703f3d6a..c3bc45ebd94 100644 --- a/doc/ref/states/all/salt.states.netntp.rst +++ b/doc/ref/states/all/salt.states.netntp.rst @@ -3,4 +3,3 @@ salt.states.netntp .. automodule:: salt.states.netntp :members: - diff --git a/doc/ref/states/all/salt.states.netsnmp.rst b/doc/ref/states/all/salt.states.netsnmp.rst index 7fcfe611250..46e9c187915 100644 --- a/doc/ref/states/all/salt.states.netsnmp.rst +++ b/doc/ref/states/all/salt.states.netsnmp.rst @@ -4,4 +4,3 @@ salt.states.netsnmp .. automodule:: salt.states.netsnmp :members: :undoc-members: - diff --git a/doc/ref/states/all/salt.states.netusers.rst b/doc/ref/states/all/salt.states.netusers.rst index 0a5b7a34356..5f75e9a5967 100644 --- a/doc/ref/states/all/salt.states.netusers.rst +++ b/doc/ref/states/all/salt.states.netusers.rst @@ -4,4 +4,3 @@ salt.states.netusers .. automodule:: salt.states.netusers :members: :undoc-members: - diff --git a/doc/ref/states/all/salt.states.network.rst b/doc/ref/states/all/salt.states.network.rst index d55d6e66ed2..166d90c25a6 100644 --- a/doc/ref/states/all/salt.states.network.rst +++ b/doc/ref/states/all/salt.states.network.rst @@ -2,4 +2,4 @@ salt.states.network =================== .. automodule:: salt.states.network - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.nfs_export.rst b/doc/ref/states/all/salt.states.nfs_export.rst index f8172936950..edc270b0351 100644 --- a/doc/ref/states/all/salt.states.nfs_export.rst +++ b/doc/ref/states/all/salt.states.nfs_export.rst @@ -2,4 +2,4 @@ salt.states.nfs_export ====================== .. automodule:: salt.states.nfs_export - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.nftables.rst b/doc/ref/states/all/salt.states.nftables.rst index b61b9a96953..8727c3470a4 100644 --- a/doc/ref/states/all/salt.states.nftables.rst +++ b/doc/ref/states/all/salt.states.nftables.rst @@ -2,4 +2,4 @@ salt.states.nftables ==================== .. automodule:: salt.states.nftables - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.npm.rst b/doc/ref/states/all/salt.states.npm.rst index 1964e6b6a8d..3ba983ed24b 100644 --- a/doc/ref/states/all/salt.states.npm.rst +++ b/doc/ref/states/all/salt.states.npm.rst @@ -2,4 +2,4 @@ salt.states.npm =============== .. automodule:: salt.states.npm - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.ntp.rst b/doc/ref/states/all/salt.states.ntp.rst index 6fdd37c3233..93ae1fe996a 100644 --- a/doc/ref/states/all/salt.states.ntp.rst +++ b/doc/ref/states/all/salt.states.ntp.rst @@ -2,4 +2,4 @@ salt.states.ntp =============== .. automodule:: salt.states.ntp - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.nxos.rst b/doc/ref/states/all/salt.states.nxos.rst index 482ff86b8e5..ef1cf7c9cce 100644 --- a/doc/ref/states/all/salt.states.nxos.rst +++ b/doc/ref/states/all/salt.states.nxos.rst @@ -3,4 +3,3 @@ salt.states.nxos .. automodule:: salt.states.nxos :members: - diff --git a/doc/ref/states/all/salt.states.openstack_config.rst b/doc/ref/states/all/salt.states.openstack_config.rst index 5a77ffdf478..f1621bb8dcd 100644 --- a/doc/ref/states/all/salt.states.openstack_config.rst +++ b/doc/ref/states/all/salt.states.openstack_config.rst @@ -2,4 +2,4 @@ salt.states.openstack_config ============================ .. automodule:: salt.states.openstack_config - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.pagerduty.rst b/doc/ref/states/all/salt.states.pagerduty.rst index 3dc76e879f7..333273fbb79 100644 --- a/doc/ref/states/all/salt.states.pagerduty.rst +++ b/doc/ref/states/all/salt.states.pagerduty.rst @@ -2,4 +2,4 @@ salt.states.pagerduty ===================== .. automodule:: salt.states.pagerduty - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.pagerduty_escalation_policy.rst b/doc/ref/states/all/salt.states.pagerduty_escalation_policy.rst index 059b27b705a..3cdea9f3652 100644 --- a/doc/ref/states/all/salt.states.pagerduty_escalation_policy.rst +++ b/doc/ref/states/all/salt.states.pagerduty_escalation_policy.rst @@ -2,4 +2,4 @@ salt.states.pagerduty_escalation_policy ======================================= .. automodule:: salt.states.pagerduty_escalation_policy - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.pagerduty_schedule.rst b/doc/ref/states/all/salt.states.pagerduty_schedule.rst index 2584352a14a..f6d46952a78 100644 --- a/doc/ref/states/all/salt.states.pagerduty_schedule.rst +++ b/doc/ref/states/all/salt.states.pagerduty_schedule.rst @@ -2,4 +2,4 @@ salt.states.pagerduty_schedule ============================== .. automodule:: salt.states.pagerduty_schedule - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.pagerduty_service.rst b/doc/ref/states/all/salt.states.pagerduty_service.rst index 07ac6af8a22..52991ec2df9 100644 --- a/doc/ref/states/all/salt.states.pagerduty_service.rst +++ b/doc/ref/states/all/salt.states.pagerduty_service.rst @@ -2,4 +2,4 @@ salt.states.pagerduty_service ============================= .. automodule:: salt.states.pagerduty_service - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.pagerduty_user.rst b/doc/ref/states/all/salt.states.pagerduty_user.rst index d6b47d3ee62..72fd60dd94d 100644 --- a/doc/ref/states/all/salt.states.pagerduty_user.rst +++ b/doc/ref/states/all/salt.states.pagerduty_user.rst @@ -2,4 +2,4 @@ salt.states.pagerduty_user ========================== .. automodule:: salt.states.pagerduty_user - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.pcs.rst b/doc/ref/states/all/salt.states.pcs.rst index 29f0ee98380..f29a5801829 100644 --- a/doc/ref/states/all/salt.states.pcs.rst +++ b/doc/ref/states/all/salt.states.pcs.rst @@ -3,4 +3,3 @@ salt.states.pcs .. automodule:: salt.states.pcs :members: - diff --git a/doc/ref/states/all/salt.states.pecl.rst b/doc/ref/states/all/salt.states.pecl.rst index 49163f46528..2590718a51a 100644 --- a/doc/ref/states/all/salt.states.pecl.rst +++ b/doc/ref/states/all/salt.states.pecl.rst @@ -2,4 +2,4 @@ salt.states.pecl ================ .. automodule:: salt.states.pecl - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.pip_state.rst b/doc/ref/states/all/salt.states.pip_state.rst index 7f83a712535..efa54b31595 100644 --- a/doc/ref/states/all/salt.states.pip_state.rst +++ b/doc/ref/states/all/salt.states.pip_state.rst @@ -2,4 +2,4 @@ salt.states.pip_state ===================== .. automodule:: salt.states.pip_state - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.pkg.rst b/doc/ref/states/all/salt.states.pkg.rst index fbdf1e60759..3ef96b04e47 100644 --- a/doc/ref/states/all/salt.states.pkg.rst +++ b/doc/ref/states/all/salt.states.pkg.rst @@ -2,4 +2,4 @@ salt.states.pkg =============== .. automodule:: salt.states.pkg - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.pkgng.rst b/doc/ref/states/all/salt.states.pkgng.rst index 772c0382f9d..7a0ae2ab5ec 100644 --- a/doc/ref/states/all/salt.states.pkgng.rst +++ b/doc/ref/states/all/salt.states.pkgng.rst @@ -2,4 +2,4 @@ salt.states.pkgng ================= .. automodule:: salt.states.pkgng - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.pkgrepo.rst b/doc/ref/states/all/salt.states.pkgrepo.rst index b8a66d0cbec..fd67f934ac1 100644 --- a/doc/ref/states/all/salt.states.pkgrepo.rst +++ b/doc/ref/states/all/salt.states.pkgrepo.rst @@ -2,4 +2,4 @@ salt.states.pkgrepo =================== .. automodule:: salt.states.pkgrepo - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.portage_config.rst b/doc/ref/states/all/salt.states.portage_config.rst index 622df301ace..ad1908d28bd 100644 --- a/doc/ref/states/all/salt.states.portage_config.rst +++ b/doc/ref/states/all/salt.states.portage_config.rst @@ -2,4 +2,4 @@ salt.states.portage_config ========================== .. automodule:: salt.states.portage_config - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.ports.rst b/doc/ref/states/all/salt.states.ports.rst index 4c9a03e39d0..9977c05246e 100644 --- a/doc/ref/states/all/salt.states.ports.rst +++ b/doc/ref/states/all/salt.states.ports.rst @@ -2,4 +2,4 @@ salt.states.ports ================= .. automodule:: salt.states.ports - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.postgres_database.rst b/doc/ref/states/all/salt.states.postgres_database.rst index d7844e0ea73..11ceef7015e 100644 --- a/doc/ref/states/all/salt.states.postgres_database.rst +++ b/doc/ref/states/all/salt.states.postgres_database.rst @@ -2,4 +2,4 @@ salt.states.postgres_database ============================= .. automodule:: salt.states.postgres_database - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.postgres_extension.rst b/doc/ref/states/all/salt.states.postgres_extension.rst index 91e53c7ea32..50ac67d8556 100644 --- a/doc/ref/states/all/salt.states.postgres_extension.rst +++ b/doc/ref/states/all/salt.states.postgres_extension.rst @@ -2,4 +2,4 @@ salt.states.postgres_extension ============================== .. automodule:: salt.states.postgres_extension - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.postgres_group.rst b/doc/ref/states/all/salt.states.postgres_group.rst index 0f86787f012..5e6d72ea0ad 100644 --- a/doc/ref/states/all/salt.states.postgres_group.rst +++ b/doc/ref/states/all/salt.states.postgres_group.rst @@ -2,4 +2,4 @@ salt.states.postgres_group ========================== .. automodule:: salt.states.postgres_group - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.postgres_user.rst b/doc/ref/states/all/salt.states.postgres_user.rst index 7e810ae77df..b4d120344b7 100644 --- a/doc/ref/states/all/salt.states.postgres_user.rst +++ b/doc/ref/states/all/salt.states.postgres_user.rst @@ -2,4 +2,4 @@ salt.states.postgres_user ========================= .. automodule:: salt.states.postgres_user - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.powerpath.rst b/doc/ref/states/all/salt.states.powerpath.rst index d4cd3c6d44c..c5cb17b3a8d 100644 --- a/doc/ref/states/all/salt.states.powerpath.rst +++ b/doc/ref/states/all/salt.states.powerpath.rst @@ -2,4 +2,4 @@ salt.states.powerpath ===================== .. automodule:: salt.states.powerpath - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.probes.rst b/doc/ref/states/all/salt.states.probes.rst index de5b9a8553b..9d77954cae4 100644 --- a/doc/ref/states/all/salt.states.probes.rst +++ b/doc/ref/states/all/salt.states.probes.rst @@ -3,4 +3,3 @@ salt.states.probes .. automodule:: salt.states.probes :members: - diff --git a/doc/ref/states/all/salt.states.process.rst b/doc/ref/states/all/salt.states.process.rst index 4e41b199bdc..277d1ab6703 100644 --- a/doc/ref/states/all/salt.states.process.rst +++ b/doc/ref/states/all/salt.states.process.rst @@ -2,4 +2,4 @@ salt.states.process =================== .. automodule:: salt.states.process - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.pyenv.rst b/doc/ref/states/all/salt.states.pyenv.rst index e3549d9a011..f22a18434f8 100644 --- a/doc/ref/states/all/salt.states.pyenv.rst +++ b/doc/ref/states/all/salt.states.pyenv.rst @@ -2,4 +2,4 @@ salt.states.pyenv ================= .. automodule:: salt.states.pyenv - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.quota.rst b/doc/ref/states/all/salt.states.quota.rst index badbe1c2f33..8d2f19d9270 100644 --- a/doc/ref/states/all/salt.states.quota.rst +++ b/doc/ref/states/all/salt.states.quota.rst @@ -2,4 +2,4 @@ salt.states.quota ================= .. automodule:: salt.states.quota - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.rabbitmq_cluster.rst b/doc/ref/states/all/salt.states.rabbitmq_cluster.rst index 780c9cc8b09..a3ab1bfaa20 100644 --- a/doc/ref/states/all/salt.states.rabbitmq_cluster.rst +++ b/doc/ref/states/all/salt.states.rabbitmq_cluster.rst @@ -2,4 +2,4 @@ salt.states.rabbitmq_cluster ============================ .. automodule:: salt.states.rabbitmq_cluster - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.rabbitmq_plugin.rst b/doc/ref/states/all/salt.states.rabbitmq_plugin.rst index d5cb8f89ef1..c97fe2df142 100644 --- a/doc/ref/states/all/salt.states.rabbitmq_plugin.rst +++ b/doc/ref/states/all/salt.states.rabbitmq_plugin.rst @@ -2,4 +2,4 @@ salt.states.rabbitmq_plugin =========================== .. automodule:: salt.states.rabbitmq_plugin - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.rabbitmq_policy.rst b/doc/ref/states/all/salt.states.rabbitmq_policy.rst index 66777036a64..71dbe8a3786 100644 --- a/doc/ref/states/all/salt.states.rabbitmq_policy.rst +++ b/doc/ref/states/all/salt.states.rabbitmq_policy.rst @@ -2,4 +2,4 @@ salt.states.rabbitmq_policy =========================== .. automodule:: salt.states.rabbitmq_policy - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.rabbitmq_user.rst b/doc/ref/states/all/salt.states.rabbitmq_user.rst index 315b959d5a4..85da5ff306b 100644 --- a/doc/ref/states/all/salt.states.rabbitmq_user.rst +++ b/doc/ref/states/all/salt.states.rabbitmq_user.rst @@ -2,4 +2,4 @@ salt.states.rabbitmq_user ========================= .. automodule:: salt.states.rabbitmq_user - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.rabbitmq_vhost.rst b/doc/ref/states/all/salt.states.rabbitmq_vhost.rst index 30af53ee80e..085379f431c 100644 --- a/doc/ref/states/all/salt.states.rabbitmq_vhost.rst +++ b/doc/ref/states/all/salt.states.rabbitmq_vhost.rst @@ -2,4 +2,4 @@ salt.states.rabbitmq_vhost ========================== .. automodule:: salt.states.rabbitmq_vhost - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.rbenv.rst b/doc/ref/states/all/salt.states.rbenv.rst index 30e99d5db3e..c04f5ef098f 100644 --- a/doc/ref/states/all/salt.states.rbenv.rst +++ b/doc/ref/states/all/salt.states.rbenv.rst @@ -2,4 +2,4 @@ salt.states.rbenv ================= .. automodule:: salt.states.rbenv - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.rdp.rst b/doc/ref/states/all/salt.states.rdp.rst index 8cd7111fa82..40c1d3d211a 100644 --- a/doc/ref/states/all/salt.states.rdp.rst +++ b/doc/ref/states/all/salt.states.rdp.rst @@ -2,4 +2,4 @@ salt.states.rdp =============== .. automodule:: salt.states.rdp - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.redismod.rst b/doc/ref/states/all/salt.states.redismod.rst index a7f43c33fa9..f3e6835dcf8 100644 --- a/doc/ref/states/all/salt.states.redismod.rst +++ b/doc/ref/states/all/salt.states.redismod.rst @@ -2,4 +2,4 @@ salt.states.redismod ==================== .. automodule:: salt.states.redismod - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.reg.rst b/doc/ref/states/all/salt.states.reg.rst index af1b80da7c4..9772bd835c7 100644 --- a/doc/ref/states/all/salt.states.reg.rst +++ b/doc/ref/states/all/salt.states.reg.rst @@ -2,4 +2,4 @@ salt.states.reg =============== .. automodule:: salt.states.reg - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.rsync.rst b/doc/ref/states/all/salt.states.rsync.rst index 5e9d05e222a..55b28afe3a0 100644 --- a/doc/ref/states/all/salt.states.rsync.rst +++ b/doc/ref/states/all/salt.states.rsync.rst @@ -2,4 +2,4 @@ salt.states.rsync ================= .. automodule:: salt.states.rsync - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.rvm.rst b/doc/ref/states/all/salt.states.rvm.rst index c7a939c93ce..cd8ce5cc1aa 100644 --- a/doc/ref/states/all/salt.states.rvm.rst +++ b/doc/ref/states/all/salt.states.rvm.rst @@ -2,4 +2,4 @@ salt.states.rvm =============== .. automodule:: salt.states.rvm - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.saltmod.rst b/doc/ref/states/all/salt.states.saltmod.rst index 45e73b1b142..f38d8f1a0b8 100644 --- a/doc/ref/states/all/salt.states.saltmod.rst +++ b/doc/ref/states/all/salt.states.saltmod.rst @@ -2,4 +2,4 @@ salt.states.saltmod =================== .. automodule:: salt.states.saltmod - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.schedule.rst b/doc/ref/states/all/salt.states.schedule.rst index 045fa2e2788..851da711b97 100644 --- a/doc/ref/states/all/salt.states.schedule.rst +++ b/doc/ref/states/all/salt.states.schedule.rst @@ -2,4 +2,4 @@ salt.states.schedule ==================== .. automodule:: salt.states.schedule - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.selinux.rst b/doc/ref/states/all/salt.states.selinux.rst index a1be8fd1f16..a8cf2733685 100644 --- a/doc/ref/states/all/salt.states.selinux.rst +++ b/doc/ref/states/all/salt.states.selinux.rst @@ -2,4 +2,4 @@ salt.states.selinux =================== .. automodule:: salt.states.selinux - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.serverdensity_device.rst b/doc/ref/states/all/salt.states.serverdensity_device.rst index eeb5735a764..b892d835cb9 100644 --- a/doc/ref/states/all/salt.states.serverdensity_device.rst +++ b/doc/ref/states/all/salt.states.serverdensity_device.rst @@ -2,4 +2,4 @@ salt.states.serverdensity_device ================================ .. automodule:: salt.states.serverdensity_device - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.service.rst b/doc/ref/states/all/salt.states.service.rst index 81902ea11be..d11322a47b9 100644 --- a/doc/ref/states/all/salt.states.service.rst +++ b/doc/ref/states/all/salt.states.service.rst @@ -2,4 +2,4 @@ salt.states.service =================== .. automodule:: salt.states.service - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.smtp.rst b/doc/ref/states/all/salt.states.smtp.rst index b6e61637dab..ef00384b88f 100644 --- a/doc/ref/states/all/salt.states.smtp.rst +++ b/doc/ref/states/all/salt.states.smtp.rst @@ -2,4 +2,4 @@ salt.states.smtp ================ .. automodule:: salt.states.smtp - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.splunk.rst b/doc/ref/states/all/salt.states.splunk.rst index f9236412911..38bccf4561f 100644 --- a/doc/ref/states/all/salt.states.splunk.rst +++ b/doc/ref/states/all/salt.states.splunk.rst @@ -2,4 +2,4 @@ salt.states.splunk ================== .. automodule:: salt.states.splunk - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.sqlite3.rst b/doc/ref/states/all/salt.states.sqlite3.rst index 33e156d5fde..f98b9ca0849 100644 --- a/doc/ref/states/all/salt.states.sqlite3.rst +++ b/doc/ref/states/all/salt.states.sqlite3.rst @@ -2,4 +2,4 @@ salt.states.sqlite3 =================== .. automodule:: salt.states.sqlite3 - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.ssh_auth.rst b/doc/ref/states/all/salt.states.ssh_auth.rst index 7dba9df6953..834ee0565d7 100644 --- a/doc/ref/states/all/salt.states.ssh_auth.rst +++ b/doc/ref/states/all/salt.states.ssh_auth.rst @@ -2,4 +2,4 @@ salt.states.ssh_auth ==================== .. automodule:: salt.states.ssh_auth - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.ssh_known_hosts.rst b/doc/ref/states/all/salt.states.ssh_known_hosts.rst index 376f4e691f2..1be1d26a414 100644 --- a/doc/ref/states/all/salt.states.ssh_known_hosts.rst +++ b/doc/ref/states/all/salt.states.ssh_known_hosts.rst @@ -2,4 +2,4 @@ salt.states.ssh_known_hosts =========================== .. automodule:: salt.states.ssh_known_hosts - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.stateconf.rst b/doc/ref/states/all/salt.states.stateconf.rst index 2f81c5a0738..ae32e8ee7a4 100644 --- a/doc/ref/states/all/salt.states.stateconf.rst +++ b/doc/ref/states/all/salt.states.stateconf.rst @@ -2,4 +2,4 @@ salt.states.stateconf ===================== .. automodule:: salt.states.stateconf - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.status.rst b/doc/ref/states/all/salt.states.status.rst index 44431588f8d..67583440b6c 100644 --- a/doc/ref/states/all/salt.states.status.rst +++ b/doc/ref/states/all/salt.states.status.rst @@ -2,4 +2,4 @@ salt.states.status ================== .. automodule:: salt.states.status - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.supervisord.rst b/doc/ref/states/all/salt.states.supervisord.rst index 42d88b9a893..d3b068abec5 100644 --- a/doc/ref/states/all/salt.states.supervisord.rst +++ b/doc/ref/states/all/salt.states.supervisord.rst @@ -2,4 +2,4 @@ salt.states.supervisord ======================= .. automodule:: salt.states.supervisord - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.svn.rst b/doc/ref/states/all/salt.states.svn.rst index 11f76f3d44d..8bd274f358c 100644 --- a/doc/ref/states/all/salt.states.svn.rst +++ b/doc/ref/states/all/salt.states.svn.rst @@ -2,4 +2,4 @@ salt.states.svn =============== .. automodule:: salt.states.svn - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.sysctl.rst b/doc/ref/states/all/salt.states.sysctl.rst index 192ec768211..01335e89f52 100644 --- a/doc/ref/states/all/salt.states.sysctl.rst +++ b/doc/ref/states/all/salt.states.sysctl.rst @@ -2,4 +2,4 @@ salt.states.sysctl ================== .. automodule:: salt.states.sysctl - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.syslog_ng.rst b/doc/ref/states/all/salt.states.syslog_ng.rst index 190bf6a4b82..a7ea50eeda6 100644 --- a/doc/ref/states/all/salt.states.syslog_ng.rst +++ b/doc/ref/states/all/salt.states.syslog_ng.rst @@ -2,4 +2,4 @@ salt.states.syslog_ng ===================== .. automodule:: salt.states.syslog_ng - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.telemetry_alert.rst b/doc/ref/states/all/salt.states.telemetry_alert.rst index 49e23a6aa8e..45dc03c4890 100644 --- a/doc/ref/states/all/salt.states.telemetry_alert.rst +++ b/doc/ref/states/all/salt.states.telemetry_alert.rst @@ -2,4 +2,4 @@ salt.states.telemetry_alert =========================== .. automodule:: salt.states.telemetry_alert - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.test.rst b/doc/ref/states/all/salt.states.test.rst index f09ad112485..f4ed6e78d51 100644 --- a/doc/ref/states/all/salt.states.test.rst +++ b/doc/ref/states/all/salt.states.test.rst @@ -2,4 +2,4 @@ salt.states.test ================ .. automodule:: salt.states.test - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.timezone.rst b/doc/ref/states/all/salt.states.timezone.rst index a6879feb789..37b52d044df 100644 --- a/doc/ref/states/all/salt.states.timezone.rst +++ b/doc/ref/states/all/salt.states.timezone.rst @@ -2,4 +2,4 @@ salt.states.timezone ==================== .. automodule:: salt.states.timezone - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.tomcat.rst b/doc/ref/states/all/salt.states.tomcat.rst index 7a6232718d1..eb852af9be7 100644 --- a/doc/ref/states/all/salt.states.tomcat.rst +++ b/doc/ref/states/all/salt.states.tomcat.rst @@ -2,4 +2,4 @@ salt.states.tomcat ================== .. automodule:: salt.states.tomcat - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.user.rst b/doc/ref/states/all/salt.states.user.rst index bf95695d2f7..5a0902e5d12 100644 --- a/doc/ref/states/all/salt.states.user.rst +++ b/doc/ref/states/all/salt.states.user.rst @@ -2,4 +2,4 @@ salt.states.user ================ .. automodule:: salt.states.user - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.vagrant.rst b/doc/ref/states/all/salt.states.vagrant.rst index 1d3f2717cb4..6462bc04ab5 100644 --- a/doc/ref/states/all/salt.states.vagrant.rst +++ b/doc/ref/states/all/salt.states.vagrant.rst @@ -2,4 +2,4 @@ salt.states.vagrant =================== .. automodule:: salt.states.vagrant - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.virtualenv_mod.rst b/doc/ref/states/all/salt.states.virtualenv_mod.rst index 0009aae48a4..c3e69ec50d4 100644 --- a/doc/ref/states/all/salt.states.virtualenv_mod.rst +++ b/doc/ref/states/all/salt.states.virtualenv_mod.rst @@ -3,4 +3,4 @@ salt.states.virtualenv .. automodule:: salt.states.virtualenv_mod :members: - :exclude-members: manage \ No newline at end of file + :exclude-members: manage diff --git a/doc/ref/states/all/salt.states.win_dacl.rst b/doc/ref/states/all/salt.states.win_dacl.rst index d8404aa31e1..345157664ef 100644 --- a/doc/ref/states/all/salt.states.win_dacl.rst +++ b/doc/ref/states/all/salt.states.win_dacl.rst @@ -2,4 +2,4 @@ salt.states.win_dacl ==================== .. automodule:: salt.states.win_dacl - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.win_dns_client.rst b/doc/ref/states/all/salt.states.win_dns_client.rst index 50b0791f677..18908878ffa 100644 --- a/doc/ref/states/all/salt.states.win_dns_client.rst +++ b/doc/ref/states/all/salt.states.win_dns_client.rst @@ -2,4 +2,4 @@ salt.states.win_dns_client ========================== .. automodule:: salt.states.win_dns_client - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.win_firewall.rst b/doc/ref/states/all/salt.states.win_firewall.rst index 8ca113a5f76..b9bea54efb6 100644 --- a/doc/ref/states/all/salt.states.win_firewall.rst +++ b/doc/ref/states/all/salt.states.win_firewall.rst @@ -2,4 +2,4 @@ salt.states.win_firewall ======================== .. automodule:: salt.states.win_firewall - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.win_network.rst b/doc/ref/states/all/salt.states.win_network.rst index 0e4ae679c47..68771f49f75 100644 --- a/doc/ref/states/all/salt.states.win_network.rst +++ b/doc/ref/states/all/salt.states.win_network.rst @@ -2,4 +2,4 @@ salt.states.win_network ======================= .. automodule:: salt.states.win_network - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.win_path.rst b/doc/ref/states/all/salt.states.win_path.rst index ab33f1523f6..57dd8b96bf5 100644 --- a/doc/ref/states/all/salt.states.win_path.rst +++ b/doc/ref/states/all/salt.states.win_path.rst @@ -2,4 +2,4 @@ salt.states.win_path ==================== .. automodule:: salt.states.win_path - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.win_powercfg.rst b/doc/ref/states/all/salt.states.win_powercfg.rst index 423975ea4d1..51130bc41a2 100644 --- a/doc/ref/states/all/salt.states.win_powercfg.rst +++ b/doc/ref/states/all/salt.states.win_powercfg.rst @@ -2,4 +2,4 @@ salt.states.win_powercfg ======================== .. automodule:: salt.states.win_powercfg - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.win_servermanager.rst b/doc/ref/states/all/salt.states.win_servermanager.rst index 992d549eef5..529ae37cfa5 100644 --- a/doc/ref/states/all/salt.states.win_servermanager.rst +++ b/doc/ref/states/all/salt.states.win_servermanager.rst @@ -2,4 +2,4 @@ salt.states.win_servermanager ============================= .. automodule:: salt.states.win_servermanager - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.win_smtp_server.rst b/doc/ref/states/all/salt.states.win_smtp_server.rst index c6b5f86d4f5..f46a3cb554b 100644 --- a/doc/ref/states/all/salt.states.win_smtp_server.rst +++ b/doc/ref/states/all/salt.states.win_smtp_server.rst @@ -3,4 +3,3 @@ salt.states.win_smtp_server .. automodule:: salt.states.win_smtp_server :members: - diff --git a/doc/ref/states/all/salt.states.win_system.rst b/doc/ref/states/all/salt.states.win_system.rst index 2e94825966b..9cc68c3c6ef 100644 --- a/doc/ref/states/all/salt.states.win_system.rst +++ b/doc/ref/states/all/salt.states.win_system.rst @@ -3,4 +3,4 @@ salt.states.win_system .. automodule:: salt.states.win_system :members: - :exclude-members: computer_description \ No newline at end of file + :exclude-members: computer_description diff --git a/doc/ref/states/all/salt.states.winrepo.rst b/doc/ref/states/all/salt.states.winrepo.rst index 4db642931cc..240e53678f4 100644 --- a/doc/ref/states/all/salt.states.winrepo.rst +++ b/doc/ref/states/all/salt.states.winrepo.rst @@ -2,4 +2,4 @@ salt.states.winrepo =================== .. automodule:: salt.states.winrepo - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.xmpp.rst b/doc/ref/states/all/salt.states.xmpp.rst index 684ee6abfa6..dab10f16d98 100644 --- a/doc/ref/states/all/salt.states.xmpp.rst +++ b/doc/ref/states/all/salt.states.xmpp.rst @@ -2,4 +2,4 @@ salt.states.xmpp ================ .. automodule:: salt.states.xmpp - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.zcbuildout.rst b/doc/ref/states/all/salt.states.zcbuildout.rst index c0bbf752f39..cbac02c08f1 100644 --- a/doc/ref/states/all/salt.states.zcbuildout.rst +++ b/doc/ref/states/all/salt.states.zcbuildout.rst @@ -2,4 +2,4 @@ salt.states.zcbuildout ====================== .. automodule:: salt.states.zcbuildout - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/all/salt.states.zk_concurrency.rst b/doc/ref/states/all/salt.states.zk_concurrency.rst index 2a798c12fa7..807b30848c0 100644 --- a/doc/ref/states/all/salt.states.zk_concurrency.rst +++ b/doc/ref/states/all/salt.states.zk_concurrency.rst @@ -2,4 +2,4 @@ salt.states.zk_concurrency ========================== .. automodule:: salt.states.zk_concurrency - :members: \ No newline at end of file + :members: diff --git a/doc/ref/states/altering_states.rst b/doc/ref/states/altering_states.rst index d1717ec6472..3e6aa6c32e2 100644 --- a/doc/ref/states/altering_states.rst +++ b/doc/ref/states/altering_states.rst @@ -6,4 +6,4 @@ Altering States .. note:: - This documentation has been moved :ref:`here `. \ No newline at end of file + This documentation has been moved :ref:`here `. diff --git a/doc/ref/states/backup_mode.rst b/doc/ref/states/backup_mode.rst index cf580d67337..1cde050f17b 100644 --- a/doc/ref/states/backup_mode.rst +++ b/doc/ref/states/backup_mode.rst @@ -135,4 +135,4 @@ Deleting backups can be done using :mod:`file.delete_backup comment: Successfully removed /var/cache/salt/minion/file_backup/tmp/foo.txt_Sat_Jul_27_18:00:19_822550_2013 result: - True \ No newline at end of file + True diff --git a/doc/ref/states/global_state_arguments.rst b/doc/ref/states/global_state_arguments.rst index 4145690bf78..13887f39e91 100644 --- a/doc/ref/states/global_state_arguments.rst +++ b/doc/ref/states/global_state_arguments.rst @@ -6,4 +6,4 @@ Global State Arguments .. note:: - This documentation has been moved :ref:`here `. \ No newline at end of file + This documentation has been moved :ref:`here `. diff --git a/doc/ref/states/include.rst b/doc/ref/states/include.rst index a1628e61585..16289192581 100644 --- a/doc/ref/states/include.rst +++ b/doc/ref/states/include.rst @@ -91,4 +91,3 @@ needs to be defined. An exclude statement that verifies that the running The current state processing flow checks for duplicate IDs before processing excludes. An error occurs if duplicate IDs are present even if one of the IDs is targeted by an ``exclude``. - diff --git a/doc/ref/states/index.rst b/doc/ref/states/index.rst index e7d3976ab34..83d6669474d 100644 --- a/doc/ref/states/index.rst +++ b/doc/ref/states/index.rst @@ -178,7 +178,7 @@ and the SLS files below it apply to all minions. The second expression is a regular expression that will match all minions with an ID matching ``saltmaster.*`` and specifies that for those minions, the -salt.master state should be applied. +salt.master state should be applied. .. important:: Since version 2014.7.0, the default matcher (when one is not explicitly diff --git a/doc/ref/states/requisites.rst b/doc/ref/states/requisites.rst index 6ad61281020..e1cc6ec6526 100644 --- a/doc/ref/states/requisites.rst +++ b/doc/ref/states/requisites.rst @@ -93,12 +93,12 @@ Wildcard matching is supported for state identifiers. * ``*`` matches zero or more characters * ``?`` matches a single character -* ``[]`` matches a single character from the enclosed set +* ``[]`` matches a single character from the enclosed set -Note that this does not follow glob rules - dots and slashes are not special, +Note that this does not follow glob rules - dots and slashes are not special, and it is matching against state identifiers, not file paths. -In the example below, a change in any state managing an apache config file +In the example below, a change in any state managing an apache config file will reload/restart the service: .. code-block:: yaml diff --git a/doc/ref/thorium/all/salt.thorium.check.rst b/doc/ref/thorium/all/salt.thorium.check.rst index facac13e533..3e9e50bd30c 100644 --- a/doc/ref/thorium/all/salt.thorium.check.rst +++ b/doc/ref/thorium/all/salt.thorium.check.rst @@ -3,4 +3,3 @@ salt.thorium.check .. automodule:: salt.thorium.check :members: - diff --git a/doc/ref/thorium/all/salt.thorium.file.rst b/doc/ref/thorium/all/salt.thorium.file.rst index f0969c7dcf5..2f687ab75d1 100644 --- a/doc/ref/thorium/all/salt.thorium.file.rst +++ b/doc/ref/thorium/all/salt.thorium.file.rst @@ -3,4 +3,3 @@ salt.thorium.file .. automodule:: salt.thorium.file :members: - diff --git a/doc/ref/thorium/all/salt.thorium.local.rst b/doc/ref/thorium/all/salt.thorium.local.rst index 78406f8a5fd..9bce886cf99 100644 --- a/doc/ref/thorium/all/salt.thorium.local.rst +++ b/doc/ref/thorium/all/salt.thorium.local.rst @@ -3,4 +3,3 @@ salt.thorium.local .. automodule:: salt.thorium.local :members: - diff --git a/doc/ref/thorium/all/salt.thorium.reg.rst b/doc/ref/thorium/all/salt.thorium.reg.rst index cf72b703942..1440db2f4cb 100644 --- a/doc/ref/thorium/all/salt.thorium.reg.rst +++ b/doc/ref/thorium/all/salt.thorium.reg.rst @@ -3,4 +3,3 @@ salt.thorium.reg .. automodule:: salt.thorium.reg :members: - diff --git a/doc/ref/thorium/all/salt.thorium.timer.rst b/doc/ref/thorium/all/salt.thorium.timer.rst index 8d1ad5d8eee..c573f56b72a 100644 --- a/doc/ref/thorium/all/salt.thorium.timer.rst +++ b/doc/ref/thorium/all/salt.thorium.timer.rst @@ -3,4 +3,3 @@ salt.thorium.timer .. automodule:: salt.thorium.timer :members: - diff --git a/doc/ref/tops/all/salt.tops.cobbler.rst b/doc/ref/tops/all/salt.tops.cobbler.rst index 38fab33f3c0..44e65d78085 100644 --- a/doc/ref/tops/all/salt.tops.cobbler.rst +++ b/doc/ref/tops/all/salt.tops.cobbler.rst @@ -2,4 +2,4 @@ salt.tops.cobbler ================= .. automodule:: salt.tops.cobbler - :members: \ No newline at end of file + :members: diff --git a/doc/ref/tops/all/salt.tops.ext_nodes.rst b/doc/ref/tops/all/salt.tops.ext_nodes.rst index 243f4ef4b9e..41214519c18 100644 --- a/doc/ref/tops/all/salt.tops.ext_nodes.rst +++ b/doc/ref/tops/all/salt.tops.ext_nodes.rst @@ -2,4 +2,4 @@ salt.tops.ext_nodes =================== .. automodule:: salt.tops.ext_nodes - :members: \ No newline at end of file + :members: diff --git a/doc/ref/tops/all/salt.tops.mongo.rst b/doc/ref/tops/all/salt.tops.mongo.rst index a94e72633f0..6a18daad95d 100644 --- a/doc/ref/tops/all/salt.tops.mongo.rst +++ b/doc/ref/tops/all/salt.tops.mongo.rst @@ -2,4 +2,4 @@ salt.tops.mongo =============== .. automodule:: salt.tops.mongo - :members: \ No newline at end of file + :members: diff --git a/doc/ref/tops/all/salt.tops.reclass_adapter.rst b/doc/ref/tops/all/salt.tops.reclass_adapter.rst index 8a4499ec192..624815d43f4 100644 --- a/doc/ref/tops/all/salt.tops.reclass_adapter.rst +++ b/doc/ref/tops/all/salt.tops.reclass_adapter.rst @@ -2,4 +2,4 @@ salt.tops.reclass_adapter ========================= .. automodule:: salt.tops.reclass_adapter - :members: \ No newline at end of file + :members: diff --git a/doc/ref/tops/all/salt.tops.varstack_top.rst b/doc/ref/tops/all/salt.tops.varstack_top.rst index 34999bf9690..5b81c4cf928 100644 --- a/doc/ref/tops/all/salt.tops.varstack_top.rst +++ b/doc/ref/tops/all/salt.tops.varstack_top.rst @@ -2,4 +2,4 @@ salt.tops.varstack_top ====================== .. automodule:: salt.tops.varstack_top - :members: \ No newline at end of file + :members: diff --git a/doc/ref/wheel/all/salt.wheel.config.rst b/doc/ref/wheel/all/salt.wheel.config.rst index 7689be1f933..5211eb6ce72 100644 --- a/doc/ref/wheel/all/salt.wheel.config.rst +++ b/doc/ref/wheel/all/salt.wheel.config.rst @@ -2,4 +2,4 @@ salt.wheel.config ================= .. automodule:: salt.wheel.config - :members: \ No newline at end of file + :members: diff --git a/doc/ref/wheel/all/salt.wheel.error.rst b/doc/ref/wheel/all/salt.wheel.error.rst index 154b6965cbc..e7a57c58d37 100644 --- a/doc/ref/wheel/all/salt.wheel.error.rst +++ b/doc/ref/wheel/all/salt.wheel.error.rst @@ -2,4 +2,4 @@ salt.wheel.error ================ .. automodule:: salt.wheel.error - :members: \ No newline at end of file + :members: diff --git a/doc/ref/wheel/all/salt.wheel.file_roots.rst b/doc/ref/wheel/all/salt.wheel.file_roots.rst index 3621032bc12..52fc3345312 100644 --- a/doc/ref/wheel/all/salt.wheel.file_roots.rst +++ b/doc/ref/wheel/all/salt.wheel.file_roots.rst @@ -2,4 +2,4 @@ salt.wheel.file_roots ===================== .. automodule:: salt.wheel.file_roots - :members: \ No newline at end of file + :members: diff --git a/doc/ref/wheel/all/salt.wheel.key.rst b/doc/ref/wheel/all/salt.wheel.key.rst index 5789f734b14..9df63fb6222 100644 --- a/doc/ref/wheel/all/salt.wheel.key.rst +++ b/doc/ref/wheel/all/salt.wheel.key.rst @@ -2,4 +2,4 @@ salt.wheel.key ============== .. automodule:: salt.wheel.key - :members: \ No newline at end of file + :members: diff --git a/doc/ref/wheel/all/salt.wheel.pillar_roots.rst b/doc/ref/wheel/all/salt.wheel.pillar_roots.rst index be07d5599c1..5841f8ee34c 100644 --- a/doc/ref/wheel/all/salt.wheel.pillar_roots.rst +++ b/doc/ref/wheel/all/salt.wheel.pillar_roots.rst @@ -2,4 +2,4 @@ salt.wheel.pillar_roots ======================= .. automodule:: salt.wheel.pillar_roots - :members: \ No newline at end of file + :members: diff --git a/doc/topics/about_salt_project.rst b/doc/topics/about_salt_project.rst index 1a72526a617..c537e772b7c 100644 --- a/doc/topics/about_salt_project.rst +++ b/doc/topics/about_salt_project.rst @@ -4,4 +4,4 @@ Salt Project ============ -.. include:: ../../README.rst \ No newline at end of file +.. include:: ../../README.rst diff --git a/doc/topics/api.rst b/doc/topics/api.rst index 8e0142601be..44d87a55f34 100644 --- a/doc/topics/api.rst +++ b/doc/topics/api.rst @@ -7,5 +7,3 @@ APIs ../ref/clients/index netapi/index - - diff --git a/doc/topics/cloud/cloudstack.rst b/doc/topics/cloud/cloudstack.rst index f67857e6135..4ddf9c0f1d5 100644 --- a/doc/topics/cloud/cloudstack.rst +++ b/doc/topics/cloud/cloudstack.rst @@ -167,4 +167,3 @@ assigned to the VM: securitygroup: - default - salt-master - diff --git a/doc/topics/cloud/index.html b/doc/topics/cloud/index.html index edb2071439a..5a05baa217f 100644 --- a/doc/topics/cloud/index.html +++ b/doc/topics/cloud/index.html @@ -10,4 +10,4 @@ - \ No newline at end of file + diff --git a/doc/topics/cloud/lxc.rst b/doc/topics/cloud/lxc.rst index 22c0ad2bd8c..78f369d5cf4 100644 --- a/doc/topics/cloud/lxc.rst +++ b/doc/topics/cloud/lxc.rst @@ -199,4 +199,3 @@ Driver Support - Container creation - Image listing (LXC templates) - Running container information (IP addresses, etc.) - diff --git a/doc/topics/cloud/qs.rst b/doc/topics/cloud/qs.rst index 50606316f4b..a396321a571 100644 --- a/doc/topics/cloud/qs.rst +++ b/doc/topics/cloud/qs.rst @@ -145,4 +145,3 @@ any number of VMs. On subsequent runs, any VMs that do not exist are created, and VMs that are already configured are left unmodified. See :ref:`Cloud Map File `. - diff --git a/doc/topics/cloud/saltify.rst b/doc/topics/cloud/saltify.rst index 54322553900..d6322305ac4 100644 --- a/doc/topics/cloud/saltify.rst +++ b/doc/topics/cloud/saltify.rst @@ -209,7 +209,7 @@ Bulk Deployments When deploying large numbers of Salt Minions using Saltify, it may be preferable to organize the configuration in a way that duplicates data -as little as possible. For example, if a group of target systems have +as little as possible. For example, if a group of target systems have the same credentials, they can be specified in the profile, rather than in a map file. diff --git a/doc/topics/cloud/scaleway.rst b/doc/topics/cloud/scaleway.rst index bb4fb70a292..42668c6a278 100644 --- a/doc/topics/cloud/scaleway.rst +++ b/doc/topics/cloud/scaleway.rst @@ -101,4 +101,3 @@ Execute a query and return all information about the nodes running on configured .. note:: Additional documentation about Scaleway can be found at ``_. - diff --git a/doc/topics/cloud/vagrant.rst b/doc/topics/cloud/vagrant.rst index 242ef459732..bc2a1322ea6 100644 --- a/doc/topics/cloud/vagrant.rst +++ b/doc/topics/cloud/vagrant.rst @@ -266,4 +266,3 @@ Create and use your new Salt minion sudo apt install git git clone ssh://git@github.com/yourID/your_project # etc... - diff --git a/doc/topics/cloud/vmware.rst b/doc/topics/cloud/vmware.rst index 51cf6bc266c..e58b9b7ff90 100644 --- a/doc/topics/cloud/vmware.rst +++ b/doc/topics/cloud/vmware.rst @@ -478,7 +478,7 @@ Set up an initial profile at ``/etc/salt/cloud.profiles`` or ``mem_hot_add`` Boolean value that enables hot-add support for adding memory resources while the guest is powered on. - + ``nested_hv`` Boolean value that enables support for nested hardware-assisted virtualization. diff --git a/doc/topics/cloud/xen.rst b/doc/topics/cloud/xen.rst index f2bc578448e..747cd5de9f2 100644 --- a/doc/topics/cloud/xen.rst +++ b/doc/topics/cloud/xen.rst @@ -64,7 +64,7 @@ password: Profile Configuration ===================== -Xen profiles require a ``provider`` and ``image``. +Xen profiles require a ``provider`` and ``image``. provider: This will be the name of your defined provider. @@ -82,12 +82,12 @@ clone: deploy: The provisioning process will attempt to install the Salt minion service on the new target system by default. This will require login - credentials for Salt cloud to login via ssh to it. The ``user`` and + credentials for Salt cloud to login via ssh to it. The ``user`` and ``password`` options are required. If ``deploy`` is set to ``False`` then these options are not needed. resource_pool: - The name of the resource pool used for this profile. + The name of the resource pool used for this profile. storage_repo: The name of the storage repository for the target system. @@ -95,11 +95,11 @@ storage_repo: ipv4_cidr: If template is Windows, and running guest tools then a static ip address can be set. - + ipv4_gw: If template is Windows, and running guest tools then a gateway can be set. - + Set up an initial profile at ``/etc/salt/cloud.profiles`` or in the ``/etc/salt/cloud.profiles.d/`` directory: @@ -111,7 +111,7 @@ at ``/etc/salt/cloud.profiles`` or in the ``/etc/salt/cloud.profiles.d/`` direct provider: myxen deploy: False image: sles12sp2-template - + suse: user: root password: p@ssw0rd @@ -136,10 +136,10 @@ at ``/etc/salt/cloud.profiles`` or in the ``/etc/salt/cloud.profiles.d/`` direct minion: master: 10.0.0.21 -The first example will create a clone of the sles12sp2-template in the +The first example will create a clone of the sles12sp2-template in the same storage repository without deploying the Salt minion. -The second example will make a copy of the image and deploy a new +The second example will make a copy of the image and deploy a new suse VM with the Salt minion installed. The third example will create a clone of the Windows 2012 template @@ -173,7 +173,7 @@ command: # salt-cloud --list-sizes myxen -.. note:: Since size information is build in a template this command +.. note:: Since size information is build in a template this command is not implemented. Listing Images @@ -199,4 +199,3 @@ command: # salt-cloud --list-locations myxen Returns a list of resource pools. - diff --git a/doc/topics/contributing-guide.rst b/doc/topics/contributing-guide.rst index 6436c882c1e..fd4a98f12f6 100644 --- a/doc/topics/contributing-guide.rst +++ b/doc/topics/contributing-guide.rst @@ -1,3 +1,3 @@ .. _contributing-import: -.. include:: ../../CONTRIBUTING.rst \ No newline at end of file +.. include:: ../../CONTRIBUTING.rst diff --git a/doc/topics/development/conventions/index.rst b/doc/topics/development/conventions/index.rst index 2c53b1e8f7e..0679b51da8e 100644 --- a/doc/topics/development/conventions/index.rst +++ b/doc/topics/development/conventions/index.rst @@ -6,4 +6,4 @@ Salt Conventions :maxdepth: 1 :glob: - * \ No newline at end of file + * diff --git a/doc/topics/development/labels.rst b/doc/topics/development/labels.rst index 7c4cb197328..5746357535f 100644 --- a/doc/topics/development/labels.rst +++ b/doc/topics/development/labels.rst @@ -220,7 +220,7 @@ Test Status ----------- These labels relate to the status of the automated tests that run on pull -requests. +requests. - ``has-failing-test`` - The PR currently has one or more failing tests that prevent the PR from being merged. diff --git a/doc/topics/development/reporting_bugs.rst b/doc/topics/development/reporting_bugs.rst index 73c2af61c57..711481449ae 100644 --- a/doc/topics/development/reporting_bugs.rst +++ b/doc/topics/development/reporting_bugs.rst @@ -35,9 +35,3 @@ In an issue report, please include the following information: .. note:: Please be certain to scrub any logs or SLS files for sensitive data! - - - - - - diff --git a/doc/topics/development/topology.rst b/doc/topics/development/topology.rst index 8acb1c0e994..416f286c4fc 100644 --- a/doc/topics/development/topology.rst +++ b/doc/topics/development/topology.rst @@ -32,4 +32,4 @@ Return The PUB/SUB system is a one way communication, so once a publish is sent out the PUB interface on the master has no further communication with the minion. The minion, after running the command, then sends the command's return data -back to the master via the ``ret_port``. \ No newline at end of file +back to the master via the ``ret_port``. diff --git a/doc/topics/event/index.rst b/doc/topics/event/index.rst index 402e226104e..757879f48fb 100644 --- a/doc/topics/event/index.rst +++ b/doc/topics/event/index.rst @@ -13,4 +13,4 @@ Events & Reactor events ../beacons/index - ../reactor/index \ No newline at end of file + ../reactor/index diff --git a/doc/topics/execution/remote_execution.rst b/doc/topics/execution/remote_execution.rst index ab38297b881..6677fcb6b62 100644 --- a/doc/topics/execution/remote_execution.rst +++ b/doc/topics/execution/remote_execution.rst @@ -154,5 +154,3 @@ Shell completion scripts for the Salt CLI are available in the ``pkg`` Salt `source directory`_. .. _source directory: https://github.com/saltstack/salt/tree/develop/pkg - - diff --git a/doc/topics/index.rst b/doc/topics/index.rst index c91d8564659..d7c18812274 100644 --- a/doc/topics/index.rst +++ b/doc/topics/index.rst @@ -1,4 +1,4 @@ -.. _`Apache 2.0 license`: http://www.apache.org/licenses/LICENSE-2.0.html +.. _`Apache 2.0 license`: http://www.apache.org/licenses/LICENSE-2.0.html ==================== Introduction to Salt diff --git a/doc/topics/jobs/job_cache.rst b/doc/topics/jobs/job_cache.rst index 2853bdea402..dabb00a43a6 100644 --- a/doc/topics/jobs/job_cache.rst +++ b/doc/topics/jobs/job_cache.rst @@ -68,5 +68,3 @@ register of executed jobs. Salt comes with two main mechanisms to do this, the master job cache and the external job cache. See :ref:`Storing Job Results in an External System `. - - diff --git a/doc/topics/matchers/index.rst b/doc/topics/matchers/index.rst index 7dbcf2899dd..d5a0a232129 100644 --- a/doc/topics/matchers/index.rst +++ b/doc/topics/matchers/index.rst @@ -48,7 +48,7 @@ As an example, let's modify the ``list`` matcher to have the separator be a Place this code in a file called ``list_match.py`` in a ``_matchers`` directory in your -``file_roots``. Sync this down to your minions with +``file_roots``. Sync this down to your minions with :py:func:`saltutil.sync_matchers `. Then attempt to match with the following, replacing ``minionX`` with three of your minions. diff --git a/doc/topics/netapi/index.rst b/doc/topics/netapi/index.rst index 7dc69231e6b..eee00c01719 100644 --- a/doc/topics/netapi/index.rst +++ b/doc/topics/netapi/index.rst @@ -6,11 +6,11 @@ netapi modules provide API access to Salt functionality over the network. -The included :ref:`netapi modules ` support REST (over +The included :ref:`netapi modules ` support REST (over HTTP and WSGI) and WebSockets. Modules expose functions from the :py:class:`NetapiClient ` -and give access to the same functionality as the Salt commandline tools +and give access to the same functionality as the Salt commandline tools (:command:`salt`, :command:`salt-run`, etc). @@ -62,7 +62,7 @@ multiple netapi modules and multiple instances of each module. .. admonition:: :conf_master:`netapi_enable_clients` - Prior to Salt's 3006.0 release all client interfaces were enabled and it + Prior to Salt's 3006.0 release all client interfaces were enabled and it was not possible to disable clients individually. diff --git a/doc/topics/netapi/netapiclient.rst b/doc/topics/netapi/netapiclient.rst index 2a5b8c831fa..b026be7097b 100644 --- a/doc/topics/netapi/netapiclient.rst +++ b/doc/topics/netapi/netapiclient.rst @@ -5,7 +5,7 @@ NetapiClient ============ The :py:class:`NetapiClient` class provides access to -:ref:`Python API client interfaces ` when +:ref:`Python API client interfaces ` when :ref:`developing netapi modules ` .. autoclass:: salt.netapi.NetapiClient diff --git a/doc/topics/netapi/writing.rst b/doc/topics/netapi/writing.rst index efb66701448..67b68f5d1af 100644 --- a/doc/topics/netapi/writing.rst +++ b/doc/topics/netapi/writing.rst @@ -49,7 +49,7 @@ Multiple instances :py:mod:`~salt.netapi.rest_cherrypy` and :py:mod:`~salt.netapi.rest_tornado` support running multiple instances by copying and renaming entire directory -of those. To start the copied multiple :py:mod:`~salt.netapi` modules, add +of those. To start the copied multiple :py:mod:`~salt.netapi` modules, add configuration blocks for the copied :py:mod:`~salt.netapi` modules in the Salt Master config. The name of each added configuration block must match with the name of each directory of the copied :py:mod:`~salt.netapi` module. diff --git a/doc/topics/projects/index.rst b/doc/topics/projects/index.rst index f4628210bc3..9f1dde2e91c 100644 --- a/doc/topics/projects/index.rst +++ b/doc/topics/projects/index.rst @@ -44,4 +44,3 @@ Salt Vagrant Demo A Salt Demo using Vagrant. https://github.com/UtahDave/salt-vagrant-demo - diff --git a/doc/topics/proxyminion/beacon.rst b/doc/topics/proxyminion/beacon.rst index 75844261644..2fd92b730d8 100644 --- a/doc/topics/proxyminion/beacon.rst +++ b/doc/topics/proxyminion/beacon.rst @@ -25,7 +25,7 @@ This says that Salt's pillar should load some values for the proxy ``p8000`` from the file ``/srv/pillar/p8000.sls`` (if you have not changed your default pillar_roots) 2. In the pillar root for your base environment, create the ``p8000.sls`` file with the - following contents: + following contents: .. code-block:: yaml diff --git a/doc/topics/proxyminion/demo.rst b/doc/topics/proxyminion/demo.rst index 4ad27de1df6..7ed26f16fa8 100644 --- a/doc/topics/proxyminion/demo.rst +++ b/doc/topics/proxyminion/demo.rst @@ -112,4 +112,3 @@ the 'url' key above should say ``url: http://127.0.0.1:8000`` 11. States can be written to target the proxy. Feel free to experiment with them. - diff --git a/doc/topics/proxyminion/ssh.rst b/doc/topics/proxyminion/ssh.rst index f18e87d563f..1928efd2569 100644 --- a/doc/topics/proxyminion/ssh.rst +++ b/doc/topics/proxyminion/ssh.rst @@ -38,7 +38,7 @@ This says that Salt's pillar should load some values for the proxy ``p8000`` from the file ``/srv/pillar/p8000.sls`` (if you have not changed your default pillar_roots) 3. In the pillar root for your base environment, create the ``p8000.sls`` file with the - following contents: + following contents: .. code-block:: yaml diff --git a/doc/topics/reactor/index.rst b/doc/topics/reactor/index.rst index ba467f63d7b..9372e76d024 100644 --- a/doc/topics/reactor/index.rst +++ b/doc/topics/reactor/index.rst @@ -762,4 +762,4 @@ performance are a concern, you may also increase the value for which are pulling jobs from the queue and executing them. Obviously, this bears a relationship to the speed at which the queue itself will fill up. The price to pay for this value is that each thread will contain a copy of -Salt code needed to perform the requested action. +Salt code needed to perform the requested action. diff --git a/doc/topics/releases/0.10.0.rst b/doc/topics/releases/0.10.0.rst index 9f93d369f53..0be99d19f4f 100644 --- a/doc/topics/releases/0.10.0.rst +++ b/doc/topics/releases/0.10.0.rst @@ -98,4 +98,4 @@ Master and Minion Stability Fixes As Salt deployments grow new ways to break Salt are discovered. 0.10.0 comes with a number of fixes for the minions and master greatly improving Salt -stability. \ No newline at end of file +stability. diff --git a/doc/topics/releases/0.10.1.rst b/doc/topics/releases/0.10.1.rst index 61e7f62d254..36d7c8d9294 100644 --- a/doc/topics/releases/0.10.1.rst +++ b/doc/topics/releases/0.10.1.rst @@ -2,4 +2,4 @@ Salt 0.10.1 Release Notes ========================= -:release: 2012-06-19 \ No newline at end of file +:release: 2012-06-19 diff --git a/doc/topics/releases/0.10.2.rst b/doc/topics/releases/0.10.2.rst index 0f30333896c..efc7ba2ca44 100644 --- a/doc/topics/releases/0.10.2.rst +++ b/doc/topics/releases/0.10.2.rst @@ -176,4 +176,4 @@ Master and Minion Stability Fixes As Salt deployments grow new ways to break Salt are discovered. 0.10.2 comes with a number of fixes for the minions and master greatly improving Salt -stability. \ No newline at end of file +stability. diff --git a/doc/topics/releases/0.10.4.rst b/doc/topics/releases/0.10.4.rst index d8b3e802535..7dd753ff45a 100644 --- a/doc/topics/releases/0.10.4.rst +++ b/doc/topics/releases/0.10.4.rst @@ -133,4 +133,4 @@ The pillar communication has been updated to add some extra levels of verification so that the intended minion is the only one allowed to gather the data. Once all minions and the master are updated to salt 0.10.4 please activate pillar `2` by changing the `pillar_version` in the master config to -`2`. This will be set to `2` by default in a future release. \ No newline at end of file +`2`. This will be set to `2` by default in a future release. diff --git a/doc/topics/releases/0.11.1.rst b/doc/topics/releases/0.11.1.rst index 5ad5cbeed5d..1f9e706d909 100644 --- a/doc/topics/releases/0.11.1.rst +++ b/doc/topics/releases/0.11.1.rst @@ -2,4 +2,4 @@ Salt 0.11.1 Release Notes ========================= -:release: 2012-12-19 \ No newline at end of file +:release: 2012-12-19 diff --git a/doc/topics/releases/0.12.0.rst b/doc/topics/releases/0.12.0.rst index 27445c72e2f..27704f7fe40 100644 --- a/doc/topics/releases/0.12.0.rst +++ b/doc/topics/releases/0.12.0.rst @@ -109,4 +109,4 @@ Gentoo Additions Major additions to Gentoo specific components have been made. The encompasses executions modules and states ranging from supporting the make.conf file to -tools like layman. \ No newline at end of file +tools like layman. diff --git a/doc/topics/releases/0.12.1.rst b/doc/topics/releases/0.12.1.rst index fc67b0e7014..541e3fa1236 100644 --- a/doc/topics/releases/0.12.1.rst +++ b/doc/topics/releases/0.12.1.rst @@ -2,4 +2,4 @@ Salt 0.12.1 Release Notes ========================= -:release: 2013-01-21 \ No newline at end of file +:release: 2013-01-21 diff --git a/doc/topics/releases/0.13.0.rst b/doc/topics/releases/0.13.0.rst index d38494ff674..ea0fabfc9fc 100644 --- a/doc/topics/releases/0.13.0.rst +++ b/doc/topics/releases/0.13.0.rst @@ -92,4 +92,4 @@ to the latest git to work with Salt 0.13.0. Salt Cloud 0.8.5 will also require Salt 0.13.0 or later to function. The SaltStack team is sorry for the inconvenience here, we work hard to make -sure these sorts of things do not happen, but sometimes hard changes get in. \ No newline at end of file +sure these sorts of things do not happen, but sometimes hard changes get in. diff --git a/doc/topics/releases/0.13.1.rst b/doc/topics/releases/0.13.1.rst index 37d3a93a787..f99f39213b9 100644 --- a/doc/topics/releases/0.13.1.rst +++ b/doc/topics/releases/0.13.1.rst @@ -2,4 +2,4 @@ Salt 0.13.1 Release Notes ========================= -:release: 2013-02-15 \ No newline at end of file +:release: 2013-02-15 diff --git a/doc/topics/releases/0.13.2.rst b/doc/topics/releases/0.13.2.rst index de406cfbb4a..a987ee5edc6 100644 --- a/doc/topics/releases/0.13.2.rst +++ b/doc/topics/releases/0.13.2.rst @@ -2,4 +2,4 @@ Salt 0.13.2 Release Notes ========================= -:release: 2013-03-13 \ No newline at end of file +:release: 2013-03-13 diff --git a/doc/topics/releases/0.13.3.rst b/doc/topics/releases/0.13.3.rst index 00cc89ffad6..17291004e6b 100644 --- a/doc/topics/releases/0.13.3.rst +++ b/doc/topics/releases/0.13.3.rst @@ -2,4 +2,4 @@ Salt 0.13.3 Release Notes ========================= -:release: 2013-03-18 \ No newline at end of file +:release: 2013-03-18 diff --git a/doc/topics/releases/0.14.1.rst b/doc/topics/releases/0.14.1.rst index f8d171d103c..548413a9499 100644 --- a/doc/topics/releases/0.14.1.rst +++ b/doc/topics/releases/0.14.1.rst @@ -2,4 +2,4 @@ Salt 0.14.1 Release Notes ========================= -:release: 2013-04-13 \ No newline at end of file +:release: 2013-04-13 diff --git a/doc/topics/releases/0.15.0.rst b/doc/topics/releases/0.15.0.rst index 7d48445a2ea..b1d4229b0bb 100644 --- a/doc/topics/releases/0.15.0.rst +++ b/doc/topics/releases/0.15.0.rst @@ -130,4 +130,4 @@ The new monitoring states system has been started. This is very young but allows for states to be used to configure monitoring routines. So far only one monitoring state is available, the ``disk.status`` state. As more capabilities are added to Salt UI the monitoring capabilities of Salt will continue to be -expanded. \ No newline at end of file +expanded. diff --git a/doc/topics/releases/0.15.1.rst b/doc/topics/releases/0.15.1.rst index db81bbdb310..cd44b14942f 100644 --- a/doc/topics/releases/0.15.1.rst +++ b/doc/topics/releases/0.15.1.rst @@ -88,4 +88,4 @@ The issue is fixed in Salt 0.15.1. Updated packages are available in the usual l Specific commits: -https://github.com/saltstack/salt/commit/43d8c16bd26159d827d1a945c83ac28159ec5865 \ No newline at end of file +https://github.com/saltstack/salt/commit/43d8c16bd26159d827d1a945c83ac28159ec5865 diff --git a/doc/topics/releases/0.15.2.rst b/doc/topics/releases/0.15.2.rst index ac827f39bd7..9e3bcccac3d 100644 --- a/doc/topics/releases/0.15.2.rst +++ b/doc/topics/releases/0.15.2.rst @@ -2,4 +2,4 @@ Salt 0.15.2 Release Notes ========================= -:release: 2013-05-29 \ No newline at end of file +:release: 2013-05-29 diff --git a/doc/topics/releases/0.15.3.rst b/doc/topics/releases/0.15.3.rst index 405b7793edd..0a408e13988 100644 --- a/doc/topics/releases/0.15.3.rst +++ b/doc/topics/releases/0.15.3.rst @@ -2,4 +2,4 @@ Salt 0.15.3 Release Notes ========================= -:release: 2013-06-01 \ No newline at end of file +:release: 2013-06-01 diff --git a/doc/topics/releases/0.16.1.rst b/doc/topics/releases/0.16.1.rst index e293fc33ce7..b37ab4d33fe 100644 --- a/doc/topics/releases/0.16.1.rst +++ b/doc/topics/releases/0.16.1.rst @@ -2,4 +2,4 @@ Salt 0.16.1 Release Notes ========================= -:release: 2013-07-29 \ No newline at end of file +:release: 2013-07-29 diff --git a/doc/topics/releases/0.16.2.rst b/doc/topics/releases/0.16.2.rst index fa2c91b589b..8760e913825 100644 --- a/doc/topics/releases/0.16.2.rst +++ b/doc/topics/releases/0.16.2.rst @@ -194,4 +194,4 @@ Miscellaneous - Fixed tracebacks in :mod:`extfs.mkfs ` and :mod:`extfs.tune ` (:issue:`6462`) - Fixed a regression with the :mod:`module.run ` state - where the ``m_name`` and ``m_fun`` arguments were being ignored (:issue:`6464`) \ No newline at end of file + where the ``m_name`` and ``m_fun`` arguments were being ignored (:issue:`6464`) diff --git a/doc/topics/releases/0.16.3.rst b/doc/topics/releases/0.16.3.rst index dc6bc25a837..ab7e7843199 100644 --- a/doc/topics/releases/0.16.3.rst +++ b/doc/topics/releases/0.16.3.rst @@ -27,4 +27,4 @@ Version 0.16.3 is another bugfix release for :ref:`0.16.0 having set :conf_master:`file_recv` in the master config file - Fix scheduler configuration in pillar (:issue:`6201`) -.. _Linaro: https://www.linaro.org/ \ No newline at end of file +.. _Linaro: https://www.linaro.org/ diff --git a/doc/topics/releases/0.16.4.rst b/doc/topics/releases/0.16.4.rst index efa9fb1f755..720103b98e3 100644 --- a/doc/topics/releases/0.16.4.rst +++ b/doc/topics/releases/0.16.4.rst @@ -28,4 +28,4 @@ The changes include: - Fix :mod:`file.get_gid `, :mod:`file.get_uid `, and :mod:`file.chown ` for broken symlinks (:issue:`6826`) -- Fix comment for service reloads in service state (:issue:`6851`) \ No newline at end of file +- Fix comment for service reloads in service state (:issue:`6851`) diff --git a/doc/topics/releases/0.17.0.rst b/doc/topics/releases/0.17.0.rst index edb21af7c2d..9425b26b838 100644 --- a/doc/topics/releases/0.17.0.rst +++ b/doc/topics/releases/0.17.0.rst @@ -185,4 +185,4 @@ Fixes from RC to release - Fix Raspbian identification for service/pkg support (:issue:`7371`) - Fix :mod:`cp.push ` file corruption (:issue:`6495`) - Fix ALT Linux password hash specification (:issue:`3474`) -- Multiple salt-ssh-related fixes and improvements \ No newline at end of file +- Multiple salt-ssh-related fixes and improvements diff --git a/doc/topics/releases/0.17.2.rst b/doc/topics/releases/0.17.2.rst index 0d6308da8d4..0d45f248a29 100644 --- a/doc/topics/releases/0.17.2.rst +++ b/doc/topics/releases/0.17.2.rst @@ -71,4 +71,4 @@ Version 0.17.2 is another bugfix release for :ref:`0.17.0 - Improve exception handling for missing ID (:issue:`8259`) - Fix grain mismatch for ScientificLinux (:issue:`8338`) - Add configuration option for minion_id_caching -- Fix open mode auth errors (:issue:`8402`) \ No newline at end of file +- Fix open mode auth errors (:issue:`8402`) diff --git a/doc/topics/releases/0.17.3.rst b/doc/topics/releases/0.17.3.rst index 7bfbbddf89f..8cf6a8a57fb 100644 --- a/doc/topics/releases/0.17.3.rst +++ b/doc/topics/releases/0.17.3.rst @@ -44,4 +44,4 @@ Version 0.17.3 is another bugfix release for :ref:`0.17.0 - Fix rvm to run gem as the correct user (:issue:`8951`) - Fix namespace issue in win_file module (:issue:`9060`) - Fix masterless state paths on windows (:issue:`9021`) -- Fix timeout option in master config (:issue:`9040`) \ No newline at end of file +- Fix timeout option in master config (:issue:`9040`) diff --git a/doc/topics/releases/0.17.4.rst b/doc/topics/releases/0.17.4.rst index 3799347adc2..5ec90291ea2 100644 --- a/doc/topics/releases/0.17.4.rst +++ b/doc/topics/releases/0.17.4.rst @@ -9,4 +9,4 @@ Version 0.17.4 is another bugfix release for :ref:`0.17.0 - Fix file.replace bug when replacement str is numeric (:issue:`9101`) - Fix regression in file.managed (:issue:`9131`) -- Prevent traceback when job is None. (:issue:`9145`) \ No newline at end of file +- Prevent traceback when job is None. (:issue:`9145`) diff --git a/doc/topics/releases/0.17.5.rst b/doc/topics/releases/0.17.5.rst index b706f29fece..e04a8e62563 100644 --- a/doc/topics/releases/0.17.5.rst +++ b/doc/topics/releases/0.17.5.rst @@ -23,4 +23,4 @@ Version 0.17.5 is another bugfix release for :ref:`0.17.0 - Fix multiple client timeout issues (:issue:`7157` and :issue:`9302`, probably others) - Fix ``ZMQError: Operation cannot be accomplished in current state`` errors (:issue:`6306`) - Multiple optimization in minion auth routines -- Clarify logs for minion ID caching \ No newline at end of file +- Clarify logs for minion ID caching diff --git a/doc/topics/releases/0.9.1.rst b/doc/topics/releases/0.9.1.rst index f386160a1ac..cb998e08a3d 100644 --- a/doc/topics/releases/0.9.1.rst +++ b/doc/topics/releases/0.9.1.rst @@ -2,4 +2,4 @@ Salt 0.9.1 Release Notes ======================== -:release: 2011-08-29 \ No newline at end of file +:release: 2011-08-29 diff --git a/doc/topics/releases/0.9.6.rst b/doc/topics/releases/0.9.6.rst index 19375e003df..0e24ff606a6 100644 --- a/doc/topics/releases/0.9.6.rst +++ b/doc/topics/releases/0.9.6.rst @@ -46,4 +46,4 @@ Pure Python Template Support For file.managed Templates in the file.managed state can now be defined in a Python script. This script needs to have a run function that returns the string that needs to -be in the named file. \ No newline at end of file +be in the named file. diff --git a/doc/topics/releases/0.9.9.rst b/doc/topics/releases/0.9.9.rst index 1020ce41ec5..2fa7ce399ba 100644 --- a/doc/topics/releases/0.9.9.rst +++ b/doc/topics/releases/0.9.9.rst @@ -283,4 +283,4 @@ Client Tests ------------ Tests have been added to test the aspects of the client APIs and ensure that -the client calls work, and that they manage passed data, in a desirable way. \ No newline at end of file +the client calls work, and that they manage passed data, in a desirable way. diff --git a/doc/topics/releases/2014.1.1.rst b/doc/topics/releases/2014.1.1.rst index 5156c78d9ed..6cef39f94dc 100644 --- a/doc/topics/releases/2014.1.1.rst +++ b/doc/topics/releases/2014.1.1.rst @@ -46,4 +46,4 @@ Version 2014.1.1 is a bugfix release for :ref:`2014.1.0 - Fix fail on unknown target in :mod:`jobs runner ` (:issue:`11151`) - Don’t log errors for commands which are expected to sometimes exit with non-zero exit status (:issue:`11154`, :issue:`11090`) - Fix ``test=True`` CLI override of config option (:issue:`10877`) -- Log sysctl key listing at loglevel TRACE (:issue:`10931`) \ No newline at end of file +- Log sysctl key listing at loglevel TRACE (:issue:`10931`) diff --git a/doc/topics/releases/2014.1.10.rst b/doc/topics/releases/2014.1.10.rst index cdcda707e06..79e78a4f9fb 100644 --- a/doc/topics/releases/2014.1.10.rst +++ b/doc/topics/releases/2014.1.10.rst @@ -25,4 +25,4 @@ Version 2014.1.10 is another bugfix release for :ref:`2014.1.0 Salt 2014.1.10 fixes security issues documented by CVE-2014-3563: "Insecure tmp-file creation in seed.py, salt-ssh, and salt-cloud." Upgrading is -recommended. \ No newline at end of file +recommended. diff --git a/doc/topics/releases/2014.1.11.rst b/doc/topics/releases/2014.1.11.rst index 27b8bf68af0..4d9e23d6fb1 100644 --- a/doc/topics/releases/2014.1.11.rst +++ b/doc/topics/releases/2014.1.11.rst @@ -13,4 +13,4 @@ Version 2014.1.11 is another bugfix release for :ref:`2014.1.0 - Fix chocolatey path (:issue:`13870`) - Fix git_pillar infinite loop issues (:issue:`14671`) - Fix json outputter ``null`` case -- Fix for minion error if one of multiple masters are down (:issue:`14099`) \ No newline at end of file +- Fix for minion error if one of multiple masters are down (:issue:`14099`) diff --git a/doc/topics/releases/2014.1.12.rst b/doc/topics/releases/2014.1.12.rst index e013b2518d5..420714798d3 100644 --- a/doc/topics/releases/2014.1.12.rst +++ b/doc/topics/releases/2014.1.12.rst @@ -9,4 +9,4 @@ Version 2014.1.12 is another bugfix release for :ref:`2014.1.0 - Fix ``scp_file`` always failing (which broke salt-cloud) (:issue:`16437`) - Fix regression in pillar in masterless (:issue:`16210`, :issue:`16416`, - :issue:`16428`) \ No newline at end of file + :issue:`16428`) diff --git a/doc/topics/releases/2014.1.13.rst b/doc/topics/releases/2014.1.13.rst index 928cad33b41..868e65478ac 100644 --- a/doc/topics/releases/2014.1.13.rst +++ b/doc/topics/releases/2014.1.13.rst @@ -7,4 +7,4 @@ Salt 2014.1.13 Release Notes Version 2014.1.13 is another bugfix release for :ref:`2014.1.0 `. Changes include: -- Fix ``sftp_file`` by checking the exit status code of scp (which broke salt-cloud) (:issue:`16599`) \ No newline at end of file +- Fix ``sftp_file`` by checking the exit status code of scp (which broke salt-cloud) (:issue:`16599`) diff --git a/doc/topics/releases/2014.1.2.rst b/doc/topics/releases/2014.1.2.rst index 6ae9684eb00..5283944718e 100644 --- a/doc/topics/releases/2014.1.2.rst +++ b/doc/topics/releases/2014.1.2.rst @@ -47,4 +47,4 @@ Version 2014.1.2 is another bugfix release for :ref:`2014.1.0 - Fix stacktrace on ``sys.doc`` with invalid eauth (:issue:`11293`) - Fix ``git.latest`` with ``test=True`` (:issue:`11595`) - Fix ``file.check_perms`` hardcoded ``follow_symlinks`` (:issue:`11387`) -- Fix certain ``pkg`` states for RHEL5/Cent5 machines (:issue:`11719`) \ No newline at end of file +- Fix certain ``pkg`` states for RHEL5/Cent5 machines (:issue:`11719`) diff --git a/doc/topics/releases/2014.1.3.rst b/doc/topics/releases/2014.1.3.rst index 5f00ea340ef..bbbe7a4c963 100644 --- a/doc/topics/releases/2014.1.3.rst +++ b/doc/topics/releases/2014.1.3.rst @@ -54,4 +54,4 @@ Changes in the not-distributed 2014.1.2, also included in 2014.1.3: - Fix stacktrace on ``sys.doc`` with invalid eauth (:issue:`11293`) - Fix ``git.latest`` with ``test=True`` (:issue:`11595`) - Fix ``file.check_perms`` hardcoded ``follow_symlinks`` (:issue:`11387`) -- Fix certain ``pkg`` states for RHEL5/Cent5 machines (:issue:`11719`) \ No newline at end of file +- Fix certain ``pkg`` states for RHEL5/Cent5 machines (:issue:`11719`) diff --git a/doc/topics/releases/2014.1.4.rst b/doc/topics/releases/2014.1.4.rst index 03c95290bfe..a44ae0ac6ad 100644 --- a/doc/topics/releases/2014.1.4.rst +++ b/doc/topics/releases/2014.1.4.rst @@ -26,4 +26,4 @@ Version 2014.1.4 is another bugfix release for :ref:`2014.1.0 ` module (:issue:`9880`) - Fix salt minion caching all users on the server (:issue:`9743`) - Add strftime formatting for :mod:`ps.boot_time ` - (:issue:`12428`) \ No newline at end of file + (:issue:`12428`) diff --git a/doc/topics/releases/2014.1.5.rst b/doc/topics/releases/2014.1.5.rst index 53ab93e94a0..9bce51b8c41 100644 --- a/doc/topics/releases/2014.1.5.rst +++ b/doc/topics/releases/2014.1.5.rst @@ -46,4 +46,4 @@ Version 2014.1.5 is another bugfix release for :ref:`2014.1.0 system. - More robust escaping of ldap filter strings. - Fix trailing slash in :conf_master:`gitfs_root` causing files not to be - available (:issue:`13185`) \ No newline at end of file + available (:issue:`13185`) diff --git a/doc/topics/releases/2014.1.6.rst b/doc/topics/releases/2014.1.6.rst index 1578236c189..b8a055927be 100644 --- a/doc/topics/releases/2014.1.6.rst +++ b/doc/topics/releases/2014.1.6.rst @@ -23,4 +23,4 @@ Version 2014.1.6 is another bugfix release for :ref:`2014.1.0 - Fix traceback with missing ipv4 grain (:issue:`13838`) - Fix issue in roots backend with invalid data in mtime_map (:issue:`13836`) - Fix traceback in ``jobs.active`` (:issue:`11151`) -- Fix ``master_tops`` and ``_ext_nodes`` issue (:issue:`13535`, :issue:`13673`) \ No newline at end of file +- Fix ``master_tops`` and ``_ext_nodes`` issue (:issue:`13535`, :issue:`13673`) diff --git a/doc/topics/releases/2014.1.7.rst b/doc/topics/releases/2014.1.7.rst index 252b404f750..e9796cc943c 100644 --- a/doc/topics/releases/2014.1.7.rst +++ b/doc/topics/releases/2014.1.7.rst @@ -28,4 +28,4 @@ below: - Fix traceback with missing ipv4 grain (:issue:`13838`) - Fix issue in roots backend with invalid data in mtime_map (:issue:`13836`) - Fix traceback in ``jobs.active`` (:issue:`11151`) -- Fix ``master_tops`` and ``_ext_nodes`` issue (:issue:`13535`, :issue:`13673`) \ No newline at end of file +- Fix ``master_tops`` and ``_ext_nodes`` issue (:issue:`13535`, :issue:`13673`) diff --git a/doc/topics/releases/2014.1.8.rst b/doc/topics/releases/2014.1.8.rst index e7ef11850ef..aa7c2cf747c 100644 --- a/doc/topics/releases/2014.1.8.rst +++ b/doc/topics/releases/2014.1.8.rst @@ -21,4 +21,4 @@ Version 2014.1.8 is another bugfix release for :ref:`2014.1.0 - Ensure salt states are placed into the ``.salt`` directory in salt-ssh - Use a randomized path for temporary files in a salt-cloud deployment - Clean any stale directories to ensure a fresh copy of salt-ssh during a - deployment \ No newline at end of file + deployment diff --git a/doc/topics/releases/2014.1.9.rst b/doc/topics/releases/2014.1.9.rst index e8cc116d2e1..4603c3a4b6e 100644 --- a/doc/topics/releases/2014.1.9.rst +++ b/doc/topics/releases/2014.1.9.rst @@ -27,4 +27,4 @@ Version 2014.1.9 is another bugfix release for :ref:`2014.1.0 - Ensure salt states are placed into the ``.salt`` directory in salt-ssh - Use a randomized path for temporary files in a salt-cloud deployment - Clean any stale directories to ensure a fresh copy of salt-ssh during a - deployment \ No newline at end of file + deployment diff --git a/doc/topics/releases/2016.3.0.rst b/doc/topics/releases/2016.3.0.rst index 6bd91ba0669..e866dae4173 100644 --- a/doc/topics/releases/2016.3.0.rst +++ b/doc/topics/releases/2016.3.0.rst @@ -491,4 +491,3 @@ States * :mod:`states.zabbix_hostgroup ` * :mod:`states.zabbix_user ` * :mod:`states.zabbix_usergroup ` - diff --git a/doc/topics/releases/2017.7.8.rst b/doc/topics/releases/2017.7.8.rst index 9f413f172c9..f9cb6c3ee13 100644 --- a/doc/topics/releases/2017.7.8.rst +++ b/doc/topics/releases/2017.7.8.rst @@ -417,7 +417,7 @@ Changelog for v2017.7.7..v2017.7.8 * **ISSUE** `#47689`_: (`OrlandoArcapix`_) Poor performance of pip.installed when given a list of packages (refs: `#47734`_) -* **PR** `#47734`_: (`OrlandoArcapix`_) `#47689`_ improve run-speed of pip package state +* **PR** `#47734`_: (`OrlandoArcapix`_) `#47689`_ improve run-speed of pip package state @ *2018-07-31 19:15:35 UTC* * c8e69431ff Merge pull request `#47734`_ from OrlandoArcapix/Issue47689-pip-state-performance @@ -958,7 +958,7 @@ Changelog for v2017.7.7..v2017.7.8 * 739bf92599 upgrade dependencies for pytest tests -* **PR** `#48491`_: (`grokrecursion`_) Group gid fixed as integer +* **PR** `#48491`_: (`grokrecursion`_) Group gid fixed as integer @ *2018-07-10 19:31:40 UTC* * 5372b60137 Merge pull request `#48491`_ from grokrecursion/group-fix-v2 @@ -1063,7 +1063,7 @@ Changelog for v2017.7.7..v2017.7.8 * **ISSUE** `#38914`_: (`hgfischer`_) Uppercase checksums are not accepted by archive.extracted (refs: `#40754`_, `#48422`_) -* **PR** `#48422`_: (`rallytime`_) Allow file.managed to work with uppercase source_hash in test=true mode +* **PR** `#48422`_: (`rallytime`_) Allow file.managed to work with uppercase source_hash in test=true mode @ *2018-07-03 16:40:59 UTC* * **PR** `#40754`_: (`lordcirth`_) file.manage_file: uppercase checksums now work (refs: `#48422`_) @@ -1501,7 +1501,7 @@ Changelog for v2017.7.7..v2017.7.8 * 6fe711ad76 Reverse monkeypatching after test_symlink_list finishes -* **PR** `#48088`_: (`rallytime`_) Update release versions for the 2017.7 branch +* **PR** `#48088`_: (`rallytime`_) Update release versions for the 2017.7 branch @ *2018-06-13 14:03:03 UTC* * 053b019a8f Merge pull request `#48088`_ from rallytime/update_version_doc_2017.7 diff --git a/doc/topics/releases/2017.7.9.rst b/doc/topics/releases/2017.7.9.rst index 3b131615c47..cb9e31a6826 100644 --- a/doc/topics/releases/2017.7.9.rst +++ b/doc/topics/releases/2017.7.9.rst @@ -13,4 +13,3 @@ GCE Driver The GCE salt cloud driver can now be used with GCE instance credentials by setting the configuration parameters ``service_account_private_key`` and ``service_account_private_email`` to an empty string. - diff --git a/doc/topics/releases/2018.3.4.rst b/doc/topics/releases/2018.3.4.rst index 67e4bcb7608..a5455eb4b2e 100644 --- a/doc/topics/releases/2018.3.4.rst +++ b/doc/topics/releases/2018.3.4.rst @@ -1218,7 +1218,7 @@ Changelog for v2018.3.3..v2018.3.4 * 7019d47 Fix grafana dashboard updating when nothing has changed -* **PR** `#50737`_: (`garethgreenaway`_) [develop] Merge forward from 2017.7 to 2018.8 +* **PR** `#50737`_: (`garethgreenaway`_) [develop] Merge forward from 2017.7 to 2018.8 @ *2018-12-04 16:02:13 UTC* * ae81498 Merge pull request `#50737`_ from garethgreenaway/merge-2017.7 @@ -1674,7 +1674,7 @@ Changelog for v2018.3.3..v2018.3.4 * **ISSUE** `#43453`_: (`kunal-bajpai`_) Runner job `load` is never saved to job cache (refs: `#43454`_) -* **PR** `#50328`_: (`rallytime`_) Fix issue with salt-run jobs.list_jobs where Target: unknown-target +* **PR** `#50328`_: (`rallytime`_) Fix issue with salt-run jobs.list_jobs where Target: unknown-target @ *2018-11-13 19:49:58 UTC* * **PR** `#43454`_: (`kunal-bajpai`_) Fix save_load which is never called for returner jobs (refs: `#50328`_) @@ -2093,7 +2093,7 @@ Changelog for v2018.3.3..v2018.3.4 * 271bd70 capture and print exception information * bc94b8e update method for creating size field of \*\*delvals items for py3 compatibility - + * d9fe28a fix clobbering of admx_search_results which was keeping some policies from being properly detected * **PR** `#50340`_: (`garethgreenaway`_) [2018.3] Backporting `#48087`_ to 2018.3 @@ -2860,7 +2860,7 @@ Changelog for v2018.3.3..v2018.3.4 * 27ef1e0 Redact any passwords that are in http/https based source paths. -* **PR** `#50068`_: (`garethgreenaway`_) [2018.3] Updating salt.utils.mac_utils +* **PR** `#50068`_: (`garethgreenaway`_) [2018.3] Updating salt.utils.mac_utils @ *2018-10-16 09:07:10 UTC* * ab2cb51 Merge pull request `#50068`_ from garethgreenaway/1140_mac_system_tests_2018_3_failing diff --git a/doc/topics/releases/2018.3.5.rst b/doc/topics/releases/2018.3.5.rst index 516a14ce7b3..e6592486eee 100644 --- a/doc/topics/releases/2018.3.5.rst +++ b/doc/topics/releases/2018.3.5.rst @@ -7,7 +7,7 @@ Version 2018.3.5 is a CVE-fix release for :ref:`2018.3.0 `. Security Fix ============ -**CVE-2019-17361** +**CVE-2019-17361** With the Salt NetAPI enabled in addition to having a SSH roster defined, unauthenticated access is possible when specifying the client as SSH. diff --git a/doc/topics/releases/2019.2.1.rst b/doc/topics/releases/2019.2.1.rst index 265ce56cd76..5c84a644de2 100644 --- a/doc/topics/releases/2019.2.1.rst +++ b/doc/topics/releases/2019.2.1.rst @@ -2709,7 +2709,7 @@ Changelog for v2019.2.0..v2019.2.1 * dfff09b Merge branch '2019.2.1' into bp-52780 -* **PR** `#52851`_: (`Ch3LL`_) Reload matcher loader when ext_pillar_first set +* **PR** `#52851`_: (`Ch3LL`_) Reload matcher loader when ext_pillar_first set @ *2019-05-07 13:12:07 UTC* * 2e4f296 Merge pull request `#52851`_ from Ch3LL/matcher_ext_pillar @@ -3435,7 +3435,7 @@ Changelog for v2019.2.0..v2019.2.1 * 9d1b2a0 Only return None on host.present changes when test -* **PR** `#52477`_: (`mattp-`_) 2019.2 backport `#52472`_ modules.cmdmod: handle windows environ better +* **PR** `#52477`_: (`mattp-`_) 2019.2 backport `#52472`_ modules.cmdmod: handle windows environ better @ *2019-04-11 23:13:34 UTC* * **PR** `#52472`_: (`mattp-`_) modules.cmdmod: handle windows environ better (refs: `#52476`_, `#52477`_) diff --git a/doc/topics/releases/2019.2.2.rst b/doc/topics/releases/2019.2.2.rst index 242ac07b976..38d401d7c53 100644 --- a/doc/topics/releases/2019.2.2.rst +++ b/doc/topics/releases/2019.2.2.rst @@ -115,7 +115,7 @@ Changelog for v2019.2.1..v2019.2.2 * **ISSUE** `#54521`_: (`Oloremo`_) [Regression] Failhard, batch and retcodes (refs: `#54806`_) -* **PR** `#54806`_: (`Oloremo`_) [Regression] Batch with failhard fix +* **PR** `#54806`_: (`Oloremo`_) [Regression] Batch with failhard fix @ *2019-10-01 14:51:47 UTC* * 433b6fa Merge pull request `#54806`_ from Oloremo/failhard-batch-fix-2019.2.1 diff --git a/doc/topics/releases/2019.2.3.rst b/doc/topics/releases/2019.2.3.rst index 2a85005eb37..d3547c2ac8c 100644 --- a/doc/topics/releases/2019.2.3.rst +++ b/doc/topics/releases/2019.2.3.rst @@ -7,7 +7,7 @@ Version 2019.2.3 is a CVE-fix release for :ref:`2019.2.0 `. Security Fix ============ -**CVE-2019-17361** +**CVE-2019-17361** With the Salt NetAPI enabled in addition to having a SSH roster defined, unauthenticated access is possible when specifying the client as SSH. diff --git a/doc/topics/releases/2019.2.4.rst b/doc/topics/releases/2019.2.4.rst index 69ab79cfbe5..05ea2a5c17e 100644 --- a/doc/topics/releases/2019.2.4.rst +++ b/doc/topics/releases/2019.2.4.rst @@ -7,7 +7,7 @@ Version 2019.2.4 is a CVE-fix release for :ref:`2019.2.0 `. Security Fix ============ -**CVE-2020-11651** +**CVE-2020-11651** An issue was discovered in SaltStack Salt before 2019.2.4 and 3000 before 3000.2. The salt-master process ClearFuncs class does not properly validate @@ -16,7 +16,7 @@ authentication. These methods can be used to retrieve user tokens from the salt master and/or run arbitrary commands on salt minions. -**CVE-2020-11652** +**CVE-2020-11652** An issue was discovered in SaltStack Salt before 2019.2.4 and 3000 before 3000.2. The salt-master process ClearFuncs class allows access to some methods diff --git a/doc/topics/releases/2019.2.7.rst b/doc/topics/releases/2019.2.7.rst index 316f8fc61de..51555699825 100644 --- a/doc/topics/releases/2019.2.7.rst +++ b/doc/topics/releases/2019.2.7.rst @@ -9,7 +9,7 @@ Version 2019.2.7 is a CVE fix release for :ref:`2019.2.0 `. Fixed ----- -- Properly validate eauth credentials and tokens along with their ACLs. +- Properly validate eauth credentials and tokens along with their ACLs. Prior to this change eauth was not properly validated when calling Salt ssh via the salt-api. Any value for 'eauth' or 'token' would allow a user to bypass authentication and make calls to Salt ssh. (CVE-2020-25592) diff --git a/doc/topics/releases/2019.2.8.rst b/doc/topics/releases/2019.2.8.rst index 7b940629835..d05b82af7ae 100644 --- a/doc/topics/releases/2019.2.8.rst +++ b/doc/topics/releases/2019.2.8.rst @@ -10,4 +10,3 @@ Fixed ----- - Fixes salt-ssh authentication when using tty (#58922) - diff --git a/doc/topics/releases/3000.1.rst b/doc/topics/releases/3000.1.rst index a8e7f2a438a..1a4362f447a 100644 --- a/doc/topics/releases/3000.1.rst +++ b/doc/topics/releases/3000.1.rst @@ -140,7 +140,7 @@ Changelog for v3000..v3000.1 * 6c83beeb9e Fix win deps -* **PR** `#56378`_: (`Ch3LL`_) Include _version.py if building wheel +* **PR** `#56378`_: (`Ch3LL`_) Include _version.py if building wheel @ *2020-03-17 17:01:33 UTC* * e72a8d2cbc Merge pull request `#56378`_ from Ch3LL/wheel_version diff --git a/doc/topics/releases/3000.2.rst b/doc/topics/releases/3000.2.rst index 99c8d0e42be..7fbb50b3158 100644 --- a/doc/topics/releases/3000.2.rst +++ b/doc/topics/releases/3000.2.rst @@ -7,7 +7,7 @@ Version 3000.2 is a CVE-fix release for :ref:`3000 `. Security Fix ============ -**CVE-2020-11651** +**CVE-2020-11651** An issue was discovered in SaltStack Salt before 2019.2.4 and 3000 before 3000.2. The salt-master process ClearFuncs class does not properly validate @@ -16,7 +16,7 @@ authentication. These methods can be used to retrieve user tokens from the salt master and/or run arbitrary commands on salt minions. -**CVE-2020-11652** +**CVE-2020-11652** An issue was discovered in SaltStack Salt before 2019.2.4 and 3000 before 3000.2. The salt-master process ClearFuncs class allows access to some methods diff --git a/doc/topics/releases/3000.5.rst b/doc/topics/releases/3000.5.rst index 519300c3a20..1ba083c9c4e 100644 --- a/doc/topics/releases/3000.5.rst +++ b/doc/topics/releases/3000.5.rst @@ -9,7 +9,7 @@ Version 3000.5 is a CVE fix release for :ref:`3000 `. Fixed ----- -- Properly validate eauth credentials and tokens along with their ACLs. +- Properly validate eauth credentials and tokens along with their ACLs. Prior to this change eauth was not properly validated when calling Salt ssh via the salt-api. Any value for 'eauth' or 'token' would allow a user to bypass authentication and make calls to Salt ssh. (CVE-2020-25592) diff --git a/doc/topics/releases/3000.6.rst b/doc/topics/releases/3000.6.rst index a865345af19..924443bb5fc 100644 --- a/doc/topics/releases/3000.6.rst +++ b/doc/topics/releases/3000.6.rst @@ -10,4 +10,3 @@ Fixed ----- - Fixes salt-ssh authentication when using tty (#58922) - diff --git a/doc/topics/releases/3000.8.rst b/doc/topics/releases/3000.8.rst index 2fb6259c4a2..17c4210b58e 100644 --- a/doc/topics/releases/3000.8.rst +++ b/doc/topics/releases/3000.8.rst @@ -15,6 +15,6 @@ Fixed Known Issue ----------- -When using the Salt-API with the SSH client some of the SSH options are not working currently and will be fixed in an upcoming bug fix release. -We are currently testing and fixing which options still need to be fixed, but have confirmed the following ones do not work in this release: extra-filerefs, pre-flight. +When using the Salt-API with the SSH client some of the SSH options are not working currently and will be fixed in an upcoming bug fix release. +We are currently testing and fixing which options still need to be fixed, but have confirmed the following ones do not work in this release: extra-filerefs, pre-flight. This does not impact normal Salt-SSH usage on the cli. diff --git a/doc/topics/releases/3001.1.rst b/doc/topics/releases/3001.1.rst index bd7305977d0..ac2ec82664f 100644 --- a/doc/topics/releases/3001.1.rst +++ b/doc/topics/releases/3001.1.rst @@ -14,7 +14,7 @@ Changed to address some issues with slowness. (#56296, #57529) - Handle the UCRT libraries the same way they are handled in the Python 3 installer (#57594) -- Changes the 'SSDs' grain name to 'ssds' as all grains needs to be +- Changes the 'SSDs' grain name to 'ssds' as all grains needs to be resolved in lowered case. (#57612) @@ -32,7 +32,7 @@ Fixed anything in stdout. This causes the JSON parser to fail because an empty string is not valid JSON. This changes an empty string to `{}` which is valid JSON and will not cause the JSON loader to stacktrace. (#57493) -- Improves performance. Profiling `test.ping` on Windows shows that 13 of 17 +- Improves performance. Profiling `test.ping` on Windows shows that 13 of 17 seconds are wasted when the esxi grain loads vsphere before noting that the OS is not a esxi host. (#57529) - Fixed permissions issue with certain pip/virtualenv states/modules when configured for non-root user. (#57550) @@ -60,4 +60,3 @@ Added ----- - Added docs demonstrating how to apply an MSI patch with winrepo (#32780) - diff --git a/doc/topics/releases/3001.4.rst b/doc/topics/releases/3001.4.rst index e718f783a2c..1ce64bcca18 100644 --- a/doc/topics/releases/3001.4.rst +++ b/doc/topics/releases/3001.4.rst @@ -10,4 +10,3 @@ Fixed ----- - Fixes salt-ssh authentication when using tty (#58922) - diff --git a/doc/topics/releases/3001.6.rst b/doc/topics/releases/3001.6.rst index c5a9d0e185c..6faf46e60a3 100644 --- a/doc/topics/releases/3001.6.rst +++ b/doc/topics/releases/3001.6.rst @@ -15,6 +15,6 @@ Fixed Known Issue ----------- -When using the Salt-API with the SSH client some of the SSH options are not working currently and will be fixed in an upcoming bug fix release. -We are currently testing and fixing which options still need to be fixed, but have confirmed the following ones do not work in this release: extra-filerefs, pre-flight. +When using the Salt-API with the SSH client some of the SSH options are not working currently and will be fixed in an upcoming bug fix release. +We are currently testing and fixing which options still need to be fixed, but have confirmed the following ones do not work in this release: extra-filerefs, pre-flight. This does not impact normal Salt-SSH usage on the cli. diff --git a/doc/topics/releases/3002.1.rst b/doc/topics/releases/3002.1.rst index 81c6366ea40..41c9a9f24c3 100644 --- a/doc/topics/releases/3002.1.rst +++ b/doc/topics/releases/3002.1.rst @@ -11,7 +11,7 @@ Fixed - Prevent shell injections in netapi ssh client (cve-2020-16846) - Prevent creating world readable private keys with the tls execution module. (cve-2020-17490) -- Properly validate eauth credentials and tokens along with their ACLs. +- Properly validate eauth credentials and tokens along with their ACLs. Prior to this change eauth was not properly validated when calling Salt ssh via the salt-api. Any value for 'eauth' or 'token' would allow a user to bypass authentication and make calls to Salt ssh. (CVE-2020-25592) diff --git a/doc/topics/releases/3002.4.rst b/doc/topics/releases/3002.4.rst index 47d4ddc7df2..8aa43b93a18 100644 --- a/doc/topics/releases/3002.4.rst +++ b/doc/topics/releases/3002.4.rst @@ -15,6 +15,6 @@ Fixed Known Issue ----------- -When using the Salt-API with the SSH client some of the SSH options are not working currently and will be fixed in an upcoming bug fix release. -We are currently testing and fixing which options still need to be fixed, but have confirmed the following ones do not work in this release: extra-filerefs, pre-flight. +When using the Salt-API with the SSH client some of the SSH options are not working currently and will be fixed in an upcoming bug fix release. +We are currently testing and fixing which options still need to be fixed, but have confirmed the following ones do not work in this release: extra-filerefs, pre-flight. This does not impact normal Salt-SSH usage on the cli. diff --git a/doc/topics/releases/3002.6.rst b/doc/topics/releases/3002.6.rst index 1f5f2683d94..698f354aa7b 100644 --- a/doc/topics/releases/3002.6.rst +++ b/doc/topics/releases/3002.6.rst @@ -21,4 +21,3 @@ Fixed - Allow "extra_filerefs" as sanitized kwargs for SSH client. Fix regression on "cmd.run" when passing tuples as cmd. (#59664) - Allow all ssh kwargs as sanitized kwargs for SSH client. (#59748) - diff --git a/doc/topics/releases/3002.8.rst b/doc/topics/releases/3002.8.rst index eddef98ff20..a8804764d93 100644 --- a/doc/topics/releases/3002.8.rst +++ b/doc/topics/releases/3002.8.rst @@ -1,34 +1,34 @@ -.. _release-3002-8: - -======================== -Salt 3002.8 (2022-02-25) -======================== - -Version 3002.8 is a CVE security fix release for :ref:`3002 `. - - -Important notice about upgrading --------------------------------- - -Version 3002.8 is a security release. 3002.8 minions are not able to -communicate with masters older than 3002.8. You must upgrade your masters -before upgrading minions. - - -Minion authentication security ------------------------------- - -Authentication between masters and minions rely on public/private key -encryption and message signing. To secure minion authentication before you must -pre-seed the master's public key on minions. To pre-seed the minions' master -key, place a copy of the master's public key in the minion's pki directory as -``minion_master.pub``. - - -Security --------- - -- Sign authentication replies to prevent MiTM (cve-2020-22935) -- Sign pillar data to prevent MiTM attacks. (cve-2022-22934) -- Prevent job and fileserver replays (cve-2022-22936) -- Fixed targeting bug, especially visible when using syndic and user auth. (CVE-2022-22941) (#60413) +.. _release-3002-8: + +======================== +Salt 3002.8 (2022-02-25) +======================== + +Version 3002.8 is a CVE security fix release for :ref:`3002 `. + + +Important notice about upgrading +-------------------------------- + +Version 3002.8 is a security release. 3002.8 minions are not able to +communicate with masters older than 3002.8. You must upgrade your masters +before upgrading minions. + + +Minion authentication security +------------------------------ + +Authentication between masters and minions rely on public/private key +encryption and message signing. To secure minion authentication before you must +pre-seed the master's public key on minions. To pre-seed the minions' master +key, place a copy of the master's public key in the minion's pki directory as +``minion_master.pub``. + + +Security +-------- + +- Sign authentication replies to prevent MiTM (cve-2020-22935) +- Sign pillar data to prevent MiTM attacks. (cve-2022-22934) +- Prevent job and fileserver replays (cve-2022-22936) +- Fixed targeting bug, especially visible when using syndic and user auth. (CVE-2022-22941) (#60413) diff --git a/doc/topics/releases/3002.9.rst b/doc/topics/releases/3002.9.rst index 2de692db4a3..01266c78f0c 100644 --- a/doc/topics/releases/3002.9.rst +++ b/doc/topics/releases/3002.9.rst @@ -1,21 +1,21 @@ -.. _release-3002-9: - - -======================== -Salt 3002.9 (2022-05-25) -======================== - -Version 3002.9 is a CVE security fix release for :ref:`3002 `. - -Fixed ------ - -- Fixed an error when running on CentOS Stream 8. (#59161) -- Fix bug in tcp transport (#61865) -- Make sure the correct key is being used when verifying or validating communication, eg. when a Salt syndic is involved use syndic_master.pub and when a Salt minion is involved use minion_master.pub. (#61868) - - -Security --------- - -- Fixed PAM auth to reject auth attempt if user account is locked. (cve-2022-22967) +.. _release-3002-9: + + +======================== +Salt 3002.9 (2022-05-25) +======================== + +Version 3002.9 is a CVE security fix release for :ref:`3002 `. + +Fixed +----- + +- Fixed an error when running on CentOS Stream 8. (#59161) +- Fix bug in tcp transport (#61865) +- Make sure the correct key is being used when verifying or validating communication, eg. when a Salt syndic is involved use syndic_master.pub and when a Salt minion is involved use minion_master.pub. (#61868) + + +Security +-------- + +- Fixed PAM auth to reject auth attempt if user account is locked. (cve-2022-22967) diff --git a/doc/topics/releases/3002.rst b/doc/topics/releases/3002.rst index e264cf87099..ac1ce828a67 100644 --- a/doc/topics/releases/3002.rst +++ b/doc/topics/releases/3002.rst @@ -198,7 +198,7 @@ Added - Added the ability for states to return `sub_state_run's` results from external state engines (#57993) - Added salt-cloud support for Linode APIv4 via the ``api_version`` provider configuration parameter. (#58093) - Added support to manage services in Slackware Linux. (#58206) -- Added list_sources to chocolatey module to have an overview of the repositories present on the minions. +- Added list_sources to chocolatey module to have an overview of the repositories present on the minions. Added source_added to chocolatey state in order to add repositories to chocolatey. (#58588) - Adding tests for changes to virtual function for netmiko module. Adding tests for netmiko proxy minion module. (#58609) - Added features config option for feature flags. Added a feature flag diff --git a/doc/topics/releases/3003.2.rst b/doc/topics/releases/3003.2.rst index 31715898829..c1201f6cc69 100644 --- a/doc/topics/releases/3003.2.rst +++ b/doc/topics/releases/3003.2.rst @@ -16,4 +16,3 @@ Fixed - Stop SSH from hanging if connection is lost. Also added args to customize grace period. (#60216) - Improve reliability of Terminal class (#60504) - Ignore configuration for 'enable_fqdns_grains' for AIX, Solaris and Juniper, assume False (#60529) - diff --git a/doc/topics/releases/3003.4.rst b/doc/topics/releases/3003.4.rst index a01da65f643..c181f15e462 100644 --- a/doc/topics/releases/3003.4.rst +++ b/doc/topics/releases/3003.4.rst @@ -1,35 +1,35 @@ -.. _release-3003-4: - -======================== -Salt 3003.4 (2022-02-25) -======================== - -Version 3003.4 is a CVE security fix release for :ref:`3003 `. - - -Important notice about upgrading --------------------------------- - -Version 3003.4 is a security release. 3003.4 minions are not able to -communicate with masters older than 3003.4. You must upgrade your masters -before upgrading minions. - - -Minion authentication security ------------------------------- - -Authentication between masters and minions rely on public/private key -encryption and message signing. To secure minion authentication before you must -pre-seed the master's public key on minions. To pre-seed the minions' master -key, place a copy of the master's public key in the minion's pki directory as -``minion_master.pub``. - - -Security --------- - -- Sign authentication replies to prevent MiTM (cve-2022-22935) -- Prevent job and fileserver replays (cve-2022-22936) -- Sign pillar data to prevent MiTM attacks. (cve-2202-22934) -- Fixed targeting bug, especially visible when using syndic and user auth. (CVE-2022-22941) (#60413) -- Fix denial of service in junos ifconfig output parsing. +.. _release-3003-4: + +======================== +Salt 3003.4 (2022-02-25) +======================== + +Version 3003.4 is a CVE security fix release for :ref:`3003 `. + + +Important notice about upgrading +-------------------------------- + +Version 3003.4 is a security release. 3003.4 minions are not able to +communicate with masters older than 3003.4. You must upgrade your masters +before upgrading minions. + + +Minion authentication security +------------------------------ + +Authentication between masters and minions rely on public/private key +encryption and message signing. To secure minion authentication before you must +pre-seed the master's public key on minions. To pre-seed the minions' master +key, place a copy of the master's public key in the minion's pki directory as +``minion_master.pub``. + + +Security +-------- + +- Sign authentication replies to prevent MiTM (cve-2022-22935) +- Prevent job and fileserver replays (cve-2022-22936) +- Sign pillar data to prevent MiTM attacks. (cve-2202-22934) +- Fixed targeting bug, especially visible when using syndic and user auth. (CVE-2022-22941) (#60413) +- Fix denial of service in junos ifconfig output parsing. diff --git a/doc/topics/releases/3003.5.rst b/doc/topics/releases/3003.5.rst index 2e2462c79b2..33763c3b483 100644 --- a/doc/topics/releases/3003.5.rst +++ b/doc/topics/releases/3003.5.rst @@ -1,21 +1,20 @@ -.. _release-3003-5: - -======================== -Salt 3003.5 (2022-07-05) -======================== - -Version 3003.5 is a CVE security fix release for :ref:`3003 `. - -Fixed ------ - -- Update Markup and contextfunction imports for jinja versions >=3.1. (#61848) -- Fix bug in tcp transport (#61865) -- Make sure the correct key is being used when verifying or validating communication, eg. when a Salt syndic is involved use syndic_master.pub and when a Salt minion is involved use minion_master.pub. (#61868) - - -Security --------- - -- Fixed PAM auth to reject auth attempt if user account is locked. (cve-2022-22967) - +.. _release-3003-5: + +======================== +Salt 3003.5 (2022-07-05) +======================== + +Version 3003.5 is a CVE security fix release for :ref:`3003 `. + +Fixed +----- + +- Update Markup and contextfunction imports for jinja versions >=3.1. (#61848) +- Fix bug in tcp transport (#61865) +- Make sure the correct key is being used when verifying or validating communication, eg. when a Salt syndic is involved use syndic_master.pub and when a Salt minion is involved use minion_master.pub. (#61868) + + +Security +-------- + +- Fixed PAM auth to reject auth attempt if user account is locked. (cve-2022-22967) diff --git a/doc/topics/releases/3003.rst b/doc/topics/releases/3003.rst index 950dfa74f36..41928725d2d 100644 --- a/doc/topics/releases/3003.rst +++ b/doc/topics/releases/3003.rst @@ -122,7 +122,7 @@ Fixed valid if Powershell 7 is installed on the system. (#58598) - Fixed the zabbix.host_create call on zabbix_host.present to include the optional parameter visible_name. Now working as documented. (#58602) -- Fixed some bugs to allow zabbix_host.present to update a host already +- Fixed some bugs to allow zabbix_host.present to update a host already existent on Zabbix server: - Added checks before "pop" the elements "bulk" and "details" from @@ -130,8 +130,8 @@ Fixed didn't works with Zabbix >= 5.0 - Fixed the "inventory" comparison. It failed when both current and new inventory were missing. - - Rewrite of the update_interfaces routine to really "update" the - interfaces and not trying to delete and recreate all interfaces, + - Rewrite of the update_interfaces routine to really "update" the + interfaces and not trying to delete and recreate all interfaces, which almost always gives errors as interfaces with linked items can't be deleted. (#58603) - Added the "details" mandatory object with the properly default values diff --git a/doc/topics/releases/3005.1.rst b/doc/topics/releases/3005.1.rst index e2c832a0e41..e5a69f33993 100644 --- a/doc/topics/releases/3005.1.rst +++ b/doc/topics/releases/3005.1.rst @@ -27,4 +27,3 @@ Fixed - Fix pkgrepo.managed signed-by in test=true mode (#62662) - Ensure the status of the service is captured when the beacon function is called, even when the event is not being emitted. (#62675) - The sub proxies controlled by Deltaproxy need to have their own req_channel otherwise there are timeout exceptions when the __master_req_channel_payload is fired and reacted on. (#62708) - diff --git a/doc/topics/releases/3006.0.rst b/doc/topics/releases/3006.0.rst index ee5f14ba9dc..5cd3fb7fc14 100644 --- a/doc/topics/releases/3006.0.rst +++ b/doc/topics/releases/3006.0.rst @@ -32,9 +32,9 @@ All salt-api functionality disabled by default ---------------------------------------------- All netapi clients, which provide the functionality to ``salt-api``, will now -be disabled by default as a security precaution. If you use ``salt-api``, you -must add the new ``netapi_enable_clients`` option to your salt master config. -This is a breaking change and the ``salt-api`` will not function without this +be disabled by default as a security precaution. If you use ``salt-api``, you +must add the new ``netapi_enable_clients`` option to your salt master config. +This is a breaking change and the ``salt-api`` will not function without this new configuration option. See :ref:`netapi-enable-clients` for more information. diff --git a/doc/topics/releases/index.rst b/doc/topics/releases/index.rst index 0a32c4f0476..0ddde258cbc 100644 --- a/doc/topics/releases/index.rst +++ b/doc/topics/releases/index.rst @@ -5,10 +5,10 @@ Release notes This page links to the release notes for Salt, including the current, upcoming, and past releases. -* New releases and security updates are announced on the - `Salt Project blog `_. You can subscribe to an +* New releases and security updates are announced on the + `Salt Project blog `_. You can subscribe to an `RSS feed `_ for announcements. -* See the :ref:`version numbers` page for more information +* See the :ref:`version numbers` page for more information about the version numbering scheme. diff --git a/doc/topics/releases/saltapi/0.5.0.rst b/doc/topics/releases/saltapi/0.5.0.rst index 7e84d38a798..79db868aa85 100644 --- a/doc/topics/releases/saltapi/0.5.0.rst +++ b/doc/topics/releases/saltapi/0.5.0.rst @@ -25,4 +25,4 @@ GitHub, `discussing on the mailing list`__, and chatting in ``#salt`` on Freenode. .. __: https://github.com/saltstack/salt-api/issues -.. __: https://groups.google.com/forum/#!forum/salt-users \ No newline at end of file +.. __: https://groups.google.com/forum/#!forum/salt-users diff --git a/doc/topics/releases/saltapi/0.6.0.rst b/doc/topics/releases/saltapi/0.6.0.rst index 048827faf4b..d2dc56d2f6b 100644 --- a/doc/topics/releases/saltapi/0.6.0.rst +++ b/doc/topics/releases/saltapi/0.6.0.rst @@ -47,4 +47,4 @@ GitHub, `discussing on the mailing list`__, and chatting in ``#salt-devel`` on Freenode. .. __: https://github.com/saltstack/salt-api/issues -.. __: https://groups.google.com/forum/#!forum/salt-users \ No newline at end of file +.. __: https://groups.google.com/forum/#!forum/salt-users diff --git a/doc/topics/releases/saltapi/0.7.0.rst b/doc/topics/releases/saltapi/0.7.0.rst index d5d47353c66..003c22fb9b1 100644 --- a/doc/topics/releases/saltapi/0.7.0.rst +++ b/doc/topics/releases/saltapi/0.7.0.rst @@ -46,4 +46,4 @@ GitHub, `discussing on the mailing list`__, and chatting in ``#salt-devel`` on Freenode. .. __: https://github.com/saltstack/salt-api/issues -.. __: https://groups.google.com/forum/#!forum/salt-users \ No newline at end of file +.. __: https://groups.google.com/forum/#!forum/salt-users diff --git a/doc/topics/releases/saltapi/0.7.5.rst b/doc/topics/releases/saltapi/0.7.5.rst index 55e7348f318..5e2f3dbbd47 100644 --- a/doc/topics/releases/saltapi/0.7.5.rst +++ b/doc/topics/releases/saltapi/0.7.5.rst @@ -31,4 +31,4 @@ GitHub, `discussing on the mailing list`__, and chatting in ``#salt-devel`` on Freenode. .. __: https://github.com/saltstack/salt-api/issues -.. __: https://groups.google.com/forum/#!forum/salt-users \ No newline at end of file +.. __: https://groups.google.com/forum/#!forum/salt-users diff --git a/doc/topics/releases/saltapi/0.8.2.rst b/doc/topics/releases/saltapi/0.8.2.rst index 3a0c5aa852e..183f4480601 100644 --- a/doc/topics/releases/saltapi/0.8.2.rst +++ b/doc/topics/releases/saltapi/0.8.2.rst @@ -22,4 +22,4 @@ interface for a running Salt system: This is a backward incompatible change. * Added a dedicated URL for serving an HTML app -* Added dedicated URL for serving static media \ No newline at end of file +* Added dedicated URL for serving static media diff --git a/doc/topics/releases/saltapi/0.8.3.rst b/doc/topics/releases/saltapi/0.8.3.rst index 04857a07561..5935ec72926 100644 --- a/doc/topics/releases/saltapi/0.8.3.rst +++ b/doc/topics/releases/saltapi/0.8.3.rst @@ -41,4 +41,4 @@ while running the HTTP server with debugging options enabled. Now each item can be enabled or disabled independently of the other. In addition, there has been several bug fixes, packaging fixes, and minor code -simplification. \ No newline at end of file +simplification. diff --git a/doc/topics/releases/saltapi/0.8.4.rst b/doc/topics/releases/saltapi/0.8.4.rst index edd26d5c5bc..daa37b6dea0 100644 --- a/doc/topics/releases/saltapi/0.8.4.rst +++ b/doc/topics/releases/saltapi/0.8.4.rst @@ -99,4 +99,4 @@ Improvements to the Server Sent Events stream Event tags have been added to :py:class:`the HTTP event stream ` as SSE tags which allows JavaScript or other consumers to more easily match on certain tags without having to -inspect the whole event. \ No newline at end of file +inspect the whole event. diff --git a/doc/topics/releases/saltapi/index.rst b/doc/topics/releases/saltapi/index.rst index 9ca0492079e..fb222cdb091 100644 --- a/doc/topics/releases/saltapi/index.rst +++ b/doc/topics/releases/saltapi/index.rst @@ -10,4 +10,4 @@ Release notes :maxdepth: 1 :glob: - * \ No newline at end of file + * diff --git a/doc/topics/salt_system_architecture.rst b/doc/topics/salt_system_architecture.rst index d50b62d15c3..cc755f7a5b1 100644 --- a/doc/topics/salt_system_architecture.rst +++ b/doc/topics/salt_system_architecture.rst @@ -1,277 +1,277 @@ -.. _salt-system-architecture: - -======================== -Salt system architecture -======================== - -Overview -======== -This page provides a high-level overview of the Salt system architecture and its -different components. - - -What is Salt? -============= -Salt is a Python-based open-source remote execution framework used for: - -* Configuration management -* Automation -* Provisioning -* Orchestration - - -The Salt system architecture -============================ -The following diagram shows the primary components of the basic Salt -architecture: - -.. image:: /_static/salt-architecture.png - :width: 80% - -The following sections describe some of the core components of the Salt -architecture. - - -Salt Masters and Salt Minions ------------------------------ -Salt uses the master-client model in which a master issues commands to a client -and the client executes the command. In the Salt ecosystem, the Salt Master is a -server that is running the ``salt-master`` service. It issues commands to one or -more Salt Minions, which are servers that are running the ``salt-minion`` -service and that are registered with that particular Salt Master. - -Another way to describe Salt is as a publisher-subscriber model. The master -publishes jobs that need to be executed and Salt Minions subscribe to those -jobs. When a specific job applies to that minion, it will execute the job. - -When a minion finishes executing a job, it sends job return data back to the -master. Salt has two ports used by default for the minions to communicate with -their master(s). These ports work in concert to receive and deliver data to the -Message Bus. Salt’s message bus is ZeroMQ, which creates an asynchronous network -topology to provide the fastest communication possible. - - -Targets and grains ------------------- -The master indicates which minions should execute the job by defining a -*target*. A target is the group of minions, across one or many masters, that a -job's Salt command applies to. - -.. Note:: - A master can also be managed like a minion and can be a target if it is - running the ``salt-minion`` service. - -The following is an example of one of the many kinds of commands that a master -might issue to a minion. This command indicates that all minions should install -the Vim application: - -.. code-block:: bash - - salt -v '*' pkg.install vim - -In this case the glob ``'*'`` is the target, which indicates that all minions -should execute this command. Many other targeting options are available, -including targeting a specific minion by its ID or targeting minions by their -shared traits or characteristics (called *grains* in Salt). - -Salt comes with an interface to derive information about the underlying system. -This is called the *grains interface*, because it presents Salt with grains of -information. Grains are collected for the operating system, domain name, -IP address, kernel, OS type, memory, and many other system properties. You can -also create your own custom grain data. - -Grain data is relatively static. However, grain data is refreshed when system -information changes (such as network settings) or when a new value is assigned -to a custom grain. - - -Open event system (event bus) ------------------------------ -The event system is used for inter-process communication between the Salt Master -and Salt Minions. In the event system: - -* Events are seen by both the master and minions. -* Events can be monitored and evaluated by both. - -The event bus lays the groundwork for orchestration and real-time monitoring. - -All minions see jobs and results by subscribing to events published on the event -system. Salt uses a pluggable event system with two layers: - -* **ZeroMQ (0MQ)** - The current default socket-level library providing a - flexible transport layer. -* **Tornado** - Full TCP-based transport layer event system. - -One of the greatest strengths of Salt is the speed of execution. The event -system’s communication bus is more efficient than running a higher-level web -service (http). The remote execution system is the component that all components -are built upon, allowing for decentralized remote execution to spread load -across resources. - - -Salt states ------------ -In addition to remote execution, Salt provides another method for configuring -minions by declaring which *state* a minion should be in, otherwise referred to -as *Salt states*. Salt states make configuration management possible. You can -use Salt states to deploy and manage infrastructure with simple YAML files. -Using states, you can automate recursive and predictable tasks by queueing jobs -for Salt to implement without needing user input. You can also add more complex -conditional logic to state files with Jinja. - -To illustrate the subtle differences between remote execution and configuration -management, take the command referenced in the previous section about -`Targets and grains`_ in which Salt installed the application Vim on all -minions: - -.. list-table:: - :widths: 25 25 50 - :header-rows: 1 - - * - Methodology - - Implementation - - Result - - * - Remote execution - - * Run ``salt -v '*' pkg.install vim`` from the terminal - - * Remotely installs Vim on the targeted minions - - * - Configuration management - - * Write a YAML state file that checks whether Vim is installed - * This state file is then applied to the targeted minions - - * Ensures that Vim is always installed on the targeted minions - * Salt analyzes the state file and determines what actions need to be - taken to ensure the minion complies with the state declarations - * If Vim is not installed, it automates the processes to install Vim on - the targeted minions - -The state file that verifies Vim is installed might look like the following -example: - -.. code-block:: yaml - - # File:/srv/salt/vim_install.sls - - install_vim_now: - pkg.installed: - - pkgs: - - vim - -To apply this state to a minion, you would use the ``state.apply`` module, such -as in the following example: - -.. code-block:: bash - - salt '*' state.apply vim_install - -This command applies the ``vim_install`` state to all minions. - -*Formulas* are collections of states that work in harmony to configure a minion -or application. For example, one state might trigger another state. - - -The Top file ------------- -It is not practical to manually run each state individually targeting specific -minions each time. Some environments have hundreds of state files targeting -thousands of minions. - -Salt offers two features to help with this scaling problem: - -* **The top.sls file** - Maps Salt states to their applicable minions. -* **Highstate execution** - Runs all Salt states outlined in ``top.sls`` in a - single execution. - -The top file maps which states should be applied to different minions in certain -environments. The following is an example of a simple top file: - -.. code-block:: yaml - - # File: /srv/salt/top.sls - - base: - '*': - - all_server_setup - - '01webserver': - - web_server_setup - -In this example, ``base`` refers to the Salt environment, which is the default. -You can specify more than one environment as needed, such as prod, dev, QA, etc. - -Groups of minions are specified under the environment, and states are listed for -each set of minions. This top file indicates that a state called -``all_server_setup`` should be applied to all minions ``'*'`` and the state -called ``web_server_setup`` should be applied to the ``01webserver`` minion. - -To run the Salt command, you would use the state.highstate function: - -.. code-block:: bash - - salt \* state.highstate - -This command applies the top file to the targeted minions. - - -Salt pillar ------------ -Salt’s pillar feature takes data defined on the Salt Master and distributes it -to minions as needed. Pillar is primarily used to store secrets or other highly -sensitive data, such as account credentials, cryptographic keys, or passwords. -Pillar is also useful for storing non-secret data that you don't want to place -directly in your state files, such as configuration data. - -Salt pillar brings data into the cluster from the opposite direction as grains. -While grains are data generated from the minion, the pillar is data generated -from the master. - -Pillars are organized similarly to states in a Pillar state tree, where -``top.sls`` acts to coordinate pillar data to environments and minions privy to -the data. Information transferred using pillar has a dictionary generated for -the targeted minion and encrypted with that minion’s key for secure data -transfer. Pillar data is encrypted on a per-minion basis, which makes it useful -for storing sensitive data specific to a particular minion. - - -Beacons and reactors --------------------- -The beacon system is a monitoring tool that can listen for a variety of system -processes on Salt Minions. Beacons can trigger reactors which can then help -implement a change or troubleshoot an issue. For example, if a service’s -response times out, the reactor system can restart the service. - -Beacons are used for a variety of purposes, including: - -* Automated reporting -* Error log delivery -* Microservice monitoring -* User shell activity -* Resource monitoring - -When coupled with reactors, beacons can create automated pre-written responses -to infrastructure and application issues. Reactors expand Salt with automated -responses using pre-written remediation states. - -Reactors can be applied in a variety of scenarios: - -* Infrastructure scaling -* Notifying administrators -* Restarting failed applications -* Automatic rollback - -When both beacons and reactors are used together , you can create unique states -customized to your specific needs. - - -Salt runners and orchestration ------------------------------- -Salt runners are convenience applications executed with the ``salt-run`` -command. Salt runners work similarly to Salt execution modules. However, they -execute on the Salt Master instead of the Salt Minions. A Salt runner can be a -simple client call or a complex application. - -Salt provides the ability to orchestrate system administrative tasks throughout -the enterprise. Orchestration makes it possible to coordinate the activities of -multiple machines from a central place. It has the added advantage of being able -to control the sequence of when certain configuration events occur. -Orchestration states execute on the master using the state runner module. +.. _salt-system-architecture: + +======================== +Salt system architecture +======================== + +Overview +======== +This page provides a high-level overview of the Salt system architecture and its +different components. + + +What is Salt? +============= +Salt is a Python-based open-source remote execution framework used for: + +* Configuration management +* Automation +* Provisioning +* Orchestration + + +The Salt system architecture +============================ +The following diagram shows the primary components of the basic Salt +architecture: + +.. image:: /_static/salt-architecture.png + :width: 80% + +The following sections describe some of the core components of the Salt +architecture. + + +Salt Masters and Salt Minions +----------------------------- +Salt uses the master-client model in which a master issues commands to a client +and the client executes the command. In the Salt ecosystem, the Salt Master is a +server that is running the ``salt-master`` service. It issues commands to one or +more Salt Minions, which are servers that are running the ``salt-minion`` +service and that are registered with that particular Salt Master. + +Another way to describe Salt is as a publisher-subscriber model. The master +publishes jobs that need to be executed and Salt Minions subscribe to those +jobs. When a specific job applies to that minion, it will execute the job. + +When a minion finishes executing a job, it sends job return data back to the +master. Salt has two ports used by default for the minions to communicate with +their master(s). These ports work in concert to receive and deliver data to the +Message Bus. Salt’s message bus is ZeroMQ, which creates an asynchronous network +topology to provide the fastest communication possible. + + +Targets and grains +------------------ +The master indicates which minions should execute the job by defining a +*target*. A target is the group of minions, across one or many masters, that a +job's Salt command applies to. + +.. Note:: + A master can also be managed like a minion and can be a target if it is + running the ``salt-minion`` service. + +The following is an example of one of the many kinds of commands that a master +might issue to a minion. This command indicates that all minions should install +the Vim application: + +.. code-block:: bash + + salt -v '*' pkg.install vim + +In this case the glob ``'*'`` is the target, which indicates that all minions +should execute this command. Many other targeting options are available, +including targeting a specific minion by its ID or targeting minions by their +shared traits or characteristics (called *grains* in Salt). + +Salt comes with an interface to derive information about the underlying system. +This is called the *grains interface*, because it presents Salt with grains of +information. Grains are collected for the operating system, domain name, +IP address, kernel, OS type, memory, and many other system properties. You can +also create your own custom grain data. + +Grain data is relatively static. However, grain data is refreshed when system +information changes (such as network settings) or when a new value is assigned +to a custom grain. + + +Open event system (event bus) +----------------------------- +The event system is used for inter-process communication between the Salt Master +and Salt Minions. In the event system: + +* Events are seen by both the master and minions. +* Events can be monitored and evaluated by both. + +The event bus lays the groundwork for orchestration and real-time monitoring. + +All minions see jobs and results by subscribing to events published on the event +system. Salt uses a pluggable event system with two layers: + +* **ZeroMQ (0MQ)** - The current default socket-level library providing a + flexible transport layer. +* **Tornado** - Full TCP-based transport layer event system. + +One of the greatest strengths of Salt is the speed of execution. The event +system’s communication bus is more efficient than running a higher-level web +service (http). The remote execution system is the component that all components +are built upon, allowing for decentralized remote execution to spread load +across resources. + + +Salt states +----------- +In addition to remote execution, Salt provides another method for configuring +minions by declaring which *state* a minion should be in, otherwise referred to +as *Salt states*. Salt states make configuration management possible. You can +use Salt states to deploy and manage infrastructure with simple YAML files. +Using states, you can automate recursive and predictable tasks by queueing jobs +for Salt to implement without needing user input. You can also add more complex +conditional logic to state files with Jinja. + +To illustrate the subtle differences between remote execution and configuration +management, take the command referenced in the previous section about +`Targets and grains`_ in which Salt installed the application Vim on all +minions: + +.. list-table:: + :widths: 25 25 50 + :header-rows: 1 + + * - Methodology + - Implementation + - Result + + * - Remote execution + - * Run ``salt -v '*' pkg.install vim`` from the terminal + - * Remotely installs Vim on the targeted minions + + * - Configuration management + - * Write a YAML state file that checks whether Vim is installed + * This state file is then applied to the targeted minions + - * Ensures that Vim is always installed on the targeted minions + * Salt analyzes the state file and determines what actions need to be + taken to ensure the minion complies with the state declarations + * If Vim is not installed, it automates the processes to install Vim on + the targeted minions + +The state file that verifies Vim is installed might look like the following +example: + +.. code-block:: yaml + + # File:/srv/salt/vim_install.sls + + install_vim_now: + pkg.installed: + - pkgs: + - vim + +To apply this state to a minion, you would use the ``state.apply`` module, such +as in the following example: + +.. code-block:: bash + + salt '*' state.apply vim_install + +This command applies the ``vim_install`` state to all minions. + +*Formulas* are collections of states that work in harmony to configure a minion +or application. For example, one state might trigger another state. + + +The Top file +------------ +It is not practical to manually run each state individually targeting specific +minions each time. Some environments have hundreds of state files targeting +thousands of minions. + +Salt offers two features to help with this scaling problem: + +* **The top.sls file** - Maps Salt states to their applicable minions. +* **Highstate execution** - Runs all Salt states outlined in ``top.sls`` in a + single execution. + +The top file maps which states should be applied to different minions in certain +environments. The following is an example of a simple top file: + +.. code-block:: yaml + + # File: /srv/salt/top.sls + + base: + '*': + - all_server_setup + + '01webserver': + - web_server_setup + +In this example, ``base`` refers to the Salt environment, which is the default. +You can specify more than one environment as needed, such as prod, dev, QA, etc. + +Groups of minions are specified under the environment, and states are listed for +each set of minions. This top file indicates that a state called +``all_server_setup`` should be applied to all minions ``'*'`` and the state +called ``web_server_setup`` should be applied to the ``01webserver`` minion. + +To run the Salt command, you would use the state.highstate function: + +.. code-block:: bash + + salt \* state.highstate + +This command applies the top file to the targeted minions. + + +Salt pillar +----------- +Salt’s pillar feature takes data defined on the Salt Master and distributes it +to minions as needed. Pillar is primarily used to store secrets or other highly +sensitive data, such as account credentials, cryptographic keys, or passwords. +Pillar is also useful for storing non-secret data that you don't want to place +directly in your state files, such as configuration data. + +Salt pillar brings data into the cluster from the opposite direction as grains. +While grains are data generated from the minion, the pillar is data generated +from the master. + +Pillars are organized similarly to states in a Pillar state tree, where +``top.sls`` acts to coordinate pillar data to environments and minions privy to +the data. Information transferred using pillar has a dictionary generated for +the targeted minion and encrypted with that minion’s key for secure data +transfer. Pillar data is encrypted on a per-minion basis, which makes it useful +for storing sensitive data specific to a particular minion. + + +Beacons and reactors +-------------------- +The beacon system is a monitoring tool that can listen for a variety of system +processes on Salt Minions. Beacons can trigger reactors which can then help +implement a change or troubleshoot an issue. For example, if a service’s +response times out, the reactor system can restart the service. + +Beacons are used for a variety of purposes, including: + +* Automated reporting +* Error log delivery +* Microservice monitoring +* User shell activity +* Resource monitoring + +When coupled with reactors, beacons can create automated pre-written responses +to infrastructure and application issues. Reactors expand Salt with automated +responses using pre-written remediation states. + +Reactors can be applied in a variety of scenarios: + +* Infrastructure scaling +* Notifying administrators +* Restarting failed applications +* Automatic rollback + +When both beacons and reactors are used together , you can create unique states +customized to your specific needs. + + +Salt runners and orchestration +------------------------------ +Salt runners are convenience applications executed with the ``salt-run`` +command. Salt runners work similarly to Salt execution modules. However, they +execute on the Salt Master instead of the Salt Minions. A Salt runner can be a +simple client call or a complex application. + +Salt provides the ability to orchestrate system administrative tasks throughout +the enterprise. Orchestration makes it possible to coordinate the activities of +multiple machines from a central place. It has the added advantage of being able +to control the sequence of when certain configuration events occur. +Orchestration states execute on the master using the state runner module. diff --git a/doc/topics/solaris/solaris-specific-behavior.rst b/doc/topics/solaris/solaris-specific-behavior.rst index 7febed84540..543d6843cba 100644 --- a/doc/topics/solaris/solaris-specific-behavior.rst +++ b/doc/topics/solaris/solaris-specific-behavior.rst @@ -12,13 +12,13 @@ some modules. FQDN/UQDN ========================= On Solaris platforms the FQDN will not always be properly detected. -If an IPv6 address is configured pythons ```socket.getfqdn()``` fails to return -a FQDN and returns the nodename instead. For a full breakdown see the following +If an IPv6 address is configured pythons ```socket.getfqdn()``` fails to return +a FQDN and returns the nodename instead. For a full breakdown see the following issue on github: #37027 Grains ========================= -Not all grains are available or some have empty or 0 as value. Mostly grains +Not all grains are available or some have empty or 0 as value. Mostly grains that are dependent on hardware discovery like: - num_gpus - gpus diff --git a/doc/topics/spm/config.rst b/doc/topics/spm/config.rst index ef1ab09c927..292a16378e2 100644 --- a/doc/topics/spm/config.rst +++ b/doc/topics/spm/config.rst @@ -87,4 +87,3 @@ The files in this type of package are configuration files for Salt, which normally live in the ``/etc/salt/`` directory. Configuration files for packages other than Salt can and should be handled with a Salt State (using a ``formula`` type of package). - diff --git a/doc/topics/spm/index.rst b/doc/topics/spm/index.rst index 4fcffb5298f..d1790261412 100644 --- a/doc/topics/spm/index.rst +++ b/doc/topics/spm/index.rst @@ -55,4 +55,3 @@ See :ref:`Installing SPM Packages ` config spm_formula dev - diff --git a/doc/topics/spm/master.rst b/doc/topics/spm/master.rst index 8eb3a7bf00b..aafe4e475a9 100644 --- a/doc/topics/spm/master.rst +++ b/doc/topics/spm/master.rst @@ -118,4 +118,3 @@ command. If files have been modified, they will not be removed. Empty directories will also be removed. - diff --git a/doc/topics/spm/packaging.rst b/doc/topics/spm/packaging.rst index 4d3860817a1..591af26892f 100644 --- a/doc/topics/spm/packaging.rst +++ b/doc/topics/spm/packaging.rst @@ -135,4 +135,3 @@ installed on. Please see the :ref:`SPM Development Guide ` for information on creating new modules for package file management. - diff --git a/doc/topics/spm/repo.rst b/doc/topics/spm/repo.rst index d6643eea973..9583e264d77 100644 --- a/doc/topics/spm/repo.rst +++ b/doc/topics/spm/repo.rst @@ -47,4 +47,3 @@ create_repo`` command: SPM generates the repository metadata for all of the packages in that directory and places it in an ``SPM-METADATA`` file at the folder root. This command is used even if repository metadata already exists in that directory. - diff --git a/doc/topics/states/index.rst b/doc/topics/states/index.rst index 28c1b6c9244..0ab336fa2d8 100644 --- a/doc/topics/states/index.rst +++ b/doc/topics/states/index.rst @@ -79,4 +79,3 @@ resources to learn more about state and renderers. ../tutorials/states_pt3 ../tutorials/states_pt4 ../../ref/states/index - diff --git a/doc/topics/targeting/compound.rst b/doc/topics/targeting/compound.rst index 14ee06773e9..d21cc7febec 100644 --- a/doc/topics/targeting/compound.rst +++ b/doc/topics/targeting/compound.rst @@ -21,7 +21,7 @@ I Pillar glob ``I@pdata:foobar`` J Pillar PCRE ``J@pdata:^(foo|bar)$`` Yes S Subnet/IP address ``S@192.168.1.0/24`` or ``S@192.168.1.100`` No R Range cluster ``R@%foo.bar`` No -N Nodegroups ``N@group1`` No +N Nodegroups ``N@group1`` No ====== ==================== ============================================================== ============================================= Matchers can be joined using boolean ``and``, ``or``, and ``not`` operators. diff --git a/doc/topics/targeting/grains.rst b/doc/topics/targeting/grains.rst index c38adabb3a1..068058540a6 100644 --- a/doc/topics/targeting/grains.rst +++ b/doc/topics/targeting/grains.rst @@ -32,4 +32,3 @@ which has a value that contains the word ``production``: .. important:: See :ref:`Is Targeting using Grain Data Secure? ` for important security information. - diff --git a/doc/topics/topology/index.rst b/doc/topics/topology/index.rst index 48e792c86d7..fe9751989f8 100644 --- a/doc/topics/topology/index.rst +++ b/doc/topics/topology/index.rst @@ -23,5 +23,3 @@ your deployment as needed for redundancy, geographical distribution, and scale. ../tutorials/intro_scale ../tutorials/multimaster ../tutorials/multimaster_pki - - diff --git a/doc/topics/tutorials/esky.rst b/doc/topics/tutorials/esky.rst index 926cf21b210..610b99270ab 100644 --- a/doc/topics/tutorials/esky.rst +++ b/doc/topics/tutorials/esky.rst @@ -98,4 +98,4 @@ Automatic (Python) module discovery does not work with the late-loaded scheme that Salt uses for (Salt) modules. Any misbehaving modules will need to be explicitly added to the ``freezer_includes`` in Salt's ``setup.py``. Always check the zipped application to make sure that the necessary modules were -included. \ No newline at end of file +included. diff --git a/doc/topics/tutorials/esxi_proxy_minion.rst b/doc/topics/tutorials/esxi_proxy_minion.rst index fe3652af9c4..4a09b652a26 100644 --- a/doc/topics/tutorials/esxi_proxy_minion.rst +++ b/doc/topics/tutorials/esxi_proxy_minion.rst @@ -228,8 +228,8 @@ This allows you to use any number of potential fallback passwords. This scenario is especially true, and even slower, when the proxy minion first starts. If the correct password is not the first password on the list, it may take up to a minute for ``test.version`` to respond - with salt's version installed (Example: ``2018.3.4``. Once the initial - authorization is complete, the responses for commands will be a little + with salt's version installed (Example: ``2018.3.4``. Once the initial + authorization is complete, the responses for commands will be a little faster. To avoid these longer waiting periods, SaltStack recommends moving the @@ -525,4 +525,3 @@ Relevant Salt Files and Resources - :ref:`Salt Proxy Minion Docs ` - :ref:`Salt Proxy Minion End-to-End Example ` - :mod:`vSphere Execution Module ` - diff --git a/doc/topics/tutorials/firewall.rst b/doc/topics/tutorials/firewall.rst index 4248e3a00d9..d7b199e3136 100644 --- a/doc/topics/tutorials/firewall.rst +++ b/doc/topics/tutorials/firewall.rst @@ -28,7 +28,7 @@ FirewallD use the command line client ``firewall-cmd``. firewall-cmd --permanent --zone= --add-port=4505-4506/tcp -A network zone defines the security level of trust for the network. +A network zone defines the security level of trust for the network. The user should choose an appropriate zone value for their setup. Possible values include: drop, block, public, external, dmz, work, home, internal, trusted. diff --git a/doc/topics/tutorials/pillar.rst b/doc/topics/tutorials/pillar.rst index f42d9b0915e..e60675fcd79 100644 --- a/doc/topics/tutorials/pillar.rst +++ b/doc/topics/tutorials/pillar.rst @@ -406,4 +406,3 @@ out the issue. But always change the root admin password in the first place. This is very helpful for any module that needs credentials to apply state changes: mysql, keystone, etc. - diff --git a/doc/topics/tutorials/preseed_key.rst b/doc/topics/tutorials/preseed_key.rst index fd52ce6cdf2..641da43ecef 100644 --- a/doc/topics/tutorials/preseed_key.rst +++ b/doc/topics/tutorials/preseed_key.rst @@ -67,4 +67,3 @@ You will want to place the minion keys before starting the salt-minion daemon: Once in place, you should be able to start salt-minion and run ``salt-call state.apply`` or any other salt commands that require master authentication. - diff --git a/doc/topics/tutorials/quickstart.rst b/doc/topics/tutorials/quickstart.rst index 16f2c849950..bbcd5bcabae 100644 --- a/doc/topics/tutorials/quickstart.rst +++ b/doc/topics/tutorials/quickstart.rst @@ -34,7 +34,7 @@ for any OS with a Bourne shell: curl -L https://bootstrap.saltstack.com -o bootstrap_salt.sh sudo sh bootstrap_salt.sh -Before run the script, it is a good practice to verify the checksum of the downloaded +Before run the script, it is a good practice to verify the checksum of the downloaded file. You can verify the checksum with SHA256 by running this command: .. code-block:: bash @@ -45,7 +45,7 @@ file. You can verify the checksum with SHA256 by running this command: || echo "File does not match checksum" .. note:: - + The previous example is the preferred method because by downloading the script you can investigate the contents of the bootstrap script or using it again later. Alternatively, if you want to download the bash script and run it immediately, diff --git a/doc/topics/tutorials/standalone_minion.rst b/doc/topics/tutorials/standalone_minion.rst index a0723dd45d4..df482e351cd 100644 --- a/doc/topics/tutorials/standalone_minion.rst +++ b/doc/topics/tutorials/standalone_minion.rst @@ -15,14 +15,14 @@ things: When running Salt in masterless mode, it is not required to run the salt-minion daemon. By default the salt-minion daemon will attempt to - connect to a master and fail. The salt-call command stands on its own + connect to a master and fail. The salt-call command stands on its own and does not need the salt-minion daemon. - + As of version 2016.11.0 you can have a running minion (with engines and beacons) without a master connection. If you wish to run the salt-minion - daemon you will need to set the :conf_minion:`master_type` configuration + daemon you will need to set the :conf_minion:`master_type` configuration setting to be set to 'disable'. - + Minion Configuration @@ -106,4 +106,3 @@ External Pillars ================ :ref:`External pillars ` are supported when running in masterless mode. - diff --git a/doc/topics/tutorials/states_pt4.rst b/doc/topics/tutorials/states_pt4.rst index 5ca637c67e2..96701b20af3 100644 --- a/doc/topics/tutorials/states_pt4.rst +++ b/doc/topics/tutorials/states_pt4.rst @@ -209,8 +209,8 @@ can be found on GitHub in the `saltstack-formulas`_ collection of repositories. .. _`saltstack-formulas`: https://github.com/saltstack-formulas If you have any questions, suggestions, or just want to chat with other people -who are using Salt, we have a very active community and we'd love to hear from -you. One of the best places to talk to the community is on the +who are using Salt, we have a very active community and we'd love to hear from +you. One of the best places to talk to the community is on the `Salt Project Slack workspace `_. In addition, by continuing to the :ref:`Orchestrate Runner ` docs, diff --git a/doc/topics/tutorials/states_pt5.rst b/doc/topics/tutorials/states_pt5.rst index be56c4177f5..d26f07152bf 100644 --- a/doc/topics/tutorials/states_pt5.rst +++ b/doc/topics/tutorials/states_pt5.rst @@ -5,4 +5,3 @@ States Tutorial, Part 5 - Orchestration with Salt ================================================= This was moved to :ref:`Orchestrate Runner `. - diff --git a/doc/topics/venafi/index.rst b/doc/topics/venafi/index.rst index 729a0ae91ae..105864241a1 100644 --- a/doc/topics/venafi/index.rst +++ b/doc/topics/venafi/index.rst @@ -148,4 +148,4 @@ Example state (SLS) file: /etc/ssl/cert/www.example.com-chain.pem: file.managed: - contents_pillar: venafi:www.example.com:chain - - replace: True \ No newline at end of file + - replace: True diff --git a/doc/topics/virt/disk.rst b/doc/topics/virt/disk.rst index cee1cfce6c7..b080fcc5275 100644 --- a/doc/topics/virt/disk.rst +++ b/doc/topics/virt/disk.rst @@ -55,4 +55,4 @@ more than one profile, this can be easily accomplished: This configuration allows for one of three profiles to be selected, allowing virtual machines to be created with different storage needs -of the deployed vm. \ No newline at end of file +of the deployed vm. diff --git a/doc/topics/windows/index.rst b/doc/topics/windows/index.rst index f4ab88a1a43..b8c7701b485 100644 --- a/doc/topics/windows/index.rst +++ b/doc/topics/windows/index.rst @@ -8,4 +8,4 @@ to use Salt on Windows. .. toctree:: :glob: - * \ No newline at end of file + * diff --git a/doc/topics/yaml/index.rst b/doc/topics/yaml/index.rst index 37c470cad89..00e85179c33 100644 --- a/doc/topics/yaml/index.rst +++ b/doc/topics/yaml/index.rst @@ -123,7 +123,7 @@ Learning more about YAML One easy way to learn more about how YAML gets rendered into Python data structures is to use an online YAML parser to see the Python output. -Here are some excellent links for experimenting with and referencing YAML: +Here are some excellent links for experimenting with and referencing YAML: * `Online YAML Parser `_: Convert YAML to JSON or Python data structures. diff --git a/pkg/common/fish-completions/salt-master.fish b/pkg/common/fish-completions/salt-master.fish index 895b1ee34f3..403c5e80daf 100644 --- a/pkg/common/fish-completions/salt-master.fish +++ b/pkg/common/fish-completions/salt-master.fish @@ -3,4 +3,3 @@ # hack to load functions from salt_common completion complete --do-complete='salt_common --' >/dev/null - diff --git a/pkg/common/fish-completions/salt-minion.fish b/pkg/common/fish-completions/salt-minion.fish index 5d3a396b53b..7f10ac34833 100644 --- a/pkg/common/fish-completions/salt-minion.fish +++ b/pkg/common/fish-completions/salt-minion.fish @@ -3,4 +3,3 @@ # hack to load functions from salt_common completion complete --do-complete='salt_common --' >/dev/null - diff --git a/pkg/common/fish-completions/salt-run.fish b/pkg/common/fish-completions/salt-run.fish index f0e79a2c046..19b0b649957 100644 --- a/pkg/common/fish-completions/salt-run.fish +++ b/pkg/common/fish-completions/salt-run.fish @@ -3,4 +3,3 @@ # hack to load functions from salt_common completion complete --do-complete='salt_common --' >/dev/null - diff --git a/pkg/common/fish-completions/salt-syndic.fish b/pkg/common/fish-completions/salt-syndic.fish index 1698778825b..1aaa7bc9eae 100644 --- a/pkg/common/fish-completions/salt-syndic.fish +++ b/pkg/common/fish-completions/salt-syndic.fish @@ -3,4 +3,3 @@ # hack to load functions from salt_common completion complete --do-complete='salt_common --' >/dev/null - diff --git a/pkg/common/fish-completions/salt_common.fish b/pkg/common/fish-completions/salt_common.fish index 80d5da721c1..a65aebd0264 100644 --- a/pkg/common/fish-completions/salt_common.fish +++ b/pkg/common/fish-completions/salt_common.fish @@ -436,4 +436,3 @@ function __fish_salt_prefix_with_arg_name tee end end - diff --git a/pkg/debian/salt-api.install b/pkg/debian/salt-api.install index 973ee8ceb36..e844c9a6cbb 100644 --- a/pkg/debian/salt-api.install +++ b/pkg/debian/salt-api.install @@ -1,2 +1 @@ pkg/common/salt-api.service /lib/systemd/system - diff --git a/pkg/debian/salt-api.links b/pkg/debian/salt-api.links index bb857ce4fca..f568e76a965 100644 --- a/pkg/debian/salt-api.links +++ b/pkg/debian/salt-api.links @@ -1 +1 @@ -opt/saltstack/salt/salt-api /usr/bin/salt-api \ No newline at end of file +opt/saltstack/salt/salt-api /usr/bin/salt-api diff --git a/pkg/macos/.gitignore b/pkg/macos/.gitignore index b16fef7995f..809af60e549 100644 --- a/pkg/macos/.gitignore +++ b/pkg/macos/.gitignore @@ -1,3 +1,3 @@ /build *.pkg -distribution.xml \ No newline at end of file +distribution.xml diff --git a/pkg/macos/entitlements.plist b/pkg/macos/entitlements.plist index 505bb574149..690e39ccf3d 100644 --- a/pkg/macos/entitlements.plist +++ b/pkg/macos/entitlements.plist @@ -7,4 +7,4 @@ com.apple.security.cs.disable-library-validation - \ No newline at end of file + diff --git a/pkg/old/smartos/salt-api.xml b/pkg/old/smartos/salt-api.xml index eef9feedc8d..db0505a7ffb 100644 --- a/pkg/old/smartos/salt-api.xml +++ b/pkg/old/smartos/salt-api.xml @@ -67,4 +67,3 @@ - diff --git a/pkg/old/smartos/salt-master.xml b/pkg/old/smartos/salt-master.xml index d803ce1b9a7..8af78e8cce0 100644 --- a/pkg/old/smartos/salt-master.xml +++ b/pkg/old/smartos/salt-master.xml @@ -71,4 +71,3 @@ - diff --git a/pkg/old/smartos/salt-minion.xml b/pkg/old/smartos/salt-minion.xml index c53b0d85868..dc6dea69a68 100644 --- a/pkg/old/smartos/salt-minion.xml +++ b/pkg/old/smartos/salt-minion.xml @@ -72,4 +72,3 @@ - diff --git a/pkg/old/smartos/salt-syndic.xml b/pkg/old/smartos/salt-syndic.xml index 4ec9349de3a..860c06ea311 100644 --- a/pkg/old/smartos/salt-syndic.xml +++ b/pkg/old/smartos/salt-syndic.xml @@ -67,4 +67,3 @@ - diff --git a/pkg/old/solaris/salt-master.xml b/pkg/old/solaris/salt-master.xml index 27030592e0b..c8d71e07805 100644 --- a/pkg/old/solaris/salt-master.xml +++ b/pkg/old/solaris/salt-master.xml @@ -66,4 +66,3 @@ - diff --git a/pkg/old/solaris/salt-minion.xml b/pkg/old/solaris/salt-minion.xml index e6173577f43..77c8a56e8ff 100644 --- a/pkg/old/solaris/salt-minion.xml +++ b/pkg/old/solaris/salt-minion.xml @@ -66,4 +66,3 @@ - diff --git a/pkg/old/solaris/salt-syndic.xml b/pkg/old/solaris/salt-syndic.xml index 982c4df7c03..f8599337f52 100644 --- a/pkg/old/solaris/salt-syndic.xml +++ b/pkg/old/solaris/salt-syndic.xml @@ -66,4 +66,3 @@ - diff --git a/pkg/old/suse/README.suse b/pkg/old/suse/README.suse index 1622be929a5..442d67ffa6d 100644 --- a/pkg/old/suse/README.suse +++ b/pkg/old/suse/README.suse @@ -8,7 +8,7 @@ Why an extra user While the current setup runs the master as root user, this is considered a security issue and not in line with the other configuration management tools (eg. puppet) which runs as a -dedicated user. +dedicated user. How can I undo the change ========================= @@ -29,4 +29,3 @@ running as root, enables the pam external auth system, as this system needs root For more information: https://docs.saltproject.io/en/latest/ref/configuration/nonroot.html - diff --git a/pkg/old/suse/allow-systemd-parameterized-services.patch b/pkg/old/suse/allow-systemd-parameterized-services.patch index 427700b3d26..0406fdfe105 100644 --- a/pkg/old/suse/allow-systemd-parameterized-services.patch +++ b/pkg/old/suse/allow-systemd-parameterized-services.patch @@ -18,33 +18,33 @@ index e2cfb1d..72079d7 100644 +++ b/salt/modules/systemd.py @@ -82,7 +82,7 @@ def _get_all_units(): r')\s+loaded\s+(?P[^\s]+)') - + out = __salt__['cmd.run_stdout']( - 'systemctl --full list-units | col -b' + 'systemctl --full --no-legend --no-pager list-units | col -b' ) - + ret = {} @@ -104,7 +104,7 @@ def _get_all_unit_files(): r')\s+(?P.+)$') - + out = __salt__['cmd.run_stdout']( - 'systemctl --full list-unit-files | col -b' + 'systemctl --full --no-legend --no-pager list-unit-files | col -b' ) - + ret = {} @@ -195,7 +195,7 @@ def get_all(): - + salt '*' service.get_all ''' - return sorted(_get_all_units().keys()) + return sorted(set(_get_all_units().keys() + _get_all_unit_files().keys())) - - + + def available(name): @@ -209,7 +209,15 @@ def available(name): - + salt '*' service.available sshd ''' - return _canonical_template_unit_name(name) in get_all() @@ -57,18 +57,17 @@ index e2cfb1d..72079d7 100644 + return templatename in units + else: + return False - - + + def missing(name): @@ -224,7 +232,7 @@ def missing(name): - + salt '*' service.missing sshd ''' - return not _canonical_template_unit_name(name) in get_all() + return not available(name) - - - def start(name): --- -1.9.3 + + def start(name): +-- +1.9.3 diff --git a/pkg/old/suse/allow-systemd-units-no-unit-files.patch b/pkg/old/suse/allow-systemd-units-no-unit-files.patch index ccb9eccd2b9..533d7b060f0 100644 --- a/pkg/old/suse/allow-systemd-units-no-unit-files.patch +++ b/pkg/old/suse/allow-systemd-units-no-unit-files.patch @@ -38,8 +38,8 @@ index 57b55f5..e2cfb1d 100644 +++ b/salt/modules/systemd.py @@ -72,6 +72,28 @@ def _systemctl_cmd(action, name): return 'systemctl {0} {1}'.format(action, _canonical_unit_name(name)) - - + + +def _get_all_units(): + ''' + Get all units and their state. Units ending in .service @@ -66,14 +66,13 @@ index 57b55f5..e2cfb1d 100644 ''' Get all unit files and their state. Unit files ending in .service @@ -173,7 +195,7 @@ def get_all(): - + salt '*' service.get_all ''' - return sorted(_get_all_unit_files().keys()) + return sorted(_get_all_units().keys()) - - - def available(name): --- -1.9.3 + + def available(name): +-- +1.9.3 diff --git a/pkg/old/suse/disable-service-py-for-suse-family.patch b/pkg/old/suse/disable-service-py-for-suse-family.patch index 002364c417d..5d0cc9108f3 100644 --- a/pkg/old/suse/disable-service-py-for-suse-family.patch +++ b/pkg/old/suse/disable-service-py-for-suse-family.patch @@ -21,6 +21,5 @@ index cfafe24..d581916 100644 try: if int(__grains__.get('osrelease', '').split('.')[0]) >= 12: return False --- +-- 2.0.3 - diff --git a/pkg/old/suse/fix-service-py-version-parsing-sles.patch b/pkg/old/suse/fix-service-py-version-parsing-sles.patch index c4a51b74a06..8cb20eb943a 100644 --- a/pkg/old/suse/fix-service-py-version-parsing-sles.patch +++ b/pkg/old/suse/fix-service-py-version-parsing-sles.patch @@ -26,6 +26,5 @@ index d581916..dab0817 100644 return False except ValueError: return False --- +-- 2.0.3 - diff --git a/pkg/old/suse/pass-all-systemd-list-units.patch b/pkg/old/suse/pass-all-systemd-list-units.patch index 8471d391565..6e18155a473 100644 --- a/pkg/old/suse/pass-all-systemd-list-units.patch +++ b/pkg/old/suse/pass-all-systemd-list-units.patch @@ -16,13 +16,12 @@ index ca93986..036adb4 100644 +++ b/salt/modules/systemd.py @@ -82,7 +82,7 @@ def _get_all_units(): r')\s+loaded\s+(?P[^\s]+)') - + out = __salt__['cmd.run_stdout']( - 'systemctl --full --no-legend --no-pager list-units | col -b' + 'systemctl --all --full --no-legend --no-pager list-units | col -b' ) - - ret = {} --- -1.9.3 + ret = {} +-- +1.9.3 diff --git a/pkg/old/suse/salt-api.changes b/pkg/old/suse/salt-api.changes index e97ea81cad8..2d3720c89e2 100644 --- a/pkg/old/suse/salt-api.changes +++ b/pkg/old/suse/salt-api.changes @@ -92,4 +92,3 @@ Sat Jan 26 09:19:19 UTC 2013 - aboe76@gmail.com Tue Jan 22 20:28:52 UTC 2013 - aboe76@gmail.com - initial upload 0.7.5 - diff --git a/pkg/old/suse/salt-tmpfiles.d b/pkg/old/suse/salt-tmpfiles.d index 8973384274d..7b6e5d05151 100644 --- a/pkg/old/suse/salt-tmpfiles.d +++ b/pkg/old/suse/salt-tmpfiles.d @@ -2,4 +2,3 @@ d /var/run/salt 0750 root salt d /var/run/salt/master 0750 salt salt d /var/run/salt/minion 0750 root root - diff --git a/pkg/old/suse/salt.changes b/pkg/old/suse/salt.changes index bf64a159e46..5b6112d8184 100644 --- a/pkg/old/suse/salt.changes +++ b/pkg/old/suse/salt.changes @@ -136,7 +136,7 @@ Wed Oct 7 19:15:54 UTC 2015 - mrueckert@suse.de ------------------------------------------------------------------- Wed Oct 7 14:34:18 UTC 2015 - mrueckert@suse.de -- package all directories in /var/cache/salt and /etc/salt and +- package all directories in /var/cache/salt and /etc/salt and have permissions set for non root salt master - update use-salt-user-for-master.patch: - also patch the logrotate file to include the su option @@ -243,7 +243,7 @@ Wed Jul 8 08:47:32 UTC 2015 - aboe76@gmail.com Thu Jun 4 19:46:19 UTC 2015 - aboe76@gmail.com - New Bugfix release 2015.5.2 - + for more details: https://docs.saltproject.io/en/latest/topics/releases/2015.5.2.html diff --git a/pkg/old/suse/use-forking-daemon.patch b/pkg/old/suse/use-forking-daemon.patch index 69d7821b3e6..39161719a5f 100644 --- a/pkg/old/suse/use-forking-daemon.patch +++ b/pkg/old/suse/use-forking-daemon.patch @@ -3,7 +3,7 @@ Index: salt-2015.8.0/pkg/salt-master.service --- salt-2015.8.0.orig/pkg/salt-master.service +++ salt-2015.8.0/pkg/salt-master.service @@ -4,7 +4,7 @@ After=syslog.target network.target - + [Service] LimitNOFILE=16384 -Type=notify diff --git a/pkg/old/suse/use-salt-user-for-master.patch b/pkg/old/suse/use-salt-user-for-master.patch index 375cbaaa17f..d626249bf84 100644 --- a/pkg/old/suse/use-salt-user-for-master.patch +++ b/pkg/old/suse/use-salt-user-for-master.patch @@ -8,7 +8,7 @@ Index: salt-2015.8.0/conf/master # modified files cause conflicts, set verify_env to False. -#user: root +user: salt - + # Max open files # Index: salt-2015.8.0/pkg/salt-common.logrotate @@ -23,7 +23,7 @@ Index: salt-2015.8.0/pkg/salt-common.logrotate rotate 7 @@ -7,6 +8,7 @@ } - + /var/log/salt/minion { + su salt salt weekly @@ -31,7 +31,7 @@ Index: salt-2015.8.0/pkg/salt-common.logrotate rotate 7 @@ -15,6 +17,7 @@ } - + /var/log/salt/key { + su salt salt weekly diff --git a/pkg/rpm/salt-minion b/pkg/rpm/salt-minion index 1bff798d62d..d4cade381d0 100755 --- a/pkg/rpm/salt-minion +++ b/pkg/rpm/salt-minion @@ -175,14 +175,14 @@ stop() { echo "Service $SERVICE:$MINION_USER:$MINION_ID is not running" return 0 fi - + echo -n "Stopping $SERVICE:$MINION_USER:$MINION_ID daemon: " local pid="$(_get_pid)" # pid below is intentionally not quoted in case there are *multiple* # minions running with the same configuration. _su_cmd "$MINION_USER" "kill -TERM $pid 2>/dev/null" || retval=$? - if [ 0 -eq "$retval" ]; then + if [ 0 -eq "$retval" ]; then local endtime=$(($(date '+%s')+$SALTMINION_TIMEOUT)) while _is_running; do if [ "$endtime" -lt "$(date '+%s')" ]; then diff --git a/pkg/windows/build_python.ps1 b/pkg/windows/build_python.ps1 index 6a7cd5b0a1d..b0a2419945b 100644 --- a/pkg/windows/build_python.ps1 +++ b/pkg/windows/build_python.ps1 @@ -1,4 +1,4 @@ -<# +<# .SYNOPSIS Script that builds Python from source using the Relative Environment for Python project (relenv): diff --git a/pkg/windows/install_vs_buildtools.ps1 b/pkg/windows/install_vs_buildtools.ps1 index 0cb6776d1b5..238b0175e42 100644 --- a/pkg/windows/install_vs_buildtools.ps1 +++ b/pkg/windows/install_vs_buildtools.ps1 @@ -170,4 +170,3 @@ if ( $install_build_tools ) { Write-Host $("-" * 80) Write-Host "Install Visual Studio Build Tools Completed" -ForegroundColor Cyan Write-Host $("=" * 80) - diff --git a/pkg/windows/msi/CustomAction01/CustomAction.config b/pkg/windows/msi/CustomAction01/CustomAction.config index de951b78d85..c837a2cee30 100644 --- a/pkg/windows/msi/CustomAction01/CustomAction.config +++ b/pkg/windows/msi/CustomAction01/CustomAction.config @@ -13,7 +13,7 @@ Note for .NET Framework v3.0 and v3.5, the runtime version is still v2.0. - In order to enable .NET Framework version 2.0 runtime activation policy, which is to load all assemblies + In order to enable .NET Framework version 2.0 runtime activation policy, which is to load all assemblies by using the latest supported runtime, @useLegacyV2RuntimeActivationPolicy="true". For more information, see http://msdn.microsoft.com/en-us/library/bbx34a2h.aspx diff --git a/pkg/windows/msi/CustomAction01/CustomAction01.cs b/pkg/windows/msi/CustomAction01/CustomAction01.cs index 5f163da219b..adfe5b74a3c 100644 --- a/pkg/windows/msi/CustomAction01/CustomAction01.cs +++ b/pkg/windows/msi/CustomAction01/CustomAction01.cs @@ -1,4 +1,4 @@ -using Microsoft.Deployment.WindowsInstaller; +using Microsoft.Deployment.WindowsInstaller; using Microsoft.Tools.WindowsInstallerXml; using Microsoft.Win32; using System; @@ -159,7 +159,7 @@ namespace MinionConfigurationExtension { session["CONFIG_FOUND"] = "True"; session.Log("...MASTER set to kept config"); } - + // minion id if (id_from_previous_installation != "") { session.Log("...MINION_ID kept config =" + id_from_previous_installation); diff --git a/pkg/windows/msi/CustomAction01/CustomAction01.md b/pkg/windows/msi/CustomAction01/CustomAction01.md index 35d214895c3..a0b7fc184c6 100644 --- a/pkg/windows/msi/CustomAction01/CustomAction01.md +++ b/pkg/windows/msi/CustomAction01/CustomAction01.md @@ -25,28 +25,28 @@ I postpone to understand this and do not change TargetFrameworkVersion (leaving it at v2.0). - + ******************************* ******************************* ******************************* ******************************* - + Archive for the attempt to read settings from conf/minion into a ini file. -Idea was +Idea was 1) read simple keys from the config file into a ini file 2) read properties from ini file. Idea failed because reading ini files (in Appsearch) always preceeds reading a config file in Customaction before="Appsearch". - - The ini file Search path is c:\windows - + + The ini file Search path is c:\windows + The ini file is read by WiX IniFileSearch in product.wxs - - + + List iniContent = new List(); -iniContent.Add("[Backup]"); +iniContent.Add("[Backup]"); What should be the "known location" to store settings after uninstall? string iniFilePath32 = @"C:\windows\system32\config\systemprofile\Local\SaltStack\Salt\"; string iniFilePath64 = @"C:\windows\SysWOW64\config\systemprofile\Local\SaltStack\Salt\"; @@ -57,9 +57,9 @@ write_this(iniFile, iniContent.ToArray()); private static void write_this(string thefile, string[] thecontent) { using (var fs = new FileStream(thefile, FileMode.OpenOrCreate, FileAccess.ReadWrite)) { using (var fw = new StreamWriter(fs)) { - foreach (string line in thecontent) { + foreach (string line in thecontent) { fw.Write(line); - fw.Write(System.Environment.NewLine); + fw.Write(System.Environment.NewLine); }; fw.Flush(); // Added } diff --git a/pkg/windows/msi/CustomAction01/CustomAction01Util.cs b/pkg/windows/msi/CustomAction01/CustomAction01Util.cs index f0208fc5a6b..a0d57f4a04c 100644 --- a/pkg/windows/msi/CustomAction01/CustomAction01Util.cs +++ b/pkg/windows/msi/CustomAction01/CustomAction01Util.cs @@ -1,4 +1,4 @@ -using Microsoft.Deployment.WindowsInstaller; +using Microsoft.Deployment.WindowsInstaller; using Microsoft.Tools.WindowsInstallerXml; using Microsoft.Win32; using System; diff --git a/pkg/windows/msi/CustomAction01/Properties/AssemblyInfo.cs b/pkg/windows/msi/CustomAction01/Properties/AssemblyInfo.cs index 6f6895b927b..4c4eb14ced6 100644 --- a/pkg/windows/msi/CustomAction01/Properties/AssemblyInfo.cs +++ b/pkg/windows/msi/CustomAction01/Properties/AssemblyInfo.cs @@ -1,9 +1,9 @@ -using Microsoft.Tools.WindowsInstallerXml; +using Microsoft.Tools.WindowsInstallerXml; using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; -// General Information about an assembly is controlled through the following +// General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTitle("MinionConfigurationExtension")] @@ -16,8 +16,8 @@ using System.Runtime.InteropServices; [assembly: AssemblyDefaultWixExtension(typeof(MinionConfigurationExtension.MinionConfiguration))] -// Setting ComVisible to false makes the types in this assembly not visible -// to COM components. If you need to access a type in this assembly from +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from // COM, set the ComVisible attribute to true on that type. [assembly: ComVisible(false)] @@ -27,11 +27,11 @@ using System.Runtime.InteropServices; // Version information for an assembly consists of the following four values: // // Major Version -// Minor Version +// Minor Version // Build Number // Revision // -// You can specify all the values or you can default the Build and Revision Numbers +// You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("1.0.0.0")] diff --git a/pkg/windows/msi/CustomAction01/debug_dotnetframework_csharp/CustomAction01Util.cs b/pkg/windows/msi/CustomAction01/debug_dotnetframework_csharp/CustomAction01Util.cs index 6574b9a80d0..f8f5876f32e 100644 --- a/pkg/windows/msi/CustomAction01/debug_dotnetframework_csharp/CustomAction01Util.cs +++ b/pkg/windows/msi/CustomAction01/debug_dotnetframework_csharp/CustomAction01Util.cs @@ -1,4 +1,4 @@ -using Microsoft.Win32; +using Microsoft.Win32; using System; using System.Diagnostics; using System.IO; diff --git a/pkg/windows/msi/CustomAction01/debug_dotnetframework_csharp/DebugMe.csproj b/pkg/windows/msi/CustomAction01/debug_dotnetframework_csharp/DebugMe.csproj index 9e6264a8bb3..1c4ece33814 100644 --- a/pkg/windows/msi/CustomAction01/debug_dotnetframework_csharp/DebugMe.csproj +++ b/pkg/windows/msi/CustomAction01/debug_dotnetframework_csharp/DebugMe.csproj @@ -1,4 +1,4 @@ - + @@ -48,4 +48,4 @@ - \ No newline at end of file + diff --git a/pkg/windows/msi/CustomAction01/debug_dotnetframework_csharp/DebugMe.sln b/pkg/windows/msi/CustomAction01/debug_dotnetframework_csharp/DebugMe.sln index 906c075120b..f7dedb65cd8 100644 --- a/pkg/windows/msi/CustomAction01/debug_dotnetframework_csharp/DebugMe.sln +++ b/pkg/windows/msi/CustomAction01/debug_dotnetframework_csharp/DebugMe.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 16 VisualStudioVersion = 16.0.31702.278 diff --git a/pkg/windows/msi/CustomAction01/debug_dotnetframework_csharp/Program.cs b/pkg/windows/msi/CustomAction01/debug_dotnetframework_csharp/Program.cs index 92d1d24d5ac..f545e9867f4 100644 --- a/pkg/windows/msi/CustomAction01/debug_dotnetframework_csharp/Program.cs +++ b/pkg/windows/msi/CustomAction01/debug_dotnetframework_csharp/Program.cs @@ -323,4 +323,3 @@ namespace MinionConfigurationExtension { } } } - diff --git a/pkg/windows/msi/CustomAction01/debug_dotnetframework_csharp/Properties/AssemblyInfo.cs b/pkg/windows/msi/CustomAction01/debug_dotnetframework_csharp/Properties/AssemblyInfo.cs index e8c99efb3c3..a4f942f3db5 100644 --- a/pkg/windows/msi/CustomAction01/debug_dotnetframework_csharp/Properties/AssemblyInfo.cs +++ b/pkg/windows/msi/CustomAction01/debug_dotnetframework_csharp/Properties/AssemblyInfo.cs @@ -1,4 +1,4 @@ -using System.Reflection; +using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; diff --git a/pkg/windows/msi/Product-README.md b/pkg/windows/msi/Product-README.md index 20bf01380fa..9e1539a17fe 100644 --- a/pkg/windows/msi/Product-README.md +++ b/pkg/windows/msi/Product-README.md @@ -233,4 +233,3 @@ Create Product-imgLeft.png from panel.bmp: ## Set permissions of the install folder with WixQueryOsWellKnownSID [doc](http://wixtoolset.org/documentation/manual/v3/customactions/osinfo.html) - diff --git a/pkg/windows/msi/Product-discover-files-README.md b/pkg/windows/msi/Product-discover-files-README.md index a4339674eb7..e7fd656d62c 100644 --- a/pkg/windows/msi/Product-discover-files-README.md +++ b/pkg/windows/msi/Product-discover-files-README.md @@ -1,5 +1,5 @@ 2016-11-16 mkr -This regards ISSUE 1 +This regards ISSUE 1 https://github.com/markuskramerIgitt/salt-windows-msi/issues/1 uninstall removes the configuration file @@ -11,7 +11,7 @@ The entry for conf/minion has a Guid: - + Having a Guid means that Wix treats conf/minion as part of the installation On uninstall, WiX removed all parts of the installation, so also conf/minion. @@ -23,14 +23,12 @@ Approach 1: FAIL It filters out ssm.exe, so ssm.exe is not in salt-windows-msi\wix\MinionMSI\dist-amd64.wxs ssm.exe is added manually in services.wxs. FAILURE (I think) because then conf would not be installed. - + Approach 2: Remove the GUID of the component. - + http://stackoverflow.com/questions/11848780/use-ends-with-in-xslt-v1-0 set attribute to a value while copying: http://stackoverflow.com/questions/1137078/xslt-do-not-match-certain-attributes/12919373#12919373 - - diff --git a/pkg/windows/msi/Product-discover-files.xsl b/pkg/windows/msi/Product-discover-files.xsl index 4433c1350f9..96fc0461996 100644 --- a/pkg/windows/msi/Product-discover-files.xsl +++ b/pkg/windows/msi/Product-discover-files.xsl @@ -14,7 +14,7 @@ xmlns:msxsl="urn:schemas-microsoft-com:xslt" exclude-result-prefixes="msxsl"> -