generated from saltstack-formulas/template-formula
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(package.install): proper package for CentOS and Rocky Linux 8
fixes #3 Squashed commit of the following: commit f07bf84 Author: Ewout van Mansom <[email protected]> Date: Fri May 20 19:06:29 2022 +0200 fix(osfingermap): support CentOS 8 commit 7220f67 Author: Ewout van Mansom <[email protected]> Date: Fri May 20 18:56:59 2022 +0200 fix(osfingermap): set service name to wg-quick for Rocky Linux 8 commit aeb7ac7 Author: Ewout van Mansom <[email protected]> Date: Fri May 20 18:48:57 2022 +0200 fix(package.install): set name to pkgrepo state call commit 311851a Author: Ewout van Mansom <[email protected]> Date: Fri May 20 18:44:47 2022 +0200 fix(package.install): indent wireguard-package-install-pkg-{{ pkg_name }} correctly commit 2793a10 Author: Ewout van Mansom <[email protected]> Date: Fri May 20 18:41:38 2022 +0200 fix(package.install): resolve conflicting state ID commit 59d9982 Author: Ewout van Mansom <[email protected]> Date: Fri May 20 18:40:20 2022 +0200 fix(package.install): iterate over all pkgs instead commit 773e53a Author: Ewout van Mansom <[email protected]> Date: Fri May 20 18:37:18 2022 +0200 fix(package.install): support CentOS and Rocky Linux 8 commit 6e0d328 Author: Ewout van Mansom <[email protected]> Date: Fri May 20 18:36:19 2022 +0200 chore(precommit): update
- Loading branch information
Showing
4 changed files
with
91 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,32 +17,31 @@ repos: | |
stages: [manual] | ||
additional_dependencies: ['@commitlint/[email protected]'] | ||
always_run: true | ||
- repo: https://github.com/adithyabsk/mirrors-rubocop | ||
rev: v0.91.0 | ||
- repo: https://github.com/rubocop-hq/rubocop | ||
rev: v1.25.1 | ||
hooks: | ||
- id: rubocop | ||
name: Check Ruby files with rubocop | ||
args: [--debug] | ||
always_run: true | ||
pass_filenames: false | ||
- repo: https://github.com/jumanjihouse/pre-commit-hooks | ||
rev: 2.1.3 | ||
- repo: https://github.com/shellcheck-py/shellcheck-py | ||
rev: v0.8.0.4 | ||
hooks: | ||
- id: shellcheck | ||
name: Check shell scripts with shellcheck | ||
files: ^.*\.(sh|bash|ksh)$ | ||
types: [] | ||
args: [] | ||
- repo: https://github.com/adrienverge/yamllint.git | ||
rev: v1.23.0 | ||
- repo: https://github.com/adrienverge/yamllint | ||
rev: v1.26.3 | ||
hooks: | ||
- id: yamllint | ||
name: Check YAML syntax with yamllint | ||
args: [--strict, '.'] | ||
always_run: true | ||
pass_filenames: false | ||
- repo: https://github.com/warpnet/salt-lint | ||
rev: v0.3.0 | ||
rev: v0.8.0 | ||
hooks: | ||
- id: salt-lint | ||
name: Check Salt files using salt-lint | ||
|
@@ -53,4 +52,16 @@ repos: | |
- id: rstcheck | ||
name: Check reST files using rstcheck | ||
exclude: 'docs/CHANGELOG.rst' | ||
args: [--report=warning] | ||
- repo: https://github.com/saltstack-formulas/mirrors-rst-lint | ||
rev: v1.3.2 | ||
hooks: | ||
- id: rst-lint | ||
name: Check reST files using rst-lint | ||
exclude: | | ||
(?x)^( | ||
docs/CHANGELOG.rst| | ||
docs/TOFS_pattern.rst| | ||
docs/CONTRIBUTING_DOCS.rst| | ||
docs/index.rst| | ||
)$ | ||
additional_dependencies: [pygments==2.9.0] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,8 @@ | |
wireguard: | ||
pkg: | ||
name: wireguard | ||
pkgs: {} | ||
repos: {} | ||
rootgroup: root | ||
config: '/etc/wireguard' | ||
service: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters