Skip to content

Commit 6c81943

Browse files
committed
Add a few more nice to have hooks
Signed-off-by: Pedro Algarvio <[email protected]>
1 parent de0070b commit 6c81943

File tree

889 files changed

+2217
-2322
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

889 files changed

+2217
-2322
lines changed

.mention-bot

-1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,3 @@
1414
"skipTitle": "Merge forward",
1515
"userBlacklist": ["cvrebert", "markusgattol", "olliewalsh", "basepi"]
1616
}
17-

.pre-commit-config.yaml

+41
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,50 @@
1+
---
12
default_language_version:
23
python: python3
34

45
exclude: ^(doc/_static/.*|doc/_themes/.*)$
56
repos:
67

8+
- repo: https://github.com/pre-commit/pre-commit-hooks
9+
rev: v4.4.0
10+
hooks:
11+
- id: check-merge-conflict # Check for files that contain merge conflict strings.
12+
- id: trailing-whitespace # Trims trailing whitespace.
13+
args:
14+
- --markdown-linebreak-ext=md
15+
exclude: >
16+
(?x)^(
17+
pkg/macos/pkg-resources/.*\.rtf
18+
)$
19+
20+
- id: mixed-line-ending # Replaces or checks mixed line ending.
21+
args:
22+
- --fix=lf
23+
- id: end-of-file-fixer # Makes sure files end in a newline and only a newline.
24+
- id: check-ast # Simply check whether files parse as valid python.
25+
exclude: >
26+
(?x)^(
27+
templates/.*
28+
)$
29+
- id: check-case-conflict # Check for files with names that would conflict on a
30+
# case-insensitive filesystem like MacOS HFS+ or Windows FAT.
31+
- id: check-json # Attempts to load all json files to verify syntax.
32+
- id: check-symlinks # Checks for symlinks which do not point to anything.
33+
- id: debug-statements # Check for debugger imports and py37+ breakpoint() calls in python source.
34+
exclude: >
35+
(?x)^(
36+
templates/.*
37+
)$
38+
- id: fix-byte-order-marker # removes UTF-8 byte order marker
39+
- id: forbid-submodules # forbids any submodules in the repository.
40+
- id: fix-encoding-pragma # Remove `# -*- coding: utf-8 -*-` from the top of python files.
41+
args:
42+
- --remove
43+
exclude: >
44+
(?x)^(
45+
salt/ext/.*
46+
)$
47+
748
- repo: https://github.com/s0undt3ch/python-tools-scripts
849
rev: "0.10.1"
950
hooks:

CONTRIBUTING.rst

+12-12
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ contributions! But your PR will be labeled ``Needs Testcase`` and
272272
``Help Wanted`` until someone can get to write the tests/documentation.
273273
Of course, if you have a desire but just lack the skill we are more than
274274
happy to collaborate and help out! There's the `documentation working
275-
group <https://saltstack.gitlab.io/open/docs/docs-hub/topics/home.html>`__
275+
group <https://saltstack.gitlab.io/open/docs/docs-hub/topics/home.html>`__
276276
and the `testing working group <https://github.com/saltstack/community/tree/master/working_groups/wg-Testing>`__.
277277
We also regularly stream our test clinic `live on
278278
Twitch <https://www.twitch.tv/saltprojectoss>`__ every Tuesday afternoon
@@ -289,53 +289,53 @@ the ``salt/doc`` folder for documentation. Sphinx is used to generate the
289289
documentation, and does require ``imagemagick``. See `Set up imagemagick`_ for
290290
more information.
291291

292-
Before submitting a documentation PR, it helps to first build the Salt docs
292+
Before submitting a documentation PR, it helps to first build the Salt docs
293293
locally on your machine and preview them. Local previews helps you:
294294

295295
- Debug potential documentation output errors before submitting a PR.
296296
- Saves you time by not needing to use the Salt CI/CD test suite to debug, which takes
297297
more than 30 minutes to run on a PR.
298298
- Ensures the final output looks the way you intended it to look.
299299

300-
To set up your local environment to preview the core Salt and module
300+
To set up your local environment to preview the core Salt and module
301301
documentation:
302302

303303
#. Install the documentation dependencies. For example, on Ubuntu:
304304

305305
::
306-
306+
307307
sudo apt-get update
308308

309309
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
310310

311-
#. Navigate to the folder where you store your Salt repository and remove any
311+
#. Navigate to the folder where you store your Salt repository and remove any
312312
`.nox` directories that might be in that folder:
313313

314314
::
315-
315+
316316
rm -rf .nox
317317

318-
#. Install `pyenv` for the version of Python needed to run the docs. As of the
318+
#. Install `pyenv` for the version of Python needed to run the docs. As of the
319319
time of writing, the Salt docs theme is not compatible with Python 3.10, so
320320
you'll need to run 3.9 or earlier. For example:
321321

322322
::
323-
323+
324324
pyenv install 3.7.15
325325
pyenv virtualenv 3.7.15 salt-docs
326326
echo 'salt-docs' > .python-version
327327

328328
#. Activate `pyenv` if it's not auto-activated:
329329

330330
::
331-
331+
332332
pyenv exec pip install -U pip setuptools wheel
333333

334334
#. Install `nox` into your pyenv environment, which is the utility that will
335335
build the Salt documentation:
336336

337337
::
338-
338+
339339
pyenv exec pip install nox
340340

341341

@@ -346,7 +346,7 @@ with this one-liner:
346346

347347
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
348348

349-
The first time you build the docs, it will take a while because there are a
349+
The first time you build the docs, it will take a while because there are a
350350
*lot* of modules. Maybe you should go grab some dessert if you already finished
351351
that sandwich. But once nox and Sphinx are done building the docs, python should
352352
launch your default browser with the URL
@@ -581,7 +581,7 @@ When you open your PR, a reviewer will get automatically assigned. If
581581
your PR is submitted during the week you should be able to expect some
582582
kind of communication within that business day. If your tests are
583583
passing and we're not in a code freeze, ideally your code will be merged
584-
that week or month. If you haven't heard from your assigned reviewer, ping them
584+
that week or month. If you haven't heard from your assigned reviewer, ping them
585585
on GitHub, `irc <https://web.libera.chat/#salt>`__, or Community Slack.
586586

587587
It's likely that your reviewer will leave some comments that need

README.rst

+26-26
Original file line numberDiff line numberDiff line change
@@ -41,54 +41,54 @@
4141

4242
About Salt
4343
==========
44-
Built on Python, Salt is an event-driven automation tool and framework to
45-
deploy, configure, and manage complex IT systems. Use Salt to automate common
46-
infrastructure administration tasks and ensure that all the components of your
44+
Built on Python, Salt is an event-driven automation tool and framework to
45+
deploy, configure, and manage complex IT systems. Use Salt to automate common
46+
infrastructure administration tasks and ensure that all the components of your
4747
infrastructure are operating in a consistent desired state.
4848

4949
Salt has many possible uses, including configuration management, which involves:
5050

5151
* Managing operating system deployment and configuration.
5252
* Installing and configuring software applications and services.
53-
* Managing servers, virtual machines, containers, databases, web servers,
53+
* Managing servers, virtual machines, containers, databases, web servers,
5454
network devices, and more.
5555
* Ensuring consistent configuration and preventing configuration drift.
5656

57-
Salt is ideal for configuration management because it is pluggable,
58-
customizable, and plays well with many existing technologies. Salt enables you
59-
to deploy and manage applications that use any tech stack running on nearly any
60-
`operating system <https://docs.saltproject.io/salt/install-guide/en/latest/topics/salt-supported-operating-systems.html>`_,
61-
including different types of network devices such as switches and routers from a
57+
Salt is ideal for configuration management because it is pluggable,
58+
customizable, and plays well with many existing technologies. Salt enables you
59+
to deploy and manage applications that use any tech stack running on nearly any
60+
`operating system <https://docs.saltproject.io/salt/install-guide/en/latest/topics/salt-supported-operating-systems.html>`_,
61+
including different types of network devices such as switches and routers from a
6262
variety of vendors.
6363

6464
In addition to configuration management Salt can also:
6565

66-
* Automate and orchestrate routine IT processes, such as common required tasks
66+
* Automate and orchestrate routine IT processes, such as common required tasks
6767
for scheduled server downtimes or upgrading operating systems or applications.
68-
* Create self-aware, self-healing systems that can automatically respond to
68+
* Create self-aware, self-healing systems that can automatically respond to
6969
outages, common administration problems, or other important events.
7070

7171

7272
About our sponsors
7373
==================
74-
Salt powers VMware's `vRealize Automation SaltStack Config`_, and can be found
75-
under the hood of products from Juniper, Cisco, Cloudflare, Nutanix, SUSE, and
74+
Salt powers VMware's `vRealize Automation SaltStack Config`_, and can be found
75+
under the hood of products from Juniper, Cisco, Cloudflare, Nutanix, SUSE, and
7676
Tieto, to name a few.
7777

7878
The original sponsor of our community, SaltStack, was `acquired by VMware in 2020 <https://www.vmware.com/company/acquisitions/saltstack.html>`_.
7979
The Salt Project remains an open source ecosystem that VMware supports and
80-
contributes to. VMware ensures the code integrity and quality of the Salt
81-
modules by acting as the official sponsor and manager of the Salt project. Many
82-
of the core Salt Project contributors are also VMware employees. This team
83-
carefully reviews and enhances the Salt modules to ensure speed, quality, and
80+
contributes to. VMware ensures the code integrity and quality of the Salt
81+
modules by acting as the official sponsor and manager of the Salt project. Many
82+
of the core Salt Project contributors are also VMware employees. This team
83+
carefully reviews and enhances the Salt modules to ensure speed, quality, and
8484
security.
8585

8686

8787
Download and install Salt
8888
=========================
8989
Salt is tested and packaged to run on CentOS, Debian, RHEL, Ubuntu, MacOS,
90-
Windows, and more. Download Salt and get started now. See
91-
`supported operating systems <https://docs.saltproject.io/salt/install-guide/en/latest/topics/salt-supported-operating-systems.html>`_
90+
Windows, and more. Download Salt and get started now. See
91+
`supported operating systems <https://docs.saltproject.io/salt/install-guide/en/latest/topics/salt-supported-operating-systems.html>`_
9292
for more information.
9393

9494
To download and install Salt, see:
@@ -100,8 +100,8 @@ Technical support
100100
=================
101101
Report bugs or problems using Salt by opening an issue: `<https://github.com/saltstack/salt/issues>`_
102102

103-
To join our community forum where you can exchange ideas, best practices,
104-
discuss technical support questions, and talk to project maintainers, join our
103+
To join our community forum where you can exchange ideas, best practices,
104+
discuss technical support questions, and talk to project maintainers, join our
105105
Slack workspace: `Salt Project Community Slack`_
106106

107107

@@ -137,11 +137,11 @@ refer to the `SECURITY.md`_ file found in this repository.
137137

138138
Join our community
139139
==================
140-
Salt is built by the Salt Project community, which includes more than 3,000
141-
contributors working in roles just like yours. This well-known and trusted
142-
community works together to improve the underlying technology and extend Salt by
143-
creating a variety of execution and state modules to accomplish the most common
144-
tasks or solve the most important problems that people in your role are likely
140+
Salt is built by the Salt Project community, which includes more than 3,000
141+
contributors working in roles just like yours. This well-known and trusted
142+
community works together to improve the underlying technology and extend Salt by
143+
creating a variety of execution and state modules to accomplish the most common
144+
tasks or solve the most important problems that people in your role are likely
145145
to face.
146146

147147
If you want to help extend Salt or solve a problem with Salt, you can join our

SUPPORT.rst

-1
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,3 @@ guidelines for filing bug reports:
3030
**SaltStack Support** - If you need dedicated, prioritized support, please
3131
consider a SaltStack Support package that fits your needs:
3232
`<http://www.saltstack.com/support>`_
33-

changelog/59439.changed

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Improve support for listing macOS brew casks
1+
Improve support for listing macOS brew casks

changelog/59917.removed

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +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.
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.

changelog/60430.added

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Added ability for `salt.wait_for_event` to handle `event_id`s that have a list value.
1+
Added ability for `salt.wait_for_event` to handle `event_id`s that have a list value.

changelog/60722.added

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Added .0 back to our versioning scheme for future versions (e.g. 3006.0)
1+
Added .0 back to our versioning scheme for future versions (e.g. 3006.0)

changelog/60915.fixed

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Fixed parsing new format of terraform states in roster.terraform
1+
Fixed parsing new format of terraform states in roster.terraform

changelog/61727.fixed

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Fix SoftLayer configuration not raising an exception when a domain is missing
1+
Fix SoftLayer configuration not raising an exception when a domain is missing

changelog/62220.fixed

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Added EndeavourOS to the Arch os_family.
1+
Added EndeavourOS to the Arch os_family.

changelog/62281.fixed

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Fix Salt Package Manager (SPM) exception when calling spm create_repo .
1+
Fix Salt Package Manager (SPM) exception when calling spm create_repo .

changelog/62578.added

-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
11
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
2-

changelog/62624.fixed

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
updated rest_cherry/app to properly detect arg sent as a string as curl will do when only one arg is supplied.
1+
updated rest_cherry/app to properly detect arg sent as a string as curl will do when only one arg is supplied.

changelog/62761.added

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Added "connected_devices" feature to netbox pillar module. It contains extra information about devices connected to the minion
1+
Added "connected_devices" feature to netbox pillar module. It contains extra information about devices connected to the minion

changelog/63050.changed

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
netapi_enable_clients option to allow enabling/disabling of clients in salt-api.
22
By default all clients will now be disabled. Users of salt-api will need
33
to update their master config to enable the clients that they use. Not adding
4-
the netapi_enable_clients option with required clients to the master config will
4+
the netapi_enable_clients option with required clients to the master config will
55
disable salt-api.

changelog/63067.added

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
salt-cloud support IMDSv2 tokens when using 'use-instance-role-credentials'
1+
salt-cloud support IMDSv2 tokens when using 'use-instance-role-credentials'

cicd/golden-images.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -219,4 +219,4 @@
219219
"is_windows": "true",
220220
"ssh_username": "Administrator"
221221
}
222-
}
222+
}

cicd/kitchen_template.yml

-1
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,3 @@
4747
- artifacts/
4848
- .kitchen/
4949
expire_in: 6 months
50-

conf/roster

-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,3 @@
66
# sudo: True # Whether to sudo to root, not enabled by default
77
#web2:
88
# host: 192.168.42.2
9-

conf/suse/master

+4-4
Original file line numberDiff line numberDiff line change
@@ -538,8 +538,8 @@ syndic_user: salt
538538
# variable_end_string: '}}'
539539
# comment_start_string: '{#'
540540
# comment_end_string: '#}'
541-
# line_statement_prefix:
542-
# line_comment_prefix:
541+
# line_statement_prefix:
542+
# line_comment_prefix:
543543
# trim_blocks: False
544544
# lstrip_blocks: False
545545
# newline_sequence: '\n'
@@ -553,8 +553,8 @@ syndic_user: salt
553553
# variable_end_string: '}}'
554554
# comment_start_string: '{#'
555555
# comment_end_string: '#}'
556-
# line_statement_prefix:
557-
# line_comment_prefix:
556+
# line_statement_prefix:
557+
# line_comment_prefix:
558558
# trim_blocks: False
559559
# lstrip_blocks: False
560560
# newline_sequence: '\n'
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
.. admonition:: Using extend with require or watch
22

33
The ``extend`` statement works differently for ``require`` or ``watch``.
4-
It appends to, rather than replacing the requisite component.
4+
It appends to, rather than replacing the requisite component.

doc/_incl/grains_passwords.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
Grains can be set by users that have access to the minion configuration files on
44
the local system, making them less secure than other identifiers in Salt. Avoid
55
storing sensitive data, such as passwords or keys, on minions. Instead, make
6-
use of :ref:`pillar` and/or :ref:`sdb`.
6+
use of :ref:`pillar` and/or :ref:`sdb`.

doc/_incl/jinja_security.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
:ref:`Jinja <understanding-jinja>` supports a `secure, sandboxed template execution environment
44
<https://jinja.palletsprojects.com/en/2.11.x/sandbox/>`__ that Salt
55
takes advantage of. Other text :ref:`renderers` do not support this
6-
functionality, so Salt highly recommends usage of ``jinja`` / ``jinja|yaml``.
6+
functionality, so Salt highly recommends usage of ``jinja`` / ``jinja|yaml``.

doc/_incl/requisite_incl.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
**Before continuing** make sure you have a working Salt installation by
2-
following the instructions in the
2+
following the instructions in the
33
`Salt install guide <https://docs.saltproject.io/salt/install-guide/en/latest/>`_.
44

55
.. admonition:: Stuck?
66

7-
The Salt Project community can help offer advice and help troubleshoot
7+
The Salt Project community can help offer advice and help troubleshoot
88
technical issues as you're learning about Salt. One of the best places to
9-
talk to the community is on the
9+
talk to the community is on the
1010
`Salt Project Slack workspace <https://saltstackcommunity.slack.com/>`_.

doc/_templates/autosummary.rst.tmpl

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
{{ underline }}
44

55
.. automodule:: {{ fullname }}
6-
:members:
6+
:members:

doc/cheatsheet/salt.tex

-1
Original file line numberDiff line numberDiff line change
@@ -283,4 +283,3 @@
283283

284284
\end{multicols}
285285
\end{document}
286-

doc/gen_gource

-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,3 @@
44
#
55
#
66
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
7-

0 commit comments

Comments
 (0)