mirror of
https://github.com/saltstack-formulas/packages-formula.git
synced 2025-04-15 17:20:22 +00:00
Compare commits
67 commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
34469f9cf9 | ||
![]() |
315e50f847 | ||
![]() |
8b7703ec00 | ||
![]() |
a83f6a2364 | ||
![]() |
5826716520 | ||
![]() |
aa455a6bb9 | ||
![]() |
93ef1cf36d | ||
![]() |
1ab49d0e49 | ||
![]() |
356525b7f0 | ||
![]() |
33c9ebacf0 | ||
![]() |
c17171299f | ||
![]() |
a95a55f063 | ||
![]() |
9390741d5c | ||
![]() |
5465d4adb2 | ||
![]() |
bd1cf996c5 | ||
![]() |
b389ef0fa1 | ||
![]() |
61125d3a98 | ||
![]() |
61746568cd | ||
![]() |
97a3664aec | ||
![]() |
b1ad5fb4ab | ||
![]() |
3477c12ad0 | ||
![]() |
dfe9a24078 | ||
![]() |
f76ac26148 | ||
![]() |
caff926924 | ||
![]() |
f000190413 | ||
![]() |
fb6e67f1ea | ||
![]() |
7b3dfb374f | ||
![]() |
71ccefcdd8 | ||
![]() |
c2210ab68a | ||
![]() |
8551ba18eb | ||
![]() |
7a53b83999 | ||
![]() |
5712cab43e | ||
![]() |
866f34bcd0 | ||
![]() |
c2bde16f2b | ||
![]() |
f18651e604 | ||
![]() |
17596fb4f1 | ||
![]() |
7e1816a9bc | ||
![]() |
79d3f7b7ed | ||
![]() |
021a0b6f86 | ||
![]() |
e6d80652bc | ||
![]() |
7c97573076 | ||
![]() |
ada027324a | ||
![]() |
af17db13cc | ||
![]() |
c0dd4c272d | ||
![]() |
9de8eb037a | ||
![]() |
769e1d6555 | ||
![]() |
a8b653431d | ||
![]() |
03c9093ac7 | ||
![]() |
5594d164b6 | ||
![]() |
1f7000717c | ||
![]() |
19d3d89e97 | ||
![]() |
1dfc398a39 | ||
![]() |
85e8b8b659 | ||
![]() |
c448af7960 | ||
![]() |
d14823a532 | ||
![]() |
2bb9f283e5 | ||
![]() |
7c1ca7cb94 | ||
![]() |
1df89bcba3 | ||
![]() |
4250e88bee | ||
![]() |
aa0f1e0099 | ||
![]() |
96a1a034c1 | ||
![]() |
0fdcbd4288 | ||
![]() |
901d7069ce | ||
![]() |
50bd23e72b | ||
![]() |
a31d157a4d | ||
![]() |
b5b400ffa4 | ||
![]() |
277615ba31 |
56 changed files with 3240 additions and 804 deletions
92
.github/workflows/kitchen.windows.yml
vendored
92
.github/workflows/kitchen.windows.yml
vendored
|
@ -11,6 +11,48 @@ env:
|
|||
KITCHEN_LOCAL_YAML: 'kitchen.windows.yml'
|
||||
|
||||
jobs:
|
||||
test-2022:
|
||||
runs-on: 'windows-2022'
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
instance:
|
||||
- windows-windows-2022-latest-py3
|
||||
steps:
|
||||
- name: 'Check out code'
|
||||
uses: 'actions/checkout@v2'
|
||||
- name: 'Install Chef'
|
||||
uses: 'actionshub/chef-install@1.1.0'
|
||||
with:
|
||||
project: 'chef'
|
||||
version: '16.10.8'
|
||||
- name: 'Add Chef bindir to PATH'
|
||||
uses: 'myci-actions/export-env-var-powershell@1'
|
||||
with:
|
||||
name: 'PATH'
|
||||
value: "C:\\opscode\\chef\\bin;\
|
||||
C:\\opscode\\chef\\embedded\\bin;$env:PATH"
|
||||
- name: 'Set up Bundler cache'
|
||||
uses: 'actions/cache@v1'
|
||||
with:
|
||||
path: 'vendor/bundle'
|
||||
key: "${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}"
|
||||
restore-keys: "${{ runner.os }}-gems-"
|
||||
- name: 'Set up test user'
|
||||
run: |
|
||||
$password = ConvertTo-SecureString $env:machine_pass -AsPlainText -Force
|
||||
New-LocalUser $env:machine_user -Password $password
|
||||
Add-LocalGroupMember -Group "Administrators" -Member $env:machine_user
|
||||
- name: 'Set up WinRM'
|
||||
run: |
|
||||
Set-WSManQuickConfig -Force
|
||||
- name: 'Run Bundler'
|
||||
run: |
|
||||
ruby --version
|
||||
bundle config path vendor/bundle
|
||||
bundle install --jobs 4 --retry 3
|
||||
- name: 'Run Test Kitchen'
|
||||
run: 'bundle exec kitchen verify ${{ matrix.instance }}'
|
||||
test-2019:
|
||||
runs-on: 'windows-2019'
|
||||
strategy:
|
||||
|
@ -44,54 +86,8 @@ jobs:
|
|||
New-LocalUser $env:machine_user -Password $password
|
||||
Add-LocalGroupMember -Group "Administrators" -Member $env:machine_user
|
||||
- name: 'Set up WinRM'
|
||||
run: >
|
||||
Set-WSManQuickConfig -Force;
|
||||
Set-WSManInstance -ResourceURI winrm/config/service
|
||||
-ValueSet @{AllowUnencrypted="true"}
|
||||
- name: 'Run Bundler'
|
||||
run: |
|
||||
ruby --version
|
||||
bundle config path vendor/bundle
|
||||
bundle install --jobs 4 --retry 3
|
||||
- name: 'Run Test Kitchen'
|
||||
run: 'bundle exec kitchen verify ${{ matrix.instance }}'
|
||||
test-2016:
|
||||
runs-on: 'windows-2016'
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
instance:
|
||||
- windows-windows-2016-latest-py3
|
||||
steps:
|
||||
- name: 'Check out code'
|
||||
uses: 'actions/checkout@v2'
|
||||
- name: 'Install Chef'
|
||||
uses: 'actionshub/chef-install@1.1.0'
|
||||
with:
|
||||
project: 'chef'
|
||||
version: '16.10.8'
|
||||
- name: 'Add Chef bindir to PATH'
|
||||
uses: 'myci-actions/export-env-var-powershell@1'
|
||||
with:
|
||||
name: 'PATH'
|
||||
value: "C:\\opscode\\chef\\bin;\
|
||||
C:\\opscode\\chef\\embedded\\bin;$env:PATH"
|
||||
- name: 'Set up Bundler cache'
|
||||
uses: 'actions/cache@v1'
|
||||
with:
|
||||
path: 'vendor/bundle'
|
||||
key: "${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}"
|
||||
restore-keys: "${{ runner.os }}-gems-"
|
||||
- name: 'Set up test user'
|
||||
run: |
|
||||
$password = ConvertTo-SecureString $env:machine_pass -AsPlainText -Force
|
||||
New-LocalUser $env:machine_user -Password $password
|
||||
Add-LocalGroupMember -Group "Administrators" -Member $env:machine_user
|
||||
- name: 'Set up WinRM'
|
||||
run: >
|
||||
Set-WSManQuickConfig -Force;
|
||||
Set-WSManInstance -ResourceURI winrm/config/service
|
||||
-ValueSet @{AllowUnencrypted="true"}
|
||||
run: |
|
||||
Set-WSManQuickConfig -Force
|
||||
- name: 'Run Bundler'
|
||||
run: |
|
||||
ruby --version
|
||||
|
|
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -127,6 +127,7 @@ tmp/
|
|||
# `salt-formula` -- Vagrant Specific files
|
||||
.vagrant
|
||||
top.sls
|
||||
!test/salt/pillar/top.sls
|
||||
|
||||
# `suricata-formula` -- Platform binaries
|
||||
*.rpm
|
||||
|
|
116
.gitlab-ci.yml
116
.gitlab-ci.yml
|
@ -130,12 +130,14 @@ rubocop:
|
|||
## Define the rest of the matrix based on Kitchen testing
|
||||
# Make sure the instances listed below match up with
|
||||
# the `platforms` defined in `kitchen.yml`
|
||||
# yamllint disable rule:line-length
|
||||
# debian-debian-11-tiamat-py3: {extends: '.test_instance'}
|
||||
# debian-debian-10-tiamat-py3: {extends: '.test_instance'}
|
||||
# debian-debian-9-tiamat-py3: {extends: '.test_instance'}
|
||||
# ubuntu-ubuntu-2204-tiamat-py3: {extends: '.test_instance_failure_permitted'}
|
||||
# ubuntu-ubuntu-2004-tiamat-py3: {extends: '.test_instance'}
|
||||
# ubuntu-ubuntu-1804-tiamat-py3: {extends: '.test_instance'}
|
||||
# redhat8-centos-8-tiamat-py3: {extends: '.test_instance'}
|
||||
# redhat8-centos-stream8-tiamat-py3: {extends: '.test_instance_failure_permitted'}
|
||||
# centos-centos-7-tiamat-py3: {extends: '.test_instance'}
|
||||
# amazon-amazonlinux-2-tiamat-py3: {extends: '.test_instance'}
|
||||
# redhat8-oraclelinux-8-tiamat-py3: {extends: '.test_instance'}
|
||||
|
@ -145,15 +147,15 @@ rubocop:
|
|||
debian-debian-11-master-py3: {extends: '.test_instance_failure_permitted'}
|
||||
debian-debian-10-master-py3: {extends: '.test_instance'}
|
||||
debian-debian-9-master-py3: {extends: '.test_instance'}
|
||||
# ubuntu-ubuntu-2204-master-py3: {extends: '.test_instance_failure_permitted'}
|
||||
# ubuntu-ubuntu-2004-master-py3: {extends: '.test_instance'}
|
||||
ubuntu-ubuntu-1804-master-py3: {extends: '.test_instance'}
|
||||
redhat8-centos-8-master-py3: {extends: '.test_instance'}
|
||||
redhat8-centos-stream8-master-py3: {extends: '.test_instance_failure_permitted'}
|
||||
centos-centos-7-master-py3: {extends: '.test_instance'}
|
||||
# fedora-fedora-34-master-py3: {extends: '.test_instance'}
|
||||
# fedora-fedora-33-master-py3: {extends: '.test_instance'}
|
||||
# fedora-fedora-36-master-py3: {extends: '.test_instance_failure_permitted'}
|
||||
# fedora-fedora-35-master-py3: {extends: '.test_instance'}
|
||||
suse-opensuse-leap-153-master-py3: {extends: '.test_instance'}
|
||||
suse-opensuse-leap-152-master-py3: {extends: '.test_instance'}
|
||||
suse-opensuse-tmbl-latest-master-py3: {extends: '.test_instance'}
|
||||
suse-opensuse-tmbl-latest-master-py3: {extends: '.test_instance_failure_permitted'}
|
||||
amazon-amazonlinux-2-master-py3: {extends: '.test_instance'}
|
||||
redhat8-oraclelinux-8-master-py3: {extends: '.test_instance'}
|
||||
centos-oraclelinux-7-master-py3: {extends: '.test_instance'}
|
||||
|
@ -162,77 +164,37 @@ gentoo-gentoo-stage3-latest-master-py3: {extends: '.test_instance'}
|
|||
gentoo-gentoo-stage3-systemd-master-py3: {extends: '.test_instance'}
|
||||
redhat8-almalinux-8-master-py3: {extends: '.test_instance'}
|
||||
redhat8-rockylinux-8-master-py3: {extends: '.test_instance'}
|
||||
# debian-debian-11-3003-2-py3: {extends: '.test_instance'}
|
||||
# debian-debian-10-3003-2-py3: {extends: '.test_instance'}
|
||||
# debian-debian-9-3003-2-py3: {extends: '.test_instance'}
|
||||
# ubuntu-ubuntu-2004-3003-2-py3: {extends: '.test_instance'}
|
||||
# ubuntu-ubuntu-1804-3003-2-py3: {extends: '.test_instance'}
|
||||
# redhat8-centos-8-3003-2-py3: {extends: '.test_instance'}
|
||||
# centos-centos-7-3003-2-py3: {extends: '.test_instance'}
|
||||
# fedora-fedora-34-3003-2-py3: {extends: '.test_instance'}
|
||||
# fedora-fedora-33-3003-2-py3: {extends: '.test_instance'}
|
||||
# suse-opensuse-leap-153-3003-2-py3: {extends: '.test_instance'}
|
||||
# suse-opensuse-leap-152-3003-2-py3: {extends: '.test_instance'}
|
||||
# suse-opensuse-tmbl-latest-3003-2-py3: {extends: '.test_instance'}
|
||||
# amazon-amazonlinux-2-3003-2-py3: {extends: '.test_instance'}
|
||||
# redhat8-oraclelinux-8-3003-2-py3: {extends: '.test_instance'}
|
||||
# centos-oraclelinux-7-3003-2-py3: {extends: '.test_instance'}
|
||||
# arch-arch-base-latest-3003-2-py3: {extends: '.test_instance'}
|
||||
# gentoo-gentoo-stage3-latest-3003-2-py3: {extends: '.test_instance'}
|
||||
# gentoo-gentoo-stage3-systemd-3003-2-py3: {extends: '.test_instance'}
|
||||
# redhat8-almalinux-8-3003-2-py3: {extends: '.test_instance'}
|
||||
# arch-arch-base-latest-3003-1-py3: {extends: '.test_instance'}
|
||||
# gentoo-gentoo-stage3-latest-3003-1-py3: {extends: '.test_instance'}
|
||||
# gentoo-gentoo-stage3-systemd-3003-1-py3: {extends: '.test_instance'}
|
||||
# debian-debian-11-3002-6-py3: {extends: '.test_instance'}
|
||||
# debian-debian-10-3002-6-py3: {extends: '.test_instance'}
|
||||
# debian-debian-9-3002-6-py3: {extends: '.test_instance'}
|
||||
# ubuntu-ubuntu-2004-3002-6-py3: {extends: '.test_instance'}
|
||||
# ubuntu-ubuntu-1804-3002-6-py3: {extends: '.test_instance'}
|
||||
# redhat8-centos-8-3002-6-py3: {extends: '.test_instance'}
|
||||
# centos-centos-7-3002-6-py3: {extends: '.test_instance'}
|
||||
# fedora-fedora-34-3002-6-py3: {extends: '.test_instance'}
|
||||
# fedora-fedora-33-3002-6-py3: {extends: '.test_instance'}
|
||||
# amazon-amazonlinux-2-3002-6-py3: {extends: '.test_instance'}
|
||||
# redhat8-oraclelinux-8-3002-6-py3: {extends: '.test_instance'}
|
||||
# centos-oraclelinux-7-3002-6-py3: {extends: '.test_instance'}
|
||||
# arch-arch-base-latest-3002-6-py3: {extends: '.test_instance'}
|
||||
# gentoo-gentoo-stage3-latest-3002-6-py3: {extends: '.test_instance'}
|
||||
# gentoo-gentoo-stage3-systemd-3002-6-py3: {extends: '.test_instance'}
|
||||
# suse-opensuse-leap-153-3002-2-py3: {extends: '.test_instance'}
|
||||
# suse-opensuse-leap-152-3002-2-py3: {extends: '.test_instance'}
|
||||
# suse-opensuse-tmbl-latest-3002-2-py3: {extends: '.test_instance'}
|
||||
# debian-debian-10-3001-7-py3: {extends: '.test_instance'}
|
||||
# debian-debian-9-3001-7-py3: {extends: '.test_instance'}
|
||||
# ubuntu-ubuntu-2004-3001-7-py3: {extends: '.test_instance'}
|
||||
# ubuntu-ubuntu-1804-3001-7-py3: {extends: '.test_instance'}
|
||||
# redhat8-centos-8-3001-7-py3: {extends: '.test_instance'}
|
||||
# centos-centos-7-3001-7-py3: {extends: '.test_instance'}
|
||||
# fedora-fedora-34-3001-7-py3: {extends: '.test_instance'}
|
||||
# fedora-fedora-33-3001-7-py3: {extends: '.test_instance'}
|
||||
# suse-opensuse-leap-153-3001-7-py3: {extends: '.test_instance'}
|
||||
# suse-opensuse-leap-152-3001-7-py3: {extends: '.test_instance'}
|
||||
# suse-opensuse-tmbl-latest-3001-7-py3: {extends: '.test_instance'}
|
||||
# amazon-amazonlinux-2-3001-7-py3: {extends: '.test_instance'}
|
||||
# redhat8-oraclelinux-8-3001-7-py3: {extends: '.test_instance'}
|
||||
# centos-oraclelinux-7-3001-7-py3: {extends: '.test_instance'}
|
||||
# arch-arch-base-latest-3001-7-py3: {extends: '.test_instance'}
|
||||
# gentoo-gentoo-stage3-latest-3001-7-py3: {extends: '.test_instance'}
|
||||
# gentoo-gentoo-stage3-systemd-3001-7-py3: {extends: '.test_instance'}
|
||||
# debian-debian-10-3000-9-py3: {extends: '.test_instance'}
|
||||
# debian-debian-9-3000-9-py3: {extends: '.test_instance'}
|
||||
# ubuntu-ubuntu-1804-3000-9-py3: {extends: '.test_instance'}
|
||||
# redhat8-centos-8-3000-9-py3: {extends: '.test_instance'}
|
||||
# centos-centos-7-3000-9-py3: {extends: '.test_instance'}
|
||||
# suse-opensuse-leap-153-3000-9-py3: {extends: '.test_instance'}
|
||||
# suse-opensuse-leap-152-3000-9-py3: {extends: '.test_instance'}
|
||||
# amazon-amazonlinux-2-3000-9-py3: {extends: '.test_instance'}
|
||||
# redhat8-oraclelinux-8-3000-9-py3: {extends: '.test_instance'}
|
||||
# centos-oraclelinux-7-3000-9-py3: {extends: '.test_instance'}
|
||||
# gentoo-gentoo-stage3-latest-3000-9-py3: {extends: '.test_instance'}
|
||||
# gentoo-gentoo-stage3-systemd-3000-9-py3: {extends: '.test_instance'}
|
||||
# ubuntu-ubuntu-1804-3000-9-py2: {extends: '.test_instance'}
|
||||
# arch-arch-base-latest-3000-9-py2: {extends: '.test_instance'}
|
||||
# debian-debian-11-3004-1-py3: {extends: '.test_instance'}
|
||||
# debian-debian-10-3004-1-py3: {extends: '.test_instance'}
|
||||
# debian-debian-9-3004-1-py3: {extends: '.test_instance'}
|
||||
# ubuntu-ubuntu-2204-3004-1-py3: {extends: '.test_instance_failure_permitted'}
|
||||
# ubuntu-ubuntu-2004-3004-1-py3: {extends: '.test_instance'}
|
||||
# ubuntu-ubuntu-1804-3004-1-py3: {extends: '.test_instance'}
|
||||
# redhat8-centos-stream8-3004-1-py3: {extends: '.test_instance_failure_permitted'}
|
||||
# centos-centos-7-3004-1-py3: {extends: '.test_instance'}
|
||||
# fedora-fedora-36-3004-1-py3: {extends: '.test_instance_failure_permitted'}
|
||||
# fedora-fedora-35-3004-1-py3: {extends: '.test_instance'}
|
||||
# amazon-amazonlinux-2-3004-1-py3: {extends: '.test_instance'}
|
||||
# redhat8-oraclelinux-8-3004-1-py3: {extends: '.test_instance'}
|
||||
# centos-oraclelinux-7-3004-1-py3: {extends: '.test_instance'}
|
||||
# arch-arch-base-latest-3004-1-py3: {extends: '.test_instance'}
|
||||
# gentoo-gentoo-stage3-latest-3004-1-py3: {extends: '.test_instance'}
|
||||
# gentoo-gentoo-stage3-systemd-3004-1-py3: {extends: '.test_instance'}
|
||||
# redhat8-almalinux-8-3004-1-py3: {extends: '.test_instance'}
|
||||
# redhat8-rockylinux-8-3004-1-py3: {extends: '.test_instance'}
|
||||
# suse-opensuse-leap-153-3004-0-py3: {extends: '.test_instance'}
|
||||
# suse-opensuse-tmbl-latest-3004-0-py3: {extends: '.test_instance_failure_permitted'}
|
||||
# debian-debian-10-3003-4-py3: {extends: '.test_instance'}
|
||||
# debian-debian-9-3003-4-py3: {extends: '.test_instance'}
|
||||
# ubuntu-ubuntu-2004-3003-4-py3: {extends: '.test_instance'}
|
||||
# ubuntu-ubuntu-1804-3003-4-py3: {extends: '.test_instance'}
|
||||
# redhat8-centos-stream8-3003-4-py3: {extends: '.test_instance_failure_permitted'}
|
||||
# centos-centos-7-3003-4-py3: {extends: '.test_instance'}
|
||||
# amazon-amazonlinux-2-3003-4-py3: {extends: '.test_instance'}
|
||||
# redhat8-oraclelinux-8-3003-4-py3: {extends: '.test_instance'}
|
||||
# centos-oraclelinux-7-3003-4-py3: {extends: '.test_instance'}
|
||||
# redhat8-almalinux-8-3003-4-py3: {extends: '.test_instance'}
|
||||
# yamllint enable rule:line-length
|
||||
|
||||
###############################################################################
|
||||
# `release` stage: `semantic-release`
|
||||
|
|
|
@ -3,6 +3,18 @@
|
|||
---
|
||||
# See https://pre-commit.com for more information
|
||||
# See https://pre-commit.com/hooks.html for more hooks
|
||||
ci:
|
||||
autofix_commit_msg: |
|
||||
ci(pre-commit.ci): apply auto fixes from pre-commit.com hooks
|
||||
|
||||
For more information, see https://pre-commit.ci
|
||||
autofix_prs: true
|
||||
autoupdate_branch: ''
|
||||
autoupdate_commit_msg: |
|
||||
ci(pre-commit.ci): perform `pre-commit` autoupdate
|
||||
autoupdate_schedule: quarterly
|
||||
skip: []
|
||||
submodules: false
|
||||
default_stages: [commit]
|
||||
repos:
|
||||
- repo: https://github.com/dafyddj/commitlint-pre-commit-hook
|
||||
|
@ -18,7 +30,7 @@ repos:
|
|||
additional_dependencies: ['@commitlint/config-conventional@8.3.4']
|
||||
always_run: true
|
||||
- repo: https://github.com/rubocop-hq/rubocop
|
||||
rev: v1.9.1
|
||||
rev: v1.30.1
|
||||
hooks:
|
||||
- id: rubocop
|
||||
name: Check Ruby files with rubocop
|
||||
|
@ -26,14 +38,14 @@ repos:
|
|||
always_run: true
|
||||
pass_filenames: false
|
||||
- repo: https://github.com/shellcheck-py/shellcheck-py
|
||||
rev: v0.7.1.1
|
||||
rev: v0.8.0.4
|
||||
hooks:
|
||||
- id: shellcheck
|
||||
name: Check shell scripts with shellcheck
|
||||
files: ^.*\.(sh|bash|ksh)$
|
||||
types: []
|
||||
- repo: https://github.com/adrienverge/yamllint
|
||||
rev: v1.23.0
|
||||
rev: v1.26.3
|
||||
hooks:
|
||||
- id: yamllint
|
||||
name: Check YAML syntax with yamllint
|
||||
|
@ -41,7 +53,7 @@ repos:
|
|||
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
|
||||
|
|
|
@ -16,4 +16,8 @@ Security/YAMLLoad:
|
|||
Exclude:
|
||||
- test/integration/**/_mapdata.rb
|
||||
|
||||
# General settings across all cops in this formula
|
||||
AllCops:
|
||||
NewCops: enable
|
||||
|
||||
# Any offenses that should be fixed, e.g. collected via. `rubocop --auto-gen-config`
|
||||
|
|
112
.travis.yml
112
.travis.yml
|
@ -86,9 +86,10 @@ jobs:
|
|||
# - env: INSTANCE=debian-debian-11-tiamat-py3
|
||||
# - env: INSTANCE=debian-debian-10-tiamat-py3
|
||||
# - env: INSTANCE=debian-debian-9-tiamat-py3
|
||||
# - env: INSTANCE=ubuntu-ubuntu-2204-tiamat-py3
|
||||
# - env: INSTANCE=ubuntu-ubuntu-2004-tiamat-py3
|
||||
# - env: INSTANCE=ubuntu-ubuntu-1804-tiamat-py3
|
||||
# - env: INSTANCE=redhat8-centos-8-tiamat-py3
|
||||
# - env: INSTANCE=redhat8-centos-stream8-tiamat-py3
|
||||
# - env: INSTANCE=centos-centos-7-tiamat-py3
|
||||
# - env: INSTANCE=amazon-amazonlinux-2-tiamat-py3
|
||||
# - env: INSTANCE=redhat8-oraclelinux-8-tiamat-py3
|
||||
|
@ -98,14 +99,14 @@ jobs:
|
|||
- env: INSTANCE=debian-debian-11-master-py3
|
||||
- env: INSTANCE=debian-debian-10-master-py3
|
||||
- env: INSTANCE=debian-debian-9-master-py3
|
||||
# - env: INSTANCE=ubuntu-ubuntu-2204-master-py3
|
||||
# - env: INSTANCE=ubuntu-ubuntu-2004-master-py3
|
||||
- env: INSTANCE=ubuntu-ubuntu-1804-master-py3
|
||||
- env: INSTANCE=redhat8-centos-8-master-py3
|
||||
- env: INSTANCE=redhat8-centos-stream8-master-py3
|
||||
- env: INSTANCE=centos-centos-7-master-py3
|
||||
# - env: INSTANCE=fedora-fedora-34-master-py3
|
||||
# - env: INSTANCE=fedora-fedora-33-master-py3
|
||||
# - env: INSTANCE=fedora-fedora-36-master-py3
|
||||
# - env: INSTANCE=fedora-fedora-35-master-py3
|
||||
- env: INSTANCE=suse-opensuse-leap-153-master-py3
|
||||
- env: INSTANCE=suse-opensuse-leap-152-master-py3
|
||||
- env: INSTANCE=suse-opensuse-tmbl-latest-master-py3
|
||||
- env: INSTANCE=amazon-amazonlinux-2-master-py3
|
||||
- env: INSTANCE=redhat8-oraclelinux-8-master-py3
|
||||
|
@ -115,77 +116,36 @@ jobs:
|
|||
- env: INSTANCE=gentoo-gentoo-stage3-systemd-master-py3
|
||||
- env: INSTANCE=redhat8-almalinux-8-master-py3
|
||||
- env: INSTANCE=redhat8-rockylinux-8-master-py3
|
||||
# - env: INSTANCE=debian-debian-11-3003-2-py3
|
||||
# - env: INSTANCE=debian-debian-10-3003-2-py3
|
||||
# - env: INSTANCE=debian-debian-9-3003-2-py3
|
||||
# - env: INSTANCE=ubuntu-ubuntu-2004-3003-2-py3
|
||||
# - env: INSTANCE=ubuntu-ubuntu-1804-3003-2-py3
|
||||
# - env: INSTANCE=redhat8-centos-8-3003-2-py3
|
||||
# - env: INSTANCE=centos-centos-7-3003-2-py3
|
||||
# - env: INSTANCE=fedora-fedora-34-3003-2-py3
|
||||
# - env: INSTANCE=fedora-fedora-33-3003-2-py3
|
||||
# - env: INSTANCE=suse-opensuse-leap-153-3003-2-py3
|
||||
# - env: INSTANCE=suse-opensuse-leap-152-3003-2-py3
|
||||
# - env: INSTANCE=suse-opensuse-tmbl-latest-3003-2-py3
|
||||
# - env: INSTANCE=amazon-amazonlinux-2-3003-2-py3
|
||||
# - env: INSTANCE=redhat8-oraclelinux-8-3003-2-py3
|
||||
# - env: INSTANCE=centos-oraclelinux-7-3003-2-py3
|
||||
# - env: INSTANCE=arch-arch-base-latest-3003-2-py3
|
||||
# - env: INSTANCE=gentoo-gentoo-stage3-latest-3003-2-py3
|
||||
# - env: INSTANCE=gentoo-gentoo-stage3-systemd-3003-2-py3
|
||||
# - env: INSTANCE=redhat8-almalinux-8-3003-2-py3
|
||||
# - env: INSTANCE=arch-arch-base-latest-3003-1-py3
|
||||
# - env: INSTANCE=gentoo-gentoo-stage3-latest-3003-1-py3
|
||||
# - env: INSTANCE=gentoo-gentoo-stage3-systemd-3003-1-py3
|
||||
# - env: INSTANCE=debian-debian-11-3002-6-py3
|
||||
# - env: INSTANCE=debian-debian-10-3002-6-py3
|
||||
# - env: INSTANCE=debian-debian-9-3002-6-py3
|
||||
# - env: INSTANCE=ubuntu-ubuntu-2004-3002-6-py3
|
||||
# - env: INSTANCE=ubuntu-ubuntu-1804-3002-6-py3
|
||||
# - env: INSTANCE=redhat8-centos-8-3002-6-py3
|
||||
# - env: INSTANCE=centos-centos-7-3002-6-py3
|
||||
# - env: INSTANCE=fedora-fedora-34-3002-6-py3
|
||||
# - env: INSTANCE=fedora-fedora-33-3002-6-py3
|
||||
# - env: INSTANCE=amazon-amazonlinux-2-3002-6-py3
|
||||
# - env: INSTANCE=redhat8-oraclelinux-8-3002-6-py3
|
||||
# - env: INSTANCE=centos-oraclelinux-7-3002-6-py3
|
||||
# - env: INSTANCE=arch-arch-base-latest-3002-6-py3
|
||||
# - env: INSTANCE=gentoo-gentoo-stage3-latest-3002-6-py3
|
||||
# - env: INSTANCE=gentoo-gentoo-stage3-systemd-3002-6-py3
|
||||
# - env: INSTANCE=suse-opensuse-leap-153-3002-2-py3
|
||||
# - env: INSTANCE=suse-opensuse-leap-152-3002-2-py3
|
||||
# - env: INSTANCE=suse-opensuse-tmbl-latest-3002-2-py3
|
||||
# - env: INSTANCE=debian-debian-10-3001-7-py3
|
||||
# - env: INSTANCE=debian-debian-9-3001-7-py3
|
||||
# - env: INSTANCE=ubuntu-ubuntu-2004-3001-7-py3
|
||||
# - env: INSTANCE=ubuntu-ubuntu-1804-3001-7-py3
|
||||
# - env: INSTANCE=redhat8-centos-8-3001-7-py3
|
||||
# - env: INSTANCE=centos-centos-7-3001-7-py3
|
||||
# - env: INSTANCE=fedora-fedora-34-3001-7-py3
|
||||
# - env: INSTANCE=fedora-fedora-33-3001-7-py3
|
||||
# - env: INSTANCE=suse-opensuse-leap-153-3001-7-py3
|
||||
# - env: INSTANCE=suse-opensuse-leap-152-3001-7-py3
|
||||
# - env: INSTANCE=suse-opensuse-tmbl-latest-3001-7-py3
|
||||
# - env: INSTANCE=amazon-amazonlinux-2-3001-7-py3
|
||||
# - env: INSTANCE=redhat8-oraclelinux-8-3001-7-py3
|
||||
# - env: INSTANCE=centos-oraclelinux-7-3001-7-py3
|
||||
# - env: INSTANCE=arch-arch-base-latest-3001-7-py3
|
||||
# - env: INSTANCE=gentoo-gentoo-stage3-latest-3001-7-py3
|
||||
# - env: INSTANCE=gentoo-gentoo-stage3-systemd-3001-7-py3
|
||||
# - env: INSTANCE=debian-debian-10-3000-9-py3
|
||||
# - env: INSTANCE=debian-debian-9-3000-9-py3
|
||||
# - env: INSTANCE=ubuntu-ubuntu-1804-3000-9-py3
|
||||
# - env: INSTANCE=redhat8-centos-8-3000-9-py3
|
||||
# - env: INSTANCE=centos-centos-7-3000-9-py3
|
||||
# - env: INSTANCE=suse-opensuse-leap-153-3000-9-py3
|
||||
# - env: INSTANCE=suse-opensuse-leap-152-3000-9-py3
|
||||
# - env: INSTANCE=amazon-amazonlinux-2-3000-9-py3
|
||||
# - env: INSTANCE=redhat8-oraclelinux-8-3000-9-py3
|
||||
# - env: INSTANCE=centos-oraclelinux-7-3000-9-py3
|
||||
# - env: INSTANCE=gentoo-gentoo-stage3-latest-3000-9-py3
|
||||
# - env: INSTANCE=gentoo-gentoo-stage3-systemd-3000-9-py3
|
||||
# - env: INSTANCE=ubuntu-ubuntu-1804-3000-9-py2
|
||||
# - env: INSTANCE=arch-arch-base-latest-3000-9-py2
|
||||
# - env: INSTANCE=debian-debian-11-3004-1-py3
|
||||
# - env: INSTANCE=debian-debian-10-3004-1-py3
|
||||
# - env: INSTANCE=debian-debian-9-3004-1-py3
|
||||
# - env: INSTANCE=ubuntu-ubuntu-2204-3004-1-py3
|
||||
# - env: INSTANCE=ubuntu-ubuntu-2004-3004-1-py3
|
||||
# - env: INSTANCE=ubuntu-ubuntu-1804-3004-1-py3
|
||||
# - env: INSTANCE=redhat8-centos-stream8-3004-1-py3
|
||||
# - env: INSTANCE=centos-centos-7-3004-1-py3
|
||||
# - env: INSTANCE=fedora-fedora-36-3004-1-py3
|
||||
# - env: INSTANCE=fedora-fedora-35-3004-1-py3
|
||||
# - env: INSTANCE=amazon-amazonlinux-2-3004-1-py3
|
||||
# - env: INSTANCE=redhat8-oraclelinux-8-3004-1-py3
|
||||
# - env: INSTANCE=centos-oraclelinux-7-3004-1-py3
|
||||
# - env: INSTANCE=arch-arch-base-latest-3004-1-py3
|
||||
# - env: INSTANCE=gentoo-gentoo-stage3-latest-3004-1-py3
|
||||
# - env: INSTANCE=gentoo-gentoo-stage3-systemd-3004-1-py3
|
||||
# - env: INSTANCE=redhat8-almalinux-8-3004-1-py3
|
||||
# - env: INSTANCE=redhat8-rockylinux-8-3004-1-py3
|
||||
# - env: INSTANCE=suse-opensuse-leap-153-3004-0-py3
|
||||
# - env: INSTANCE=suse-opensuse-tmbl-latest-3004-0-py3
|
||||
# - env: INSTANCE=debian-debian-10-3003-4-py3
|
||||
# - env: INSTANCE=debian-debian-9-3003-4-py3
|
||||
# - env: INSTANCE=ubuntu-ubuntu-2004-3003-4-py3
|
||||
# - env: INSTANCE=ubuntu-ubuntu-1804-3003-4-py3
|
||||
# - env: INSTANCE=redhat8-centos-stream8-3003-4-py3
|
||||
# - env: INSTANCE=centos-centos-7-3003-4-py3
|
||||
# - env: INSTANCE=amazon-amazonlinux-2-3003-4-py3
|
||||
# - env: INSTANCE=redhat8-oraclelinux-8-3003-4-py3
|
||||
# - env: INSTANCE=centos-oraclelinux-7-3003-4-py3
|
||||
# - env: INSTANCE=redhat8-almalinux-8-3003-4-py3
|
||||
|
||||
## Define the release stage that runs `semantic-release`
|
||||
- stage: 'release'
|
||||
|
|
|
@ -4,19 +4,20 @@ This list is sorted by the number of commits per contributor in _descending_ ord
|
|||
|
||||
Avatar|Contributor|Contributions
|
||||
:-:|---|:-:
|
||||
<img class='float-left rounded-1' src='https://avatars.githubusercontent.com/u/10231489?v=4' width='36' height='36' alt='@myii'>|[@myii](https://github.com/myii)|103
|
||||
<img class='float-left rounded-1' src='https://avatars.githubusercontent.com/u/10231489?v=4' width='36' height='36' alt='@myii'>|[@myii](https://github.com/myii)|152
|
||||
<img class='float-left rounded-1' src='https://avatars.githubusercontent.com/u/242396?v=4' width='36' height='36' alt='@javierbertoli'>|[@javierbertoli](https://github.com/javierbertoli)|44
|
||||
<img class='float-left rounded-1' src='https://avatars.githubusercontent.com/u/13322818?v=4' width='36' height='36' alt='@noelmcloughlin'>|[@noelmcloughlin](https://github.com/noelmcloughlin)|36
|
||||
<img class='float-left rounded-1' src='https://avatars.githubusercontent.com/u/13322818?v=4' width='36' height='36' alt='@noelmcloughlin'>|[@noelmcloughlin](https://github.com/noelmcloughlin)|38
|
||||
<img class='float-left rounded-1' src='https://avatars.githubusercontent.com/u/1800660?v=4' width='36' height='36' alt='@aboe76'>|[@aboe76](https://github.com/aboe76)|12
|
||||
<img class='float-left rounded-1' src='https://avatars.githubusercontent.com/u/52996?v=4' width='36' height='36' alt='@daks'>|[@daks](https://github.com/daks)|10
|
||||
<img class='float-left rounded-1' src='https://avatars.githubusercontent.com/u/4195158?v=4' width='36' height='36' alt='@dafyddj'>|[@dafyddj](https://github.com/dafyddj)|3
|
||||
<img class='float-left rounded-1' src='https://avatars.githubusercontent.com/u/4195158?v=4' width='36' height='36' alt='@dafyddj'>|[@dafyddj](https://github.com/dafyddj)|4
|
||||
<img class='float-left rounded-1' src='https://avatars.githubusercontent.com/u/26920783?v=4' width='36' height='36' alt='@kartnico'>|[@kartnico](https://github.com/kartnico)|3
|
||||
<img class='float-left rounded-1' src='https://avatars.githubusercontent.com/u/1840337?v=4' width='36' height='36' alt='@ikogan'>|[@ikogan](https://github.com/ikogan)|2
|
||||
<img class='float-left rounded-1' src='https://avatars.githubusercontent.com/u/1233212?v=4' width='36' height='36' alt='@baby-gnu'>|[@baby-gnu](https://github.com/baby-gnu)|1
|
||||
<img class='float-left rounded-1' src='https://avatars.githubusercontent.com/u/203204?v=4' width='36' height='36' alt='@abele'>|[@abele](https://github.com/abele)|1
|
||||
<img class='float-left rounded-1' src='https://avatars.githubusercontent.com/u/83996323?v=4' width='36' height='36' alt='@mdschmitt'>|[@mdschmitt](https://github.com/mdschmitt)|1
|
||||
<img class='float-left rounded-1' src='https://avatars.githubusercontent.com/u/36660054?v=4' width='36' height='36' alt='@ypid-geberit'>|[@ypid-geberit](https://github.com/ypid-geberit)|1
|
||||
<img class='float-left rounded-1' src='https://avatars.githubusercontent.com/u/751889?v=4' width='36' height='36' alt='@Yoda-BZH'>|[@Yoda-BZH](https://github.com/Yoda-BZH)|1
|
||||
|
||||
---
|
||||
|
||||
Auto-generated by a [forked version](https://github.com/myii/maintainer) of [gaocegege/maintainer](https://github.com/gaocegege/maintainer) on 2021-09-06.
|
||||
Auto-generated by a [forked version](https://github.com/myii/maintainer) of [gaocegege/maintainer](https://github.com/gaocegege/maintainer) on 2022-04-28.
|
||||
|
|
58
CHANGELOG.md
58
CHANGELOG.md
|
@ -1,5 +1,63 @@
|
|||
# Changelog
|
||||
|
||||
# [0.16.0](https://github.com/saltstack-formulas/packages-formula/compare/v0.15.0...v0.16.0) (2022-04-28)
|
||||
|
||||
|
||||
### Continuous Integration
|
||||
|
||||
* **kitchen+gitlab:** update for new pre-salted images [skip ci] ([6174656](https://github.com/saltstack-formulas/packages-formula/commit/61746568cd83f9d9ccc81c393004928b03aec3af))
|
||||
* update linters to latest versions [skip ci] ([7b3dfb3](https://github.com/saltstack-formulas/packages-formula/commit/7b3dfb374fd09b1277349620cca95e5704cbc548))
|
||||
* **example:** remove blockbox as example of raw ([#86](https://github.com/saltstack-formulas/packages-formula/issues/86)) ([5712cab](https://github.com/saltstack-formulas/packages-formula/commit/5712cab43ef64088dc95214b6c97bfca0ded4a37))
|
||||
* **gemfile:** allow rubygems proxy to be provided as an env var [skip ci] ([7a53b83](https://github.com/saltstack-formulas/packages-formula/commit/7a53b839993324a82e94511d85b85fe8c660a882))
|
||||
* **kitchen+gitlab:** update for new pre-salted images [skip ci] ([c2210ab](https://github.com/saltstack-formulas/packages-formula/commit/c2210ab68a4bec5d08da47060644a66a6649b3ac))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **archive:** make resource name the target path ([#82](https://github.com/saltstack-formulas/packages-formula/issues/82)) ([9390741](https://github.com/saltstack-formulas/packages-formula/commit/9390741d5c25a2915c93368d2100c74e7ebf335f))
|
||||
|
||||
|
||||
### Tests
|
||||
|
||||
* **system:** add `build_platform_codename` [skip ci] ([fb6e67f](https://github.com/saltstack-formulas/packages-formula/commit/fb6e67f1eac5f8a68b008c7ede3bf8fb9b7cb7a0))
|
||||
|
||||
# [0.15.0](https://github.com/saltstack-formulas/packages-formula/compare/v0.14.1...v0.15.0) (2022-01-16)
|
||||
|
||||
|
||||
### Continuous Integration
|
||||
|
||||
* **kitchen:** remove `branch` for `node-formula` dependency ([e6d8065](https://github.com/saltstack-formulas/packages-formula/commit/e6d80652bc4bd19d0ca3b5f54d73eeccc2effc20))
|
||||
* **kitchen+ci:** update with `3004` pre-salted images/boxes [skip ci] ([85e8b8b](https://github.com/saltstack-formulas/packages-formula/commit/85e8b8b6597671943c79332078d0eec5cecc0b6c))
|
||||
* **kitchen+ci:** update with latest CVE pre-salted images [skip ci] ([1df89bc](https://github.com/saltstack-formulas/packages-formula/commit/1df89bcba3439e2387494e909b6c1af7c7f02e60))
|
||||
* **proxy:** replace deprecated Windows `2016` with `2022` [skip ci] ([769e1d6](https://github.com/saltstack-formulas/packages-formula/commit/769e1d6555d9c4770230454f06149d12c12b7d8f))
|
||||
* **proxy+windows:** fix setting up WinRM [skip ci] ([a8b6534](https://github.com/saltstack-formulas/packages-formula/commit/a8b653431d94da9545c28af4b86215f4eac344e9))
|
||||
* **windows:** use Salt version `3004` [skip ci] ([7c97573](https://github.com/saltstack-formulas/packages-formula/commit/7c97573076d440b4c641322246789e1a414e740a))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **os*map:** add support for CentOS Stream 8 [skip ci] ([5594d16](https://github.com/saltstack-formulas/packages-formula/commit/5594d164b6e2df2648fb6549bc17f7f0c446eac9))
|
||||
|
||||
|
||||
### Tests
|
||||
|
||||
* **debian:** update `node` settings ([021a0b6](https://github.com/saltstack-formulas/packages-formula/commit/021a0b6f86b6edadc8a65b1512b626f8bbaa5461))
|
||||
* **debian:** use `python3-pip` ([79d3f7b](https://github.com/saltstack-formulas/packages-formula/commit/79d3f7b7ed82b8ca79194ef01fb6caf27f1f4eba))
|
||||
* **pillar:** disable `dxpy` installation on Debian [skip ci] ([1f70007](https://github.com/saltstack-formulas/packages-formula/commit/1f7000717c682f1086e6203d409e5d4c64717076))
|
||||
|
||||
## [0.14.1](https://github.com/saltstack-formulas/packages-formula/compare/v0.14.0...v0.14.1) (2021-10-02)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **rubocop:** fix violation [skip ci] ([901d706](https://github.com/saltstack-formulas/packages-formula/commit/901d7069ce7f523c550a08ee2a5388f93641f4cd))
|
||||
|
||||
|
||||
### Tests
|
||||
|
||||
* **_mapdata:** generate verification files ([96a1a03](https://github.com/saltstack-formulas/packages-formula/commit/96a1a034c1e438c5695f4f03e9f79bcdf7ff9142))
|
||||
* **map:** verify `map.jinja` dump using `_mapdata` state ([0fdcbd4](https://github.com/saltstack-formulas/packages-formula/commit/0fdcbd428839d5459ed9e6503b7765a4bd320149))
|
||||
|
||||
# [0.14.0](https://github.com/saltstack-formulas/packages-formula/compare/v0.13.1...v0.14.0) (2021-09-06)
|
||||
|
||||
|
||||
|
|
|
@ -22,6 +22,7 @@
|
|||
/test/integration/**/libraries/system.rb @saltstack-formulas/ssf
|
||||
/test/integration/**/inspec.yml @saltstack-formulas/ssf
|
||||
/test/integration/**/README.md @saltstack-formulas/ssf
|
||||
/test/salt/pillar/top.sls @saltstack-formulas/ssf
|
||||
/.gitignore @saltstack-formulas/ssf
|
||||
/.cirrus.yml @saltstack-formulas/ssf
|
||||
/.gitlab-ci.yml @saltstack-formulas/ssf
|
||||
|
|
2
FORMULA
2
FORMULA
|
@ -1,7 +1,7 @@
|
|||
name: packages
|
||||
os: Debian, Ubuntu, Raspbian, RedHat, Fedora, CentOS, Suse, openSUSE
|
||||
os_family: Debian, RedHat, Suse
|
||||
version: 0.14.0
|
||||
version: 0.16.0
|
||||
release: 1
|
||||
minimum_version: 2017.7
|
||||
summary: packages formula
|
||||
|
|
4
Gemfile
4
Gemfile
|
@ -1,6 +1,6 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
source 'https://rubygems.org'
|
||||
source ENV.fetch('PROXY_RUBYGEMSORG', 'https://rubygems.org')
|
||||
|
||||
# Install the `inspec` gem using `git` because versions after `4.22.22`
|
||||
# suppress diff output; this version fixes this for our uses.
|
||||
|
@ -16,7 +16,7 @@ gem 'kitchen-docker', git: 'https://gitlab.com/saltstack-formulas/infrastructure
|
|||
# rubocop:enable Layout/LineLength
|
||||
|
||||
gem 'kitchen-inspec', '>= 2.5.0'
|
||||
gem 'kitchen-salt', '>= 0.6.3'
|
||||
gem 'kitchen-salt', '>= 0.7.2'
|
||||
|
||||
group :vagrant do
|
||||
gem 'kitchen-vagrant'
|
||||
|
|
440
Gemfile.lock
440
Gemfile.lock
|
@ -1,17 +1,20 @@
|
|||
GIT
|
||||
remote: https://gitlab.com/saltstack-formulas/infrastructure/inspec
|
||||
revision: 4fa6455347ea3c7123743dfd9796728cb0b77bb9
|
||||
revision: aaef842906a5666f0fc0b4f186b4dd3498f5b28c
|
||||
branch: ssf
|
||||
specs:
|
||||
inspec (4.41.11)
|
||||
inspec (5.18.15)
|
||||
cookstyle
|
||||
faraday_middleware (>= 0.12.2, < 1.1)
|
||||
inspec-core (= 4.41.11)
|
||||
inspec-core (= 5.18.15)
|
||||
mongo (= 2.13.2)
|
||||
train (~> 3.0)
|
||||
train-aws (~> 0.1)
|
||||
progress_bar (~> 1.3.3)
|
||||
rake
|
||||
train (~> 3.10)
|
||||
train-aws (~> 0.2)
|
||||
train-habitat (~> 0.1)
|
||||
train-winrm (~> 0.2)
|
||||
inspec-core (4.41.11)
|
||||
inspec-core (5.18.15)
|
||||
addressable (~> 2.4)
|
||||
chef-telemetry (~> 1.0, >= 1.0.8)
|
||||
faraday (>= 0.9.0, < 1.5)
|
||||
|
@ -24,234 +27,268 @@ GIT
|
|||
parallel (~> 1.9)
|
||||
parslet (>= 1.5, < 2.0)
|
||||
pry (~> 0.13)
|
||||
rspec (>= 3.9, < 3.11)
|
||||
rspec (>= 3.9, <= 3.11)
|
||||
rspec-its (~> 1.2)
|
||||
rubyzip (>= 1.2.2, < 3.0)
|
||||
semverse (~> 3.0)
|
||||
sslshake (~> 1.2)
|
||||
thor (>= 0.20, < 2.0)
|
||||
tomlrb (>= 1.2, < 2.1)
|
||||
train-core (~> 3.0)
|
||||
train-core (~> 3.10)
|
||||
tty-prompt (~> 0.17)
|
||||
tty-table (~> 0.10)
|
||||
|
||||
GIT
|
||||
remote: https://gitlab.com/saltstack-formulas/infrastructure/kitchen-docker
|
||||
revision: 428c89fc250b3790abad5ecb0afe0c3d4956084c
|
||||
revision: 9a09bc1e571e25f3ccabf4725ca2048d970fff82
|
||||
branch: ssf
|
||||
specs:
|
||||
kitchen-docker (2.11.0)
|
||||
kitchen-docker (2.12.0)
|
||||
test-kitchen (>= 1.0.0)
|
||||
|
||||
GEM
|
||||
remote: https://rubygems.org/
|
||||
specs:
|
||||
activesupport (6.1.4.1)
|
||||
activesupport (7.0.3.1)
|
||||
concurrent-ruby (~> 1.0, >= 1.0.2)
|
||||
i18n (>= 1.6, < 2)
|
||||
minitest (>= 5.1)
|
||||
tzinfo (~> 2.0)
|
||||
zeitwerk (~> 2.3)
|
||||
addressable (2.8.0)
|
||||
public_suffix (>= 2.0.2, < 5.0)
|
||||
aws-eventstream (1.1.1)
|
||||
aws-partitions (1.492.0)
|
||||
aws-sdk-apigateway (1.66.0)
|
||||
aws-sdk-core (~> 3, >= 3.119.0)
|
||||
ast (2.4.2)
|
||||
aws-eventstream (1.2.0)
|
||||
aws-partitions (1.607.0)
|
||||
aws-sdk-alexaforbusiness (1.56.0)
|
||||
aws-sdk-core (~> 3, >= 3.127.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-apigatewayv2 (1.35.0)
|
||||
aws-sdk-core (~> 3, >= 3.119.0)
|
||||
aws-sdk-amplify (1.32.0)
|
||||
aws-sdk-core (~> 3, >= 3.120.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-apigateway (1.78.0)
|
||||
aws-sdk-core (~> 3, >= 3.127.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-apigatewayv2 (1.42.0)
|
||||
aws-sdk-core (~> 3, >= 3.127.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-applicationautoscaling (1.51.0)
|
||||
aws-sdk-core (~> 3, >= 3.112.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-athena (1.40.0)
|
||||
aws-sdk-core (~> 3, >= 3.119.0)
|
||||
aws-sdk-athena (1.55.0)
|
||||
aws-sdk-core (~> 3, >= 3.127.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-autoscaling (1.61.0)
|
||||
aws-sdk-autoscaling (1.63.0)
|
||||
aws-sdk-core (~> 3, >= 3.112.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-batch (1.47.0)
|
||||
aws-sdk-core (~> 3, >= 3.112.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-budgets (1.40.0)
|
||||
aws-sdk-core (~> 3, >= 3.119.0)
|
||||
aws-sdk-budgets (1.50.0)
|
||||
aws-sdk-core (~> 3, >= 3.127.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-cloudformation (1.55.0)
|
||||
aws-sdk-core (~> 3, >= 3.119.0)
|
||||
aws-sdk-cloudformation (1.70.0)
|
||||
aws-sdk-core (~> 3, >= 3.127.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-cloudfront (1.55.0)
|
||||
aws-sdk-core (~> 3, >= 3.119.0)
|
||||
aws-sdk-cloudfront (1.65.0)
|
||||
aws-sdk-core (~> 3, >= 3.127.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-cloudhsm (1.32.0)
|
||||
aws-sdk-core (~> 3, >= 3.119.0)
|
||||
aws-sdk-cloudhsm (1.39.0)
|
||||
aws-sdk-core (~> 3, >= 3.127.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-cloudhsmv2 (1.35.0)
|
||||
aws-sdk-core (~> 3, >= 3.119.0)
|
||||
aws-sdk-cloudhsmv2 (1.42.0)
|
||||
aws-sdk-core (~> 3, >= 3.127.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-cloudtrail (1.37.0)
|
||||
aws-sdk-core (~> 3, >= 3.119.0)
|
||||
aws-sdk-cloudtrail (1.49.0)
|
||||
aws-sdk-core (~> 3, >= 3.127.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-cloudwatch (1.54.0)
|
||||
aws-sdk-core (~> 3, >= 3.119.0)
|
||||
aws-sdk-cloudwatch (1.64.0)
|
||||
aws-sdk-core (~> 3, >= 3.127.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-cloudwatchevents (1.46.0)
|
||||
aws-sdk-core (~> 3, >= 3.112.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-cloudwatchlogs (1.44.0)
|
||||
aws-sdk-core (~> 3, >= 3.119.0)
|
||||
aws-sdk-cloudwatchlogs (1.53.0)
|
||||
aws-sdk-core (~> 3, >= 3.127.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-codecommit (1.44.0)
|
||||
aws-sdk-core (~> 3, >= 3.119.0)
|
||||
aws-sdk-codecommit (1.51.0)
|
||||
aws-sdk-core (~> 3, >= 3.127.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-codedeploy (1.42.0)
|
||||
aws-sdk-core (~> 3, >= 3.119.0)
|
||||
aws-sdk-codedeploy (1.49.0)
|
||||
aws-sdk-core (~> 3, >= 3.127.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-codepipeline (1.46.0)
|
||||
aws-sdk-core (~> 3, >= 3.119.0)
|
||||
aws-sdk-codepipeline (1.53.0)
|
||||
aws-sdk-core (~> 3, >= 3.127.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-cognitoidentity (1.31.0)
|
||||
aws-sdk-core (~> 3, >= 3.112.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-cognitoidentityprovider (1.51.0)
|
||||
aws-sdk-cognitoidentityprovider (1.53.0)
|
||||
aws-sdk-core (~> 3, >= 3.112.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-configservice (1.65.0)
|
||||
aws-sdk-core (~> 3, >= 3.119.0)
|
||||
aws-sdk-configservice (1.79.0)
|
||||
aws-sdk-core (~> 3, >= 3.127.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-core (3.119.1)
|
||||
aws-sdk-core (3.131.2)
|
||||
aws-eventstream (~> 1, >= 1.0.2)
|
||||
aws-partitions (~> 1, >= 1.239.0)
|
||||
aws-partitions (~> 1, >= 1.525.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
jmespath (~> 1.0)
|
||||
aws-sdk-costandusagereportservice (1.33.0)
|
||||
aws-sdk-core (~> 3, >= 3.119.0)
|
||||
jmespath (~> 1, >= 1.6.1)
|
||||
aws-sdk-costandusagereportservice (1.40.0)
|
||||
aws-sdk-core (~> 3, >= 3.127.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-databasemigrationservice (1.53.0)
|
||||
aws-sdk-core (~> 3, >= 3.112.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-dynamodb (1.62.0)
|
||||
aws-sdk-core (~> 3, >= 3.119.0)
|
||||
aws-sdk-dynamodb (1.75.0)
|
||||
aws-sdk-core (~> 3, >= 3.127.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-ec2 (1.260.0)
|
||||
aws-sdk-core (~> 3, >= 3.119.0)
|
||||
aws-sdk-ec2 (1.322.0)
|
||||
aws-sdk-core (~> 3, >= 3.127.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-ecr (1.44.0)
|
||||
aws-sdk-core (~> 3, >= 3.119.0)
|
||||
aws-sdk-ecr (1.56.0)
|
||||
aws-sdk-core (~> 3, >= 3.127.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-ecrpublic (1.5.0)
|
||||
aws-sdk-core (~> 3, >= 3.119.0)
|
||||
aws-sdk-ecrpublic (1.12.0)
|
||||
aws-sdk-core (~> 3, >= 3.127.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-ecs (1.84.0)
|
||||
aws-sdk-core (~> 3, >= 3.119.0)
|
||||
aws-sdk-ecs (1.100.0)
|
||||
aws-sdk-core (~> 3, >= 3.127.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-efs (1.42.0)
|
||||
aws-sdk-core (~> 3, >= 3.119.0)
|
||||
aws-sdk-efs (1.54.0)
|
||||
aws-sdk-core (~> 3, >= 3.127.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-eks (1.61.0)
|
||||
aws-sdk-core (~> 3, >= 3.119.0)
|
||||
aws-sdk-eks (1.75.0)
|
||||
aws-sdk-core (~> 3, >= 3.127.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-elasticache (1.60.0)
|
||||
aws-sdk-core (~> 3, >= 3.119.0)
|
||||
aws-sdk-elasticache (1.78.0)
|
||||
aws-sdk-core (~> 3, >= 3.127.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-elasticbeanstalk (1.44.0)
|
||||
aws-sdk-core (~> 3, >= 3.119.0)
|
||||
aws-sdk-elasticbeanstalk (1.51.0)
|
||||
aws-sdk-core (~> 3, >= 3.127.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-elasticloadbalancing (1.33.0)
|
||||
aws-sdk-core (~> 3, >= 3.119.0)
|
||||
aws-sdk-elasticloadbalancing (1.40.0)
|
||||
aws-sdk-core (~> 3, >= 3.127.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-elasticloadbalancingv2 (1.66.0)
|
||||
aws-sdk-core (~> 3, >= 3.119.0)
|
||||
aws-sdk-elasticloadbalancingv2 (1.78.0)
|
||||
aws-sdk-core (~> 3, >= 3.127.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-elasticsearchservice (1.54.0)
|
||||
aws-sdk-core (~> 3, >= 3.119.0)
|
||||
aws-sdk-elasticsearchservice (1.65.0)
|
||||
aws-sdk-core (~> 3, >= 3.127.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-emr (1.53.0)
|
||||
aws-sdk-core (~> 3, >= 3.121.2)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-eventbridge (1.24.0)
|
||||
aws-sdk-core (~> 3, >= 3.112.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-firehose (1.39.0)
|
||||
aws-sdk-core (~> 3, >= 3.119.0)
|
||||
aws-sdk-firehose (1.48.0)
|
||||
aws-sdk-core (~> 3, >= 3.127.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-glue (1.87.0)
|
||||
aws-sdk-glue (1.88.0)
|
||||
aws-sdk-core (~> 3, >= 3.112.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-guardduty (1.47.0)
|
||||
aws-sdk-core (~> 3, >= 3.119.0)
|
||||
aws-sdk-guardduty (1.58.0)
|
||||
aws-sdk-core (~> 3, >= 3.127.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-iam (1.59.0)
|
||||
aws-sdk-core (~> 3, >= 3.119.0)
|
||||
aws-sdk-iam (1.69.0)
|
||||
aws-sdk-core (~> 3, >= 3.127.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-kafka (1.38.0)
|
||||
aws-sdk-core (~> 3, >= 3.119.0)
|
||||
aws-sdk-kafka (1.50.0)
|
||||
aws-sdk-core (~> 3, >= 3.127.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-kinesis (1.34.0)
|
||||
aws-sdk-core (~> 3, >= 3.119.0)
|
||||
aws-sdk-kinesis (1.41.0)
|
||||
aws-sdk-core (~> 3, >= 3.127.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-kms (1.46.0)
|
||||
aws-sdk-core (~> 3, >= 3.119.0)
|
||||
aws-sdk-kms (1.57.0)
|
||||
aws-sdk-core (~> 3, >= 3.127.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-lambda (1.67.0)
|
||||
aws-sdk-core (~> 3, >= 3.119.0)
|
||||
aws-sdk-lambda (1.84.0)
|
||||
aws-sdk-core (~> 3, >= 3.127.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-mq (1.40.0)
|
||||
aws-sdk-core (~> 3, >= 3.120.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-networkfirewall (1.17.0)
|
||||
aws-sdk-core (~> 3, >= 3.127.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-networkmanager (1.24.0)
|
||||
aws-sdk-core (~> 3, >= 3.127.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-organizations (1.59.0)
|
||||
aws-sdk-core (~> 3, >= 3.112.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-ram (1.25.0)
|
||||
aws-sdk-ram (1.26.0)
|
||||
aws-sdk-core (~> 3, >= 3.112.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-rds (1.125.0)
|
||||
aws-sdk-core (~> 3, >= 3.119.0)
|
||||
aws-sdk-rds (1.148.0)
|
||||
aws-sdk-core (~> 3, >= 3.127.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-redshift (1.68.0)
|
||||
aws-sdk-core (~> 3, >= 3.119.0)
|
||||
aws-sdk-redshift (1.84.0)
|
||||
aws-sdk-core (~> 3, >= 3.127.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-route53 (1.54.0)
|
||||
aws-sdk-core (~> 3, >= 3.119.0)
|
||||
aws-sdk-route53 (1.63.0)
|
||||
aws-sdk-core (~> 3, >= 3.127.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-route53domains (1.32.0)
|
||||
aws-sdk-core (~> 3, >= 3.119.0)
|
||||
aws-sdk-route53domains (1.40.0)
|
||||
aws-sdk-core (~> 3, >= 3.127.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-route53resolver (1.29.0)
|
||||
aws-sdk-core (~> 3, >= 3.119.0)
|
||||
aws-sdk-route53resolver (1.37.0)
|
||||
aws-sdk-core (~> 3, >= 3.127.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-s3 (1.100.0)
|
||||
aws-sdk-core (~> 3, >= 3.119.0)
|
||||
aws-sdk-s3 (1.114.0)
|
||||
aws-sdk-core (~> 3, >= 3.127.0)
|
||||
aws-sdk-kms (~> 1)
|
||||
aws-sigv4 (~> 1.4)
|
||||
aws-sdk-s3control (1.43.0)
|
||||
aws-sdk-core (~> 3, >= 3.122.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-secretsmanager (1.46.0)
|
||||
aws-sdk-core (~> 3, >= 3.112.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-securityhub (1.50.0)
|
||||
aws-sdk-core (~> 3, >= 3.119.0)
|
||||
aws-sdk-securityhub (1.67.0)
|
||||
aws-sdk-core (~> 3, >= 3.127.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-servicecatalog (1.59.0)
|
||||
aws-sdk-servicecatalog (1.60.0)
|
||||
aws-sdk-core (~> 3, >= 3.112.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-ses (1.40.0)
|
||||
aws-sdk-core (~> 3, >= 3.119.0)
|
||||
aws-sdk-ses (1.41.0)
|
||||
aws-sdk-core (~> 3, >= 3.120.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-shield (1.40.0)
|
||||
aws-sdk-core (~> 3, >= 3.119.0)
|
||||
aws-sdk-shield (1.48.0)
|
||||
aws-sdk-core (~> 3, >= 3.127.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-sms (1.31.0)
|
||||
aws-sdk-core (~> 3, >= 3.119.0)
|
||||
aws-sdk-signer (1.32.0)
|
||||
aws-sdk-core (~> 3, >= 3.120.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-sns (1.44.0)
|
||||
aws-sdk-core (~> 3, >= 3.119.0)
|
||||
aws-sdk-simpledb (1.29.0)
|
||||
aws-sdk-core (~> 3, >= 3.120.0)
|
||||
aws-sigv2 (~> 1.0)
|
||||
aws-sdk-sms (1.40.0)
|
||||
aws-sdk-core (~> 3, >= 3.127.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-sqs (1.42.0)
|
||||
aws-sdk-core (~> 3, >= 3.119.0)
|
||||
aws-sdk-sns (1.53.0)
|
||||
aws-sdk-core (~> 3, >= 3.127.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-ssm (1.116.0)
|
||||
aws-sdk-core (~> 3, >= 3.119.0)
|
||||
aws-sdk-sqs (1.51.1)
|
||||
aws-sdk-core (~> 3, >= 3.127.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-ssm (1.137.0)
|
||||
aws-sdk-core (~> 3, >= 3.127.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-states (1.39.0)
|
||||
aws-sdk-core (~> 3, >= 3.112.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-transfer (1.32.0)
|
||||
aws-sdk-synthetics (1.19.0)
|
||||
aws-sdk-core (~> 3, >= 3.121.2)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-transfer (1.34.0)
|
||||
aws-sdk-core (~> 3, >= 3.112.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sigv4 (1.2.4)
|
||||
aws-sdk-waf (1.43.0)
|
||||
aws-sdk-core (~> 3, >= 3.122.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sigv2 (1.1.0)
|
||||
aws-sigv4 (1.5.0)
|
||||
aws-eventstream (~> 1, >= 1.0.2)
|
||||
azure_graph_rbac (0.17.2)
|
||||
ms_rest_azure (~> 0.12.0)
|
||||
|
@ -264,11 +301,11 @@ GEM
|
|||
azure_mgmt_storage (0.23.0)
|
||||
ms_rest_azure (~> 0.12.0)
|
||||
bcrypt_pbkdf (1.1.0)
|
||||
bson (4.12.1)
|
||||
bson (4.15.0)
|
||||
builder (3.2.4)
|
||||
chef-config (17.4.38)
|
||||
chef-config (17.10.0)
|
||||
addressable
|
||||
chef-utils (= 17.4.38)
|
||||
chef-utils (= 17.10.0)
|
||||
fuzzyurl
|
||||
mixlib-config (>= 2.2.12, < 4.0)
|
||||
mixlib-shellout (>= 2.0, < 4.0)
|
||||
|
@ -276,20 +313,22 @@ GEM
|
|||
chef-telemetry (1.1.1)
|
||||
chef-config
|
||||
concurrent-ruby (~> 1.0)
|
||||
chef-utils (17.4.38)
|
||||
chef-utils (17.10.0)
|
||||
concurrent-ruby
|
||||
coderay (1.1.3)
|
||||
concurrent-ruby (1.1.9)
|
||||
concurrent-ruby (1.1.10)
|
||||
cookstyle (7.32.1)
|
||||
rubocop (= 1.25.1)
|
||||
declarative (0.0.20)
|
||||
diff-lcs (1.4.4)
|
||||
diff-lcs (1.5.0)
|
||||
docker-api (2.2.0)
|
||||
excon (>= 0.47.0)
|
||||
multi_json
|
||||
domain_name (0.5.20190701)
|
||||
unf (>= 0.0.5, < 1.0.0)
|
||||
ed25519 (1.2.4)
|
||||
ed25519 (1.3.0)
|
||||
erubi (1.10.0)
|
||||
excon (0.85.0)
|
||||
excon (0.92.3)
|
||||
faraday (1.4.3)
|
||||
faraday-em_http (~> 1.0)
|
||||
faraday-em_synchrony (~> 1.0)
|
||||
|
@ -308,7 +347,7 @@ GEM
|
|||
faraday-net_http_persistent (1.2.0)
|
||||
faraday_middleware (1.0.0)
|
||||
faraday (~> 1.0)
|
||||
ffi (1.15.3)
|
||||
ffi (1.15.5)
|
||||
fuzzyurl (0.9.0)
|
||||
google-api-client (0.52.0)
|
||||
addressable (~> 2.5, >= 2.5.1)
|
||||
|
@ -328,26 +367,28 @@ GEM
|
|||
signet (~> 0.14)
|
||||
gssapi (1.3.1)
|
||||
ffi (>= 1.0.1)
|
||||
gyoku (1.3.1)
|
||||
gyoku (1.4.0)
|
||||
builder (>= 2.1.2)
|
||||
rexml (~> 3.0)
|
||||
hashie (4.1.0)
|
||||
http-cookie (1.0.4)
|
||||
highline (2.0.3)
|
||||
http-cookie (1.0.5)
|
||||
domain_name (~> 0.5)
|
||||
httpclient (2.8.3)
|
||||
i18n (1.8.10)
|
||||
i18n (1.12.0)
|
||||
concurrent-ruby (~> 1.0)
|
||||
inifile (3.0.0)
|
||||
jmespath (1.4.0)
|
||||
json (2.5.1)
|
||||
jwt (2.2.3)
|
||||
kitchen-inspec (2.5.0)
|
||||
jmespath (1.6.1)
|
||||
json (2.6.2)
|
||||
jwt (2.4.1)
|
||||
kitchen-inspec (2.6.1)
|
||||
hashie (>= 3.4, <= 5.0)
|
||||
inspec (>= 2.2.64, < 5.0)
|
||||
inspec (>= 2.2.64, < 7.0)
|
||||
test-kitchen (>= 2.7, < 4)
|
||||
kitchen-salt (0.6.3)
|
||||
kitchen-salt (0.7.2)
|
||||
hashie (>= 3.5)
|
||||
test-kitchen (>= 1.4)
|
||||
kitchen-vagrant (1.10.0)
|
||||
kitchen-vagrant (1.12.0)
|
||||
test-kitchen (>= 1.4, < 4)
|
||||
license-acceptance (2.1.13)
|
||||
pastel (~> 0.7)
|
||||
|
@ -355,21 +396,21 @@ GEM
|
|||
tty-box (~> 0.6)
|
||||
tty-prompt (~> 0.20)
|
||||
little-plugger (1.1.4)
|
||||
logging (2.3.0)
|
||||
logging (2.3.1)
|
||||
little-plugger (~> 1.1)
|
||||
multi_json (~> 1.14)
|
||||
memoist (0.16.2)
|
||||
method_source (1.0.0)
|
||||
mini_mime (1.1.1)
|
||||
minitest (5.14.4)
|
||||
mixlib-config (3.0.9)
|
||||
mini_mime (1.1.2)
|
||||
minitest (5.16.2)
|
||||
mixlib-config (3.0.27)
|
||||
tomlrb
|
||||
mixlib-install (3.12.16)
|
||||
mixlib-install (3.12.19)
|
||||
mixlib-shellout
|
||||
mixlib-versioning
|
||||
thor
|
||||
mixlib-log (3.0.9)
|
||||
mixlib-shellout (3.2.5)
|
||||
mixlib-shellout (3.2.7)
|
||||
chef-utils
|
||||
mixlib-versioning (1.2.12)
|
||||
mongo (2.13.2)
|
||||
|
@ -384,51 +425,72 @@ GEM
|
|||
faraday-cookie_jar (~> 0.0.6)
|
||||
ms_rest (~> 0.7.6)
|
||||
multi_json (1.15.0)
|
||||
multipart-post (2.1.1)
|
||||
multipart-post (2.2.3)
|
||||
net-scp (3.0.0)
|
||||
net-ssh (>= 2.6.5, < 7.0.0)
|
||||
net-ssh (6.1.0)
|
||||
net-ssh-gateway (2.0.0)
|
||||
net-ssh (>= 4.0.0)
|
||||
nori (2.6.0)
|
||||
os (1.1.1)
|
||||
parallel (1.20.1)
|
||||
options (2.3.2)
|
||||
os (1.1.4)
|
||||
parallel (1.22.1)
|
||||
parser (3.1.2.0)
|
||||
ast (~> 2.4.1)
|
||||
parslet (1.8.2)
|
||||
pastel (0.8.0)
|
||||
tty-color (~> 0.5)
|
||||
progress_bar (1.3.3)
|
||||
highline (>= 1.6, < 3)
|
||||
options (~> 2.3.0)
|
||||
pry (0.14.1)
|
||||
coderay (~> 1.1)
|
||||
method_source (~> 1.0)
|
||||
public_suffix (4.0.6)
|
||||
representable (3.1.1)
|
||||
public_suffix (4.0.7)
|
||||
rainbow (3.1.1)
|
||||
rake (13.0.6)
|
||||
regexp_parser (2.5.0)
|
||||
representable (3.2.0)
|
||||
declarative (< 0.1.0)
|
||||
trailblazer-option (>= 0.1.1, < 0.2.0)
|
||||
uber (< 0.2.0)
|
||||
retriable (3.1.2)
|
||||
rexml (3.2.5)
|
||||
rspec (3.10.0)
|
||||
rspec-core (~> 3.10.0)
|
||||
rspec-expectations (~> 3.10.0)
|
||||
rspec-mocks (~> 3.10.0)
|
||||
rspec-core (3.10.1)
|
||||
rspec-support (~> 3.10.0)
|
||||
rspec-expectations (3.10.1)
|
||||
rspec (3.11.0)
|
||||
rspec-core (~> 3.11.0)
|
||||
rspec-expectations (~> 3.11.0)
|
||||
rspec-mocks (~> 3.11.0)
|
||||
rspec-core (3.11.0)
|
||||
rspec-support (~> 3.11.0)
|
||||
rspec-expectations (3.11.0)
|
||||
diff-lcs (>= 1.2.0, < 2.0)
|
||||
rspec-support (~> 3.10.0)
|
||||
rspec-support (~> 3.11.0)
|
||||
rspec-its (1.3.0)
|
||||
rspec-core (>= 3.0.0)
|
||||
rspec-expectations (>= 3.0.0)
|
||||
rspec-mocks (3.10.2)
|
||||
rspec-mocks (3.11.1)
|
||||
diff-lcs (>= 1.2.0, < 2.0)
|
||||
rspec-support (~> 3.10.0)
|
||||
rspec-support (3.10.2)
|
||||
rspec-support (~> 3.11.0)
|
||||
rspec-support (3.11.0)
|
||||
rubocop (1.25.1)
|
||||
parallel (~> 1.10)
|
||||
parser (>= 3.1.0.0)
|
||||
rainbow (>= 2.2.2, < 4.0)
|
||||
regexp_parser (>= 1.8, < 3.0)
|
||||
rexml
|
||||
rubocop-ast (>= 1.15.1, < 2.0)
|
||||
ruby-progressbar (~> 1.7)
|
||||
unicode-display_width (>= 1.4.0, < 3.0)
|
||||
rubocop-ast (1.19.1)
|
||||
parser (>= 3.1.1.0)
|
||||
ruby-progressbar (1.11.0)
|
||||
ruby2_keywords (0.0.5)
|
||||
rubyntlm (0.6.3)
|
||||
rubyzip (2.3.2)
|
||||
semverse (3.0.0)
|
||||
signet (0.15.0)
|
||||
addressable (~> 2.3)
|
||||
faraday (>= 0.17.3, < 2.0)
|
||||
semverse (3.0.2)
|
||||
signet (0.17.0)
|
||||
addressable (~> 2.8)
|
||||
faraday (>= 0.17.5, < 3.a)
|
||||
jwt (>= 1.5, < 3.0)
|
||||
multi_json (~> 1.10)
|
||||
sslshake (1.3.1)
|
||||
|
@ -437,7 +499,7 @@ GEM
|
|||
unicode-display_width (>= 1.5, < 3.0)
|
||||
unicode_utils (~> 1.4)
|
||||
strings-ansi (0.2.0)
|
||||
test-kitchen (3.0.0)
|
||||
test-kitchen (3.3.1)
|
||||
bcrypt_pbkdf (~> 1.0)
|
||||
chef-utils (>= 16.4.35)
|
||||
ed25519 (~> 1.2)
|
||||
|
@ -451,11 +513,11 @@ GEM
|
|||
winrm (~> 2.0)
|
||||
winrm-elevated (~> 1.0)
|
||||
winrm-fs (~> 1.1)
|
||||
thor (1.1.0)
|
||||
thor (1.2.1)
|
||||
timeliness (0.3.10)
|
||||
tomlrb (1.3.0)
|
||||
trailblazer-option (0.1.1)
|
||||
train (3.8.1)
|
||||
trailblazer-option (0.1.2)
|
||||
train (3.10.1)
|
||||
activesupport (>= 6.0.3.1)
|
||||
azure_graph_rbac (~> 0.16)
|
||||
azure_mgmt_key_vault (~> 0.17)
|
||||
|
@ -466,14 +528,16 @@ GEM
|
|||
google-api-client (>= 0.23.9, <= 0.52.0)
|
||||
googleauth (>= 0.6.6, <= 0.14.0)
|
||||
inifile (~> 3.0)
|
||||
train-core (= 3.8.1)
|
||||
train-core (= 3.10.1)
|
||||
train-winrm (~> 0.2)
|
||||
train-aws (0.2.8)
|
||||
train-aws (0.2.24)
|
||||
aws-sdk-alexaforbusiness (~> 1.0)
|
||||
aws-sdk-amplify (~> 1.32.0)
|
||||
aws-sdk-apigateway (~> 1.0)
|
||||
aws-sdk-apigatewayv2 (~> 1.0)
|
||||
aws-sdk-applicationautoscaling (>= 1.46, < 1.52)
|
||||
aws-sdk-athena (~> 1.0)
|
||||
aws-sdk-autoscaling (>= 1.22, < 1.62)
|
||||
aws-sdk-autoscaling (>= 1.22, < 1.64)
|
||||
aws-sdk-batch (>= 1.36, < 1.48)
|
||||
aws-sdk-budgets (~> 1.0)
|
||||
aws-sdk-cloudformation (~> 1.0)
|
||||
|
@ -488,7 +552,7 @@ GEM
|
|||
aws-sdk-codedeploy (~> 1.0)
|
||||
aws-sdk-codepipeline (~> 1.0)
|
||||
aws-sdk-cognitoidentity (>= 1.26, < 1.32)
|
||||
aws-sdk-cognitoidentityprovider (>= 1.46, < 1.52)
|
||||
aws-sdk-cognitoidentityprovider (>= 1.46, < 1.54)
|
||||
aws-sdk-configservice (~> 1.21)
|
||||
aws-sdk-core (~> 3.0)
|
||||
aws-sdk-costandusagereportservice (~> 1.6)
|
||||
|
@ -505,35 +569,44 @@ GEM
|
|||
aws-sdk-elasticloadbalancing (~> 1.8)
|
||||
aws-sdk-elasticloadbalancingv2 (~> 1.0)
|
||||
aws-sdk-elasticsearchservice (~> 1.0)
|
||||
aws-sdk-emr (~> 1.53.0)
|
||||
aws-sdk-eventbridge (~> 1.24.0)
|
||||
aws-sdk-firehose (~> 1.0)
|
||||
aws-sdk-glue (>= 1.71, < 1.88)
|
||||
aws-sdk-glue (>= 1.71, < 1.89)
|
||||
aws-sdk-guardduty (~> 1.31)
|
||||
aws-sdk-iam (~> 1.13)
|
||||
aws-sdk-kafka (~> 1.0)
|
||||
aws-sdk-kinesis (~> 1.0)
|
||||
aws-sdk-kms (~> 1.13)
|
||||
aws-sdk-lambda (~> 1.0)
|
||||
aws-sdk-mq (~> 1.40.0)
|
||||
aws-sdk-networkfirewall (>= 1.6.0)
|
||||
aws-sdk-networkmanager (>= 1.13.0)
|
||||
aws-sdk-organizations (>= 1.17, < 1.60)
|
||||
aws-sdk-ram (>= 1.21, < 1.26)
|
||||
aws-sdk-ram (>= 1.21, < 1.27)
|
||||
aws-sdk-rds (~> 1.43)
|
||||
aws-sdk-redshift (~> 1.0)
|
||||
aws-sdk-route53 (~> 1.0)
|
||||
aws-sdk-route53domains (~> 1.0)
|
||||
aws-sdk-route53resolver (~> 1.0)
|
||||
aws-sdk-s3 (~> 1.30)
|
||||
aws-sdk-s3control (~> 1.43.0)
|
||||
aws-sdk-secretsmanager (>= 1.42, < 1.47)
|
||||
aws-sdk-securityhub (~> 1.0)
|
||||
aws-sdk-servicecatalog (>= 1.48, < 1.60)
|
||||
aws-sdk-ses (~> 1.0)
|
||||
aws-sdk-servicecatalog (>= 1.48, < 1.61)
|
||||
aws-sdk-ses (~> 1.41.0)
|
||||
aws-sdk-shield (~> 1.30)
|
||||
aws-sdk-signer (~> 1.32.0)
|
||||
aws-sdk-simpledb (~> 1.29.0)
|
||||
aws-sdk-sms (~> 1.0)
|
||||
aws-sdk-sns (~> 1.9)
|
||||
aws-sdk-sqs (~> 1.10)
|
||||
aws-sdk-ssm (~> 1.0)
|
||||
aws-sdk-states (>= 1.35, < 1.40)
|
||||
aws-sdk-transfer (>= 1.26, < 1.33)
|
||||
train-core (3.8.1)
|
||||
aws-sdk-synthetics (~> 1.19.0)
|
||||
aws-sdk-transfer (>= 1.26, < 1.35)
|
||||
aws-sdk-waf (~> 1.43.0)
|
||||
train-core (3.10.1)
|
||||
addressable (~> 2.5)
|
||||
ffi (!= 1.13.0)
|
||||
json (>= 1.8, < 3.0)
|
||||
|
@ -541,7 +614,7 @@ GEM
|
|||
net-scp (>= 1.2, < 4.0)
|
||||
net-ssh (>= 2.9, < 7.0)
|
||||
train-habitat (0.2.22)
|
||||
train-winrm (0.2.12)
|
||||
train-winrm (0.2.13)
|
||||
winrm (>= 2.3.6, < 3.0)
|
||||
winrm-elevated (~> 1.2.2)
|
||||
winrm-fs (~> 1.0)
|
||||
|
@ -568,8 +641,8 @@ GEM
|
|||
uber (0.1.0)
|
||||
unf (0.1.4)
|
||||
unf_ext
|
||||
unf_ext (0.0.7.7)
|
||||
unicode-display_width (2.0.0)
|
||||
unf_ext (0.0.8.2)
|
||||
unicode-display_width (2.2.0)
|
||||
unicode_utils (1.4.0)
|
||||
winrm (2.3.6)
|
||||
builder (>= 2.1.2)
|
||||
|
@ -590,7 +663,6 @@ GEM
|
|||
rubyzip (~> 2.0)
|
||||
winrm (~> 2.0)
|
||||
wisper (2.0.1)
|
||||
zeitwerk (2.4.2)
|
||||
|
||||
PLATFORMS
|
||||
ruby
|
||||
|
@ -599,7 +671,7 @@ DEPENDENCIES
|
|||
inspec!
|
||||
kitchen-docker!
|
||||
kitchen-inspec (>= 2.5.0)
|
||||
kitchen-salt (>= 0.6.3)
|
||||
kitchen-salt (>= 0.7.2)
|
||||
kitchen-vagrant
|
||||
|
||||
BUNDLED WITH
|
||||
|
|
|
@ -19,8 +19,8 @@ if File.file?(bundle_binstub)
|
|||
load(bundle_binstub)
|
||||
else
|
||||
abort(
|
||||
'Your `bin/bundle` was not generated by Bundler, '\
|
||||
'so this binstub cannot run. Replace `bin/bundle` by running '\
|
||||
'Your `bin/bundle` was not generated by Bundler, ' \
|
||||
'so this binstub cannot run. Replace `bin/bundle` by running ' \
|
||||
'`bundle binstubs bundler --force`, then run this command again.'
|
||||
)
|
||||
end
|
||||
|
|
|
@ -15,13 +15,13 @@ This list is sorted by the number of commits per contributor in *descending* ord
|
|||
- Contributions
|
||||
* - :raw-html-m2r:`<img class='float-left rounded-1' src='https://avatars.githubusercontent.com/u/10231489?v=4' width='36' height='36' alt='@myii'>`
|
||||
- `@myii <https://github.com/myii>`_
|
||||
- 103
|
||||
- 152
|
||||
* - :raw-html-m2r:`<img class='float-left rounded-1' src='https://avatars.githubusercontent.com/u/242396?v=4' width='36' height='36' alt='@javierbertoli'>`
|
||||
- `@javierbertoli <https://github.com/javierbertoli>`_
|
||||
- 44
|
||||
* - :raw-html-m2r:`<img class='float-left rounded-1' src='https://avatars.githubusercontent.com/u/13322818?v=4' width='36' height='36' alt='@noelmcloughlin'>`
|
||||
- `@noelmcloughlin <https://github.com/noelmcloughlin>`_
|
||||
- 36
|
||||
- 38
|
||||
* - :raw-html-m2r:`<img class='float-left rounded-1' src='https://avatars.githubusercontent.com/u/1800660?v=4' width='36' height='36' alt='@aboe76'>`
|
||||
- `@aboe76 <https://github.com/aboe76>`_
|
||||
- 12
|
||||
|
@ -30,7 +30,7 @@ This list is sorted by the number of commits per contributor in *descending* ord
|
|||
- 10
|
||||
* - :raw-html-m2r:`<img class='float-left rounded-1' src='https://avatars.githubusercontent.com/u/4195158?v=4' width='36' height='36' alt='@dafyddj'>`
|
||||
- `@dafyddj <https://github.com/dafyddj>`_
|
||||
- 3
|
||||
- 4
|
||||
* - :raw-html-m2r:`<img class='float-left rounded-1' src='https://avatars.githubusercontent.com/u/26920783?v=4' width='36' height='36' alt='@kartnico'>`
|
||||
- `@kartnico <https://github.com/kartnico>`_
|
||||
- 3
|
||||
|
@ -43,6 +43,9 @@ This list is sorted by the number of commits per contributor in *descending* ord
|
|||
* - :raw-html-m2r:`<img class='float-left rounded-1' src='https://avatars.githubusercontent.com/u/203204?v=4' width='36' height='36' alt='@abele'>`
|
||||
- `@abele <https://github.com/abele>`_
|
||||
- 1
|
||||
* - :raw-html-m2r:`<img class='float-left rounded-1' src='https://avatars.githubusercontent.com/u/83996323?v=4' width='36' height='36' alt='@mdschmitt'>`
|
||||
- `@mdschmitt <https://github.com/mdschmitt>`_
|
||||
- 1
|
||||
* - :raw-html-m2r:`<img class='float-left rounded-1' src='https://avatars.githubusercontent.com/u/36660054?v=4' width='36' height='36' alt='@ypid-geberit'>`
|
||||
- `@ypid-geberit <https://github.com/ypid-geberit>`_
|
||||
- 1
|
||||
|
@ -53,4 +56,4 @@ This list is sorted by the number of commits per contributor in *descending* ord
|
|||
|
||||
----
|
||||
|
||||
Auto-generated by a `forked version <https://github.com/myii/maintainer>`_ of `gaocegege/maintainer <https://github.com/gaocegege/maintainer>`_ on 2021-09-06.
|
||||
Auto-generated by a `forked version <https://github.com/myii/maintainer>`_ of `gaocegege/maintainer <https://github.com/gaocegege/maintainer>`_ on 2022-04-28.
|
||||
|
|
|
@ -2,6 +2,75 @@
|
|||
Changelog
|
||||
=========
|
||||
|
||||
`0.16.0 <https://github.com/saltstack-formulas/packages-formula/compare/v0.15.0...v0.16.0>`_ (2022-04-28)
|
||||
-------------------------------------------------------------------------------------------------------------
|
||||
|
||||
Continuous Integration
|
||||
^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
|
||||
* **kitchen+gitlab:** update for new pre-salted images [skip ci] (\ `6174656 <https://github.com/saltstack-formulas/packages-formula/commit/61746568cd83f9d9ccc81c393004928b03aec3af>`_\ )
|
||||
* update linters to latest versions [skip ci] (\ `7b3dfb3 <https://github.com/saltstack-formulas/packages-formula/commit/7b3dfb374fd09b1277349620cca95e5704cbc548>`_\ )
|
||||
* **example:** remove blockbox as example of raw (\ `#86 <https://github.com/saltstack-formulas/packages-formula/issues/86>`_\ ) (\ `5712cab <https://github.com/saltstack-formulas/packages-formula/commit/5712cab43ef64088dc95214b6c97bfca0ded4a37>`_\ )
|
||||
* **gemfile:** allow rubygems proxy to be provided as an env var [skip ci] (\ `7a53b83 <https://github.com/saltstack-formulas/packages-formula/commit/7a53b839993324a82e94511d85b85fe8c660a882>`_\ )
|
||||
* **kitchen+gitlab:** update for new pre-salted images [skip ci] (\ `c2210ab <https://github.com/saltstack-formulas/packages-formula/commit/c2210ab68a4bec5d08da47060644a66a6649b3ac>`_\ )
|
||||
|
||||
Features
|
||||
^^^^^^^^
|
||||
|
||||
|
||||
* **archive:** make resource name the target path (\ `#82 <https://github.com/saltstack-formulas/packages-formula/issues/82>`_\ ) (\ `9390741 <https://github.com/saltstack-formulas/packages-formula/commit/9390741d5c25a2915c93368d2100c74e7ebf335f>`_\ )
|
||||
|
||||
Tests
|
||||
^^^^^
|
||||
|
||||
|
||||
* **system:** add ``build_platform_codename`` [skip ci] (\ `fb6e67f <https://github.com/saltstack-formulas/packages-formula/commit/fb6e67f1eac5f8a68b008c7ede3bf8fb9b7cb7a0>`_\ )
|
||||
|
||||
`0.15.0 <https://github.com/saltstack-formulas/packages-formula/compare/v0.14.1...v0.15.0>`_ (2022-01-16)
|
||||
-------------------------------------------------------------------------------------------------------------
|
||||
|
||||
Continuous Integration
|
||||
^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
|
||||
* **kitchen:** remove ``branch`` for ``node-formula`` dependency (\ `e6d8065 <https://github.com/saltstack-formulas/packages-formula/commit/e6d80652bc4bd19d0ca3b5f54d73eeccc2effc20>`_\ )
|
||||
* **kitchen+ci:** update with ``3004`` pre-salted images/boxes [skip ci] (\ `85e8b8b <https://github.com/saltstack-formulas/packages-formula/commit/85e8b8b6597671943c79332078d0eec5cecc0b6c>`_\ )
|
||||
* **kitchen+ci:** update with latest CVE pre-salted images [skip ci] (\ `1df89bc <https://github.com/saltstack-formulas/packages-formula/commit/1df89bcba3439e2387494e909b6c1af7c7f02e60>`_\ )
|
||||
* **proxy:** replace deprecated Windows ``2016`` with ``2022`` [skip ci] (\ `769e1d6 <https://github.com/saltstack-formulas/packages-formula/commit/769e1d6555d9c4770230454f06149d12c12b7d8f>`_\ )
|
||||
* **proxy+windows:** fix setting up WinRM [skip ci] (\ `a8b6534 <https://github.com/saltstack-formulas/packages-formula/commit/a8b653431d94da9545c28af4b86215f4eac344e9>`_\ )
|
||||
* **windows:** use Salt version ``3004`` [skip ci] (\ `7c97573 <https://github.com/saltstack-formulas/packages-formula/commit/7c97573076d440b4c641322246789e1a414e740a>`_\ )
|
||||
|
||||
Features
|
||||
^^^^^^^^
|
||||
|
||||
|
||||
* **os*map:** add support for CentOS Stream 8 [skip ci] (\ `5594d16 <https://github.com/saltstack-formulas/packages-formula/commit/5594d164b6e2df2648fb6549bc17f7f0c446eac9>`_\ )
|
||||
|
||||
Tests
|
||||
^^^^^
|
||||
|
||||
|
||||
* **debian:** update ``node`` settings (\ `021a0b6 <https://github.com/saltstack-formulas/packages-formula/commit/021a0b6f86b6edadc8a65b1512b626f8bbaa5461>`_\ )
|
||||
* **debian:** use ``python3-pip`` (\ `79d3f7b <https://github.com/saltstack-formulas/packages-formula/commit/79d3f7b7ed82b8ca79194ef01fb6caf27f1f4eba>`_\ )
|
||||
* **pillar:** disable ``dxpy`` installation on Debian [skip ci] (\ `1f70007 <https://github.com/saltstack-formulas/packages-formula/commit/1f7000717c682f1086e6203d409e5d4c64717076>`_\ )
|
||||
|
||||
`0.14.1 <https://github.com/saltstack-formulas/packages-formula/compare/v0.14.0...v0.14.1>`_ (2021-10-02)
|
||||
-------------------------------------------------------------------------------------------------------------
|
||||
|
||||
Bug Fixes
|
||||
^^^^^^^^^
|
||||
|
||||
|
||||
* **rubocop:** fix violation [skip ci] (\ `901d706 <https://github.com/saltstack-formulas/packages-formula/commit/901d7069ce7f523c550a08ee2a5388f93641f4cd>`_\ )
|
||||
|
||||
Tests
|
||||
^^^^^
|
||||
|
||||
|
||||
* **_mapdata:** generate verification files (\ `96a1a03 <https://github.com/saltstack-formulas/packages-formula/commit/96a1a034c1e438c5695f4f03e9f79bcdf7ff9142>`_\ )
|
||||
* **map:** verify ``map.jinja`` dump using ``_mapdata`` state (\ `0fdcbd4 <https://github.com/saltstack-formulas/packages-formula/commit/0fdcbd428839d5459ed9e6503b7765a4bd320149>`_\ )
|
||||
|
||||
`0.14.0 <https://github.com/saltstack-formulas/packages-formula/compare/v0.13.1...v0.14.0>`_ (2021-09-06)
|
||||
-------------------------------------------------------------------------------------------------------------
|
||||
|
||||
|
|
|
@ -9,8 +9,8 @@ driver:
|
|||
gui: false
|
||||
ssh:
|
||||
shell: /bin/sh
|
||||
<% unless ENV['CI'] %>
|
||||
linked_clone: true
|
||||
<% unless ENV['CI'] %>
|
||||
synced_folders:
|
||||
- - '.kitchen/kitchen-vagrant/%{instance_name}/vagrant'
|
||||
- '/vagrant'
|
||||
|
|
|
@ -14,5 +14,5 @@ provisioner:
|
|||
salt_bootstrap_options: -pythonVersion 3
|
||||
|
||||
platforms:
|
||||
- name: windows-2022-latest-py3
|
||||
- name: windows-2019-latest-py3
|
||||
- name: windows-2016-latest-py3
|
||||
|
|
493
kitchen.yml
493
kitchen.yml
|
@ -44,6 +44,10 @@ platforms:
|
|||
- apt-get install --reinstall -y udev
|
||||
- apt-get install -y snapd
|
||||
run_command: /lib/systemd/systemd
|
||||
- name: ubuntu-2204-tiamat-py3
|
||||
driver:
|
||||
image: saltimages/salt-tiamat-py3:ubuntu-22.04
|
||||
run_command: /lib/systemd/systemd
|
||||
- name: ubuntu-2004-tiamat-py3
|
||||
driver:
|
||||
image: saltimages/salt-tiamat-py3:ubuntu-20.04
|
||||
|
@ -52,9 +56,9 @@ platforms:
|
|||
driver:
|
||||
image: saltimages/salt-tiamat-py3:ubuntu-18.04
|
||||
run_command: /lib/systemd/systemd
|
||||
- name: centos-8-tiamat-py3
|
||||
- name: centos-stream8-tiamat-py3
|
||||
driver:
|
||||
image: saltimages/salt-tiamat-py3:centos-8
|
||||
image: saltimages/salt-tiamat-py3:centos-stream8
|
||||
- name: centos-7-tiamat-py3
|
||||
driver:
|
||||
image: saltimages/salt-tiamat-py3:centos-7
|
||||
|
@ -99,6 +103,10 @@ platforms:
|
|||
- apt-get install --reinstall -y udev
|
||||
- apt-get install -y snapd
|
||||
run_command: /lib/systemd/systemd
|
||||
- name: ubuntu-2204-master-py3
|
||||
driver:
|
||||
image: saltimages/salt-master-py3:ubuntu-22.04
|
||||
run_command: /lib/systemd/systemd
|
||||
- name: ubuntu-2004-master-py3
|
||||
driver:
|
||||
image: saltimages/salt-master-py3:ubuntu-20.04
|
||||
|
@ -107,18 +115,18 @@ platforms:
|
|||
driver:
|
||||
image: saltimages/salt-master-py3:ubuntu-18.04
|
||||
run_command: /lib/systemd/systemd
|
||||
- name: centos-8-master-py3
|
||||
- name: centos-stream8-master-py3
|
||||
driver:
|
||||
image: saltimages/salt-master-py3:centos-8
|
||||
image: saltimages/salt-master-py3:centos-stream8
|
||||
- name: centos-7-master-py3
|
||||
driver:
|
||||
image: saltimages/salt-master-py3:centos-7
|
||||
- name: fedora-34-master-py3
|
||||
- name: fedora-36-master-py3
|
||||
driver:
|
||||
image: saltimages/salt-master-py3:fedora-34
|
||||
- name: fedora-33-master-py3
|
||||
image: saltimages/salt-master-py3:fedora-36
|
||||
- name: fedora-35-master-py3
|
||||
driver:
|
||||
image: saltimages/salt-master-py3:fedora-33
|
||||
image: saltimages/salt-master-py3:fedora-35
|
||||
- name: opensuse-leap-153-master-py3
|
||||
driver:
|
||||
image: saltimages/salt-master-py3:opensuse-leap-15.3
|
||||
|
@ -126,13 +134,6 @@ platforms:
|
|||
# => SCP did not finish successfully (255): (Net::SCP::Error)
|
||||
transport:
|
||||
max_ssh_sessions: 1
|
||||
- name: opensuse-leap-152-master-py3
|
||||
driver:
|
||||
image: saltimages/salt-master-py3:opensuse-leap-15.2
|
||||
# Workaround to avoid intermittent failures on `opensuse-leap-15.2`:
|
||||
# => SCP did not finish successfully (255): (Net::SCP::Error)
|
||||
transport:
|
||||
max_ssh_sessions: 1
|
||||
- name: opensuse-tmbl-latest-master-py3
|
||||
driver:
|
||||
image: saltimages/salt-master-py3:opensuse-tumbleweed-latest
|
||||
|
@ -166,337 +167,140 @@ platforms:
|
|||
driver:
|
||||
image: saltimages/salt-master-py3:rockylinux-8
|
||||
|
||||
## SALT `3003.2`
|
||||
- name: debian-11-3003-2-py3
|
||||
## SALT `3004.1`
|
||||
- name: debian-11-3004-1-py3
|
||||
driver:
|
||||
image: saltimages/salt-3003.2-py3:debian-11
|
||||
image: saltimages/salt-3004.1-py3:debian-11
|
||||
provision_command:
|
||||
- apt-get update
|
||||
- apt-get install --reinstall -y udev
|
||||
- apt-get install -y snapd
|
||||
run_command: /lib/systemd/systemd
|
||||
- name: debian-10-3003-2-py3
|
||||
- name: debian-10-3004-1-py3
|
||||
driver:
|
||||
image: saltimages/salt-3003.2-py3:debian-10
|
||||
image: saltimages/salt-3004.1-py3:debian-10
|
||||
provision_command:
|
||||
- apt-get update
|
||||
- apt-get install --reinstall -y udev
|
||||
- apt-get install -y snapd
|
||||
run_command: /lib/systemd/systemd
|
||||
- name: debian-9-3003-2-py3
|
||||
- name: debian-9-3004-1-py3
|
||||
driver:
|
||||
image: saltimages/salt-3003.2-py3:debian-9
|
||||
image: saltimages/salt-3004.1-py3:debian-9
|
||||
provision_command:
|
||||
- apt-get update
|
||||
- apt-get install --reinstall -y udev
|
||||
- apt-get install -y snapd
|
||||
run_command: /lib/systemd/systemd
|
||||
- name: ubuntu-2004-3003-2-py3
|
||||
- name: ubuntu-2204-3004-1-py3
|
||||
driver:
|
||||
image: saltimages/salt-3003.2-py3:ubuntu-20.04
|
||||
image: saltimages/salt-3004.1-py3:ubuntu-22.04
|
||||
run_command: /lib/systemd/systemd
|
||||
- name: ubuntu-1804-3003-2-py3
|
||||
- name: ubuntu-2004-3004-1-py3
|
||||
driver:
|
||||
image: saltimages/salt-3003.2-py3:ubuntu-18.04
|
||||
image: saltimages/salt-3004.1-py3:ubuntu-20.04
|
||||
run_command: /lib/systemd/systemd
|
||||
- name: centos-8-3003-2-py3
|
||||
- name: ubuntu-1804-3004-1-py3
|
||||
driver:
|
||||
image: saltimages/salt-3003.2-py3:centos-8
|
||||
- name: centos-7-3003-2-py3
|
||||
image: saltimages/salt-3004.1-py3:ubuntu-18.04
|
||||
run_command: /lib/systemd/systemd
|
||||
- name: centos-stream8-3004-1-py3
|
||||
driver:
|
||||
image: saltimages/salt-3003.2-py3:centos-7
|
||||
- name: fedora-34-3003-2-py3
|
||||
image: saltimages/salt-3004.1-py3:centos-stream8
|
||||
- name: centos-7-3004-1-py3
|
||||
driver:
|
||||
image: saltimages/salt-3003.2-py3:fedora-34
|
||||
- name: fedora-33-3003-2-py3
|
||||
image: saltimages/salt-3004.1-py3:centos-7
|
||||
- name: fedora-36-3004-1-py3
|
||||
driver:
|
||||
image: saltimages/salt-3003.2-py3:fedora-33
|
||||
- name: opensuse-leap-153-3003-2-py3
|
||||
image: saltimages/salt-3004.1-py3:fedora-36
|
||||
- name: fedora-35-3004-1-py3
|
||||
driver:
|
||||
image: saltimages/salt-3003.2-py3:opensuse-leap-15.3
|
||||
image: saltimages/salt-3004.1-py3:fedora-35
|
||||
- name: amazonlinux-2-3004-1-py3
|
||||
driver:
|
||||
image: saltimages/salt-3004.1-py3:amazonlinux-2
|
||||
- name: oraclelinux-8-3004-1-py3
|
||||
driver:
|
||||
image: saltimages/salt-3004.1-py3:oraclelinux-8
|
||||
- name: oraclelinux-7-3004-1-py3
|
||||
driver:
|
||||
image: saltimages/salt-3004.1-py3:oraclelinux-7
|
||||
- name: arch-base-latest-3004-1-py3
|
||||
driver:
|
||||
image: saltimages/salt-3004.1-py3:arch-base-latest
|
||||
- name: gentoo-stage3-latest-3004-1-py3
|
||||
driver:
|
||||
image: saltimages/salt-3004.1-py3:gentoo-stage3-latest
|
||||
run_command: /sbin/init
|
||||
- name: gentoo-stage3-systemd-3004-1-py3
|
||||
driver:
|
||||
image: saltimages/salt-3004.1-py3:gentoo-stage3-systemd
|
||||
- name: almalinux-8-3004-1-py3
|
||||
driver:
|
||||
image: saltimages/salt-3004.1-py3:almalinux-8
|
||||
- name: rockylinux-8-3004-1-py3
|
||||
driver:
|
||||
image: saltimages/salt-3004.1-py3:rockylinux-8
|
||||
|
||||
## SALT `3004.0`
|
||||
- name: opensuse-leap-153-3004-0-py3
|
||||
driver:
|
||||
image: saltimages/salt-3004.0-py3:opensuse-leap-15.3
|
||||
# Workaround to avoid intermittent failures on `opensuse-leap-15.3`:
|
||||
# => SCP did not finish successfully (255): (Net::SCP::Error)
|
||||
transport:
|
||||
max_ssh_sessions: 1
|
||||
- name: opensuse-leap-152-3003-2-py3
|
||||
- name: opensuse-tmbl-latest-3004-0-py3
|
||||
driver:
|
||||
image: saltimages/salt-3003.2-py3:opensuse-leap-15.2
|
||||
# Workaround to avoid intermittent failures on `opensuse-leap-15.2`:
|
||||
# => SCP did not finish successfully (255): (Net::SCP::Error)
|
||||
transport:
|
||||
max_ssh_sessions: 1
|
||||
- name: opensuse-tmbl-latest-3003-2-py3
|
||||
driver:
|
||||
image: saltimages/salt-3003.2-py3:opensuse-tumbleweed-latest
|
||||
# Workaround to avoid intermittent failures on `opensuse-tumbleweed`:
|
||||
# => SCP did not finish successfully (255): (Net::SCP::Error)
|
||||
transport:
|
||||
max_ssh_sessions: 1
|
||||
- name: amazonlinux-2-3003-2-py3
|
||||
driver:
|
||||
image: saltimages/salt-3003.2-py3:amazonlinux-2
|
||||
- name: oraclelinux-8-3003-2-py3
|
||||
driver:
|
||||
image: saltimages/salt-3003.2-py3:oraclelinux-8
|
||||
- name: oraclelinux-7-3003-2-py3
|
||||
driver:
|
||||
image: saltimages/salt-3003.2-py3:oraclelinux-7
|
||||
- name: arch-base-latest-3003-2-py3
|
||||
driver:
|
||||
image: saltimages/salt-3003.2-py3:arch-base-latest
|
||||
- name: gentoo-stage3-latest-3003-2-py3
|
||||
driver:
|
||||
image: saltimages/salt-3003.2-py3:gentoo-stage3-latest
|
||||
run_command: /sbin/init
|
||||
- name: gentoo-stage3-systemd-3003-2-py3
|
||||
driver:
|
||||
image: saltimages/salt-3003.2-py3:gentoo-stage3-systemd
|
||||
- name: almalinux-8-3003-2-py3
|
||||
driver:
|
||||
image: saltimages/salt-3003.2-py3:almalinux-8
|
||||
|
||||
## SALT `3003.1`
|
||||
- name: arch-base-latest-3003-1-py3
|
||||
driver:
|
||||
image: saltimages/salt-3003.1-py3:arch-base-latest
|
||||
- name: gentoo-stage3-latest-3003-1-py3
|
||||
driver:
|
||||
image: saltimages/salt-3003.1-py3:gentoo-stage3-latest
|
||||
run_command: /sbin/init
|
||||
- name: gentoo-stage3-systemd-3003-1-py3
|
||||
driver:
|
||||
image: saltimages/salt-3003.1-py3:gentoo-stage3-systemd
|
||||
|
||||
## SALT `3002.6`
|
||||
- name: debian-11-3002-6-py3
|
||||
driver:
|
||||
image: saltimages/salt-3002.6-py3:debian-11
|
||||
provision_command:
|
||||
- apt-get update
|
||||
- apt-get install --reinstall -y udev
|
||||
- apt-get install -y snapd
|
||||
run_command: /lib/systemd/systemd
|
||||
- name: debian-10-3002-6-py3
|
||||
driver:
|
||||
image: saltimages/salt-3002.6-py3:debian-10
|
||||
provision_command:
|
||||
- apt-get update
|
||||
- apt-get install --reinstall -y udev
|
||||
- apt-get install -y snapd
|
||||
run_command: /lib/systemd/systemd
|
||||
- name: debian-9-3002-6-py3
|
||||
driver:
|
||||
image: saltimages/salt-3002.6-py3:debian-9
|
||||
provision_command:
|
||||
- apt-get update
|
||||
- apt-get install --reinstall -y udev
|
||||
- apt-get install -y snapd
|
||||
run_command: /lib/systemd/systemd
|
||||
- name: ubuntu-2004-3002-6-py3
|
||||
driver:
|
||||
image: saltimages/salt-3002.6-py3:ubuntu-20.04
|
||||
run_command: /lib/systemd/systemd
|
||||
- name: ubuntu-1804-3002-6-py3
|
||||
driver:
|
||||
image: saltimages/salt-3002.6-py3:ubuntu-18.04
|
||||
run_command: /lib/systemd/systemd
|
||||
- name: centos-8-3002-6-py3
|
||||
driver:
|
||||
image: saltimages/salt-3002.6-py3:centos-8
|
||||
- name: centos-7-3002-6-py3
|
||||
driver:
|
||||
image: saltimages/salt-3002.6-py3:centos-7
|
||||
- name: fedora-34-3002-6-py3
|
||||
driver:
|
||||
image: saltimages/salt-3002.6-py3:fedora-34
|
||||
- name: fedora-33-3002-6-py3
|
||||
driver:
|
||||
image: saltimages/salt-3002.6-py3:fedora-33
|
||||
- name: amazonlinux-2-3002-6-py3
|
||||
driver:
|
||||
image: saltimages/salt-3002.6-py3:amazonlinux-2
|
||||
- name: oraclelinux-8-3002-6-py3
|
||||
driver:
|
||||
image: saltimages/salt-3002.6-py3:oraclelinux-8
|
||||
- name: oraclelinux-7-3002-6-py3
|
||||
driver:
|
||||
image: saltimages/salt-3002.6-py3:oraclelinux-7
|
||||
- name: arch-base-latest-3002-6-py3
|
||||
driver:
|
||||
image: saltimages/salt-3002.6-py3:arch-base-latest
|
||||
- name: gentoo-stage3-latest-3002-6-py3
|
||||
driver:
|
||||
image: saltimages/salt-3002.6-py3:gentoo-stage3-latest
|
||||
run_command: /sbin/init
|
||||
- name: gentoo-stage3-systemd-3002-6-py3
|
||||
driver:
|
||||
image: saltimages/salt-3002.6-py3:gentoo-stage3-systemd
|
||||
|
||||
## SALT `3002.2`
|
||||
- name: opensuse-leap-153-3002-2-py3
|
||||
driver:
|
||||
image: saltimages/salt-3002.2-py3:opensuse-leap-15.3
|
||||
# Workaround to avoid intermittent failures on `opensuse-leap-15.3`:
|
||||
# => SCP did not finish successfully (255): (Net::SCP::Error)
|
||||
transport:
|
||||
max_ssh_sessions: 1
|
||||
- name: opensuse-leap-152-3002-2-py3
|
||||
driver:
|
||||
image: saltimages/salt-3002.2-py3:opensuse-leap-15.2
|
||||
# Workaround to avoid intermittent failures on `opensuse-leap-15.2`:
|
||||
# => SCP did not finish successfully (255): (Net::SCP::Error)
|
||||
transport:
|
||||
max_ssh_sessions: 1
|
||||
- name: opensuse-tmbl-latest-3002-2-py3
|
||||
driver:
|
||||
image: saltimages/salt-3002.2-py3:opensuse-tumbleweed-latest
|
||||
image: saltimages/salt-3004.0-py3:opensuse-tumbleweed-latest
|
||||
# Workaround to avoid intermittent failures on `opensuse-tumbleweed`:
|
||||
# => SCP did not finish successfully (255): (Net::SCP::Error)
|
||||
transport:
|
||||
max_ssh_sessions: 1
|
||||
|
||||
## SALT `3001.7`
|
||||
- name: debian-10-3001-7-py3
|
||||
## SALT `3003.4`
|
||||
- name: debian-10-3003-4-py3
|
||||
driver:
|
||||
image: saltimages/salt-3001.7-py3:debian-10
|
||||
image: saltimages/salt-3003.4-py3:debian-10
|
||||
provision_command:
|
||||
- apt-get update
|
||||
- apt-get install --reinstall -y udev
|
||||
- apt-get install -y snapd
|
||||
run_command: /lib/systemd/systemd
|
||||
- name: debian-9-3001-7-py3
|
||||
- name: debian-9-3003-4-py3
|
||||
driver:
|
||||
image: saltimages/salt-3001.7-py3:debian-9
|
||||
image: saltimages/salt-3003.4-py3:debian-9
|
||||
provision_command:
|
||||
- apt-get update
|
||||
- apt-get install --reinstall -y udev
|
||||
- apt-get install -y snapd
|
||||
run_command: /lib/systemd/systemd
|
||||
- name: ubuntu-2004-3001-7-py3
|
||||
- name: ubuntu-2004-3003-4-py3
|
||||
driver:
|
||||
image: saltimages/salt-3001.7-py3:ubuntu-20.04
|
||||
image: saltimages/salt-3003.4-py3:ubuntu-20.04
|
||||
run_command: /lib/systemd/systemd
|
||||
- name: ubuntu-1804-3001-7-py3
|
||||
- name: ubuntu-1804-3003-4-py3
|
||||
driver:
|
||||
image: saltimages/salt-3001.7-py3:ubuntu-18.04
|
||||
image: saltimages/salt-3003.4-py3:ubuntu-18.04
|
||||
run_command: /lib/systemd/systemd
|
||||
- name: centos-8-3001-7-py3
|
||||
- name: centos-stream8-3003-4-py3
|
||||
driver:
|
||||
image: saltimages/salt-3001.7-py3:centos-8
|
||||
- name: centos-7-3001-7-py3
|
||||
image: saltimages/salt-3003.4-py3:centos-stream8
|
||||
- name: centos-7-3003-4-py3
|
||||
driver:
|
||||
image: saltimages/salt-3001.7-py3:centos-7
|
||||
- name: fedora-34-3001-7-py3
|
||||
image: saltimages/salt-3003.4-py3:centos-7
|
||||
- name: amazonlinux-2-3003-4-py3
|
||||
driver:
|
||||
image: saltimages/salt-3001.7-py3:fedora-34
|
||||
- name: fedora-33-3001-7-py3
|
||||
image: saltimages/salt-3003.4-py3:amazonlinux-2
|
||||
- name: oraclelinux-8-3003-4-py3
|
||||
driver:
|
||||
image: saltimages/salt-3001.7-py3:fedora-33
|
||||
- name: opensuse-leap-153-3001-7-py3
|
||||
image: saltimages/salt-3003.4-py3:oraclelinux-8
|
||||
- name: oraclelinux-7-3003-4-py3
|
||||
driver:
|
||||
image: saltimages/salt-3001.7-py3:opensuse-leap-15.3
|
||||
# Workaround to avoid intermittent failures on `opensuse-leap-15.3`:
|
||||
# => SCP did not finish successfully (255): (Net::SCP::Error)
|
||||
transport:
|
||||
max_ssh_sessions: 1
|
||||
- name: opensuse-leap-152-3001-7-py3
|
||||
image: saltimages/salt-3003.4-py3:oraclelinux-7
|
||||
- name: almalinux-8-3003-4-py3
|
||||
driver:
|
||||
image: saltimages/salt-3001.7-py3:opensuse-leap-15.2
|
||||
# Workaround to avoid intermittent failures on `opensuse-leap-15.2`:
|
||||
# => SCP did not finish successfully (255): (Net::SCP::Error)
|
||||
transport:
|
||||
max_ssh_sessions: 1
|
||||
- name: opensuse-tmbl-latest-3001-7-py3
|
||||
driver:
|
||||
image: saltimages/salt-3001.7-py3:opensuse-tumbleweed-latest
|
||||
# Workaround to avoid intermittent failures on `opensuse-tumbleweed`:
|
||||
# => SCP did not finish successfully (255): (Net::SCP::Error)
|
||||
transport:
|
||||
max_ssh_sessions: 1
|
||||
- name: amazonlinux-2-3001-7-py3
|
||||
driver:
|
||||
image: saltimages/salt-3001.7-py3:amazonlinux-2
|
||||
- name: oraclelinux-8-3001-7-py3
|
||||
driver:
|
||||
image: saltimages/salt-3001.7-py3:oraclelinux-8
|
||||
- name: oraclelinux-7-3001-7-py3
|
||||
driver:
|
||||
image: saltimages/salt-3001.7-py3:oraclelinux-7
|
||||
- name: arch-base-latest-3001-7-py3
|
||||
driver:
|
||||
image: saltimages/salt-3001.7-py3:arch-base-latest
|
||||
- name: gentoo-stage3-latest-3001-7-py3
|
||||
driver:
|
||||
image: saltimages/salt-3001.7-py3:gentoo-stage3-latest
|
||||
run_command: /sbin/init
|
||||
- name: gentoo-stage3-systemd-3001-7-py3
|
||||
driver:
|
||||
image: saltimages/salt-3001.7-py3:gentoo-stage3-systemd
|
||||
|
||||
## SALT `3000.9`
|
||||
- name: debian-10-3000-9-py3
|
||||
driver:
|
||||
image: saltimages/salt-3000.9-py3:debian-10
|
||||
provision_command:
|
||||
- apt-get update
|
||||
- apt-get install --reinstall -y udev
|
||||
- apt-get install -y snapd
|
||||
run_command: /lib/systemd/systemd
|
||||
- name: debian-9-3000-9-py3
|
||||
driver:
|
||||
image: saltimages/salt-3000.9-py3:debian-9
|
||||
provision_command:
|
||||
- apt-get update
|
||||
- apt-get install --reinstall -y udev
|
||||
- apt-get install -y snapd
|
||||
run_command: /lib/systemd/systemd
|
||||
- name: ubuntu-1804-3000-9-py3
|
||||
driver:
|
||||
image: saltimages/salt-3000.9-py3:ubuntu-18.04
|
||||
run_command: /lib/systemd/systemd
|
||||
- name: centos-8-3000-9-py3
|
||||
driver:
|
||||
image: saltimages/salt-3000.9-py3:centos-8
|
||||
- name: centos-7-3000-9-py3
|
||||
driver:
|
||||
image: saltimages/salt-3000.9-py3:centos-7
|
||||
- name: opensuse-leap-153-3000-9-py3
|
||||
driver:
|
||||
image: saltimages/salt-3000.9-py3:opensuse-leap-15.3
|
||||
# Workaround to avoid intermittent failures on `opensuse-leap-15.3`:
|
||||
# => SCP did not finish successfully (255): (Net::SCP::Error)
|
||||
transport:
|
||||
max_ssh_sessions: 1
|
||||
- name: opensuse-leap-152-3000-9-py3
|
||||
driver:
|
||||
image: saltimages/salt-3000.9-py3:opensuse-leap-15.2
|
||||
# Workaround to avoid intermittent failures on `opensuse-leap-15.2`:
|
||||
# => SCP did not finish successfully (255): (Net::SCP::Error)
|
||||
transport:
|
||||
max_ssh_sessions: 1
|
||||
- name: amazonlinux-2-3000-9-py3
|
||||
driver:
|
||||
image: saltimages/salt-3000.9-py3:amazonlinux-2
|
||||
- name: oraclelinux-8-3000-9-py3
|
||||
driver:
|
||||
image: saltimages/salt-3000.9-py3:oraclelinux-8
|
||||
- name: oraclelinux-7-3000-9-py3
|
||||
driver:
|
||||
image: saltimages/salt-3000.9-py3:oraclelinux-7
|
||||
- name: gentoo-stage3-latest-3000-9-py3
|
||||
driver:
|
||||
image: saltimages/salt-3000.9-py3:gentoo-stage3-latest
|
||||
run_command: /sbin/init
|
||||
- name: gentoo-stage3-systemd-3000-9-py3
|
||||
driver:
|
||||
image: saltimages/salt-3000.9-py3:gentoo-stage3-systemd
|
||||
- name: ubuntu-1804-3000-9-py2
|
||||
driver:
|
||||
image: saltimages/salt-3000.9-py2:ubuntu-18.04
|
||||
run_command: /lib/systemd/systemd
|
||||
- name: arch-base-latest-3000-9-py2
|
||||
driver:
|
||||
image: saltimages/salt-3000.9-py2:arch-base-latest
|
||||
image: saltimages/salt-3003.4-py3:almalinux-8
|
||||
|
||||
verifier:
|
||||
# https://www.inspec.io/
|
||||
|
@ -515,16 +319,11 @@ suites:
|
|||
- debian-11-master-py3
|
||||
- debian-10-master-py3
|
||||
- debian-9-master-py3
|
||||
- debian-11-3003-2-py3
|
||||
- debian-10-3003-2-py3
|
||||
- debian-9-3003-2-py3
|
||||
- debian-11-3002-6-py3
|
||||
- debian-10-3002-6-py3
|
||||
- debian-9-3002-6-py3
|
||||
- debian-10-3001-7-py3
|
||||
- debian-9-3001-7-py3
|
||||
- debian-10-3000-9-py3
|
||||
- debian-9-3000-9-py3
|
||||
- debian-11-3004-1-py3
|
||||
- debian-10-3004-1-py3
|
||||
- debian-9-3004-1-py3
|
||||
- debian-10-3003-4-py3
|
||||
- debian-9-3003-4-py3
|
||||
provisioner:
|
||||
dependencies:
|
||||
- name: node
|
||||
|
@ -548,18 +347,17 @@ suites:
|
|||
- path: test/integration/default
|
||||
- name: ubuntu
|
||||
includes:
|
||||
- ubuntu-2204-tiamat-py3
|
||||
- ubuntu-2004-tiamat-py3
|
||||
- ubuntu-1804-tiamat-py3
|
||||
- ubuntu-2204-master-py3
|
||||
- ubuntu-2004-master-py3
|
||||
- ubuntu-1804-master-py3
|
||||
- ubuntu-2004-3003-2-py3
|
||||
- ubuntu-1804-3003-2-py3
|
||||
- ubuntu-2004-3002-6-py3
|
||||
- ubuntu-1804-3002-6-py3
|
||||
- ubuntu-2004-3001-7-py3
|
||||
- ubuntu-1804-3001-7-py3
|
||||
- ubuntu-1804-3000-9-py3
|
||||
- ubuntu-1804-3000-9-py2
|
||||
- ubuntu-2204-3004-1-py3
|
||||
- ubuntu-2004-3004-1-py3
|
||||
- ubuntu-1804-3004-1-py3
|
||||
- ubuntu-2004-3003-4-py3
|
||||
- ubuntu-1804-3003-4-py3
|
||||
provisioner:
|
||||
dependencies:
|
||||
- name: golang
|
||||
|
@ -583,14 +381,10 @@ suites:
|
|||
- path: test/integration/default
|
||||
- name: fedora
|
||||
includes:
|
||||
- fedora-34-master-py3
|
||||
- fedora-33-master-py3
|
||||
- fedora-34-3003-2-py3
|
||||
- fedora-33-3003-2-py3
|
||||
- fedora-34-3002-6-py3
|
||||
- fedora-33-3002-6-py3
|
||||
- fedora-34-3001-7-py3
|
||||
- fedora-33-3001-7-py3
|
||||
- fedora-36-master-py3
|
||||
- fedora-35-master-py3
|
||||
- fedora-36-3004-1-py3
|
||||
- fedora-35-3004-1-py3
|
||||
provisioner:
|
||||
state_top:
|
||||
base:
|
||||
|
@ -609,23 +403,21 @@ suites:
|
|||
- path: test/integration/default
|
||||
- name: redhat8
|
||||
includes:
|
||||
- centos-8-tiamat-py3
|
||||
- centos-stream8-tiamat-py3
|
||||
- oraclelinux-8-tiamat-py3
|
||||
- almalinux-8-tiamat-py3
|
||||
- rockylinux-8-tiamat-py3
|
||||
- centos-8-master-py3
|
||||
- centos-stream8-master-py3
|
||||
- oraclelinux-8-master-py3
|
||||
- almalinux-8-master-py3
|
||||
- rockylinux-8-master-py3
|
||||
- centos-8-3003-2-py3
|
||||
- oraclelinux-8-3003-2-py3
|
||||
- almalinux-8-3003-2-py3
|
||||
- centos-8-3002-6-py3
|
||||
- oraclelinux-8-3002-6-py3
|
||||
- centos-8-3001-7-py3
|
||||
- oraclelinux-8-3001-7-py3
|
||||
- centos-8-3000-9-py3
|
||||
- oraclelinux-8-3000-9-py3
|
||||
- centos-stream8-3004-1-py3
|
||||
- oraclelinux-8-3004-1-py3
|
||||
- almalinux-8-3004-1-py3
|
||||
- rockylinux-8-3004-1-py3
|
||||
- centos-stream8-3003-4-py3
|
||||
- oraclelinux-8-3003-4-py3
|
||||
- almalinux-8-3003-4-py3
|
||||
provisioner:
|
||||
dependencies:
|
||||
- name: epel
|
||||
|
@ -653,14 +445,10 @@ suites:
|
|||
- oraclelinux-7-tiamat-py3
|
||||
- centos-7-master-py3
|
||||
- oraclelinux-7-master-py3
|
||||
- centos-7-3003-2-py3
|
||||
- oraclelinux-7-3003-2-py3
|
||||
- centos-7-3002-6-py3
|
||||
- oraclelinux-7-3002-6-py3
|
||||
- centos-7-3001-7-py3
|
||||
- oraclelinux-7-3001-7-py3
|
||||
- centos-7-3000-9-py3
|
||||
- oraclelinux-7-3000-9-py3
|
||||
- centos-7-3004-1-py3
|
||||
- oraclelinux-7-3004-1-py3
|
||||
- centos-7-3003-4-py3
|
||||
- oraclelinux-7-3003-4-py3
|
||||
provisioner:
|
||||
dependencies:
|
||||
- name: epel
|
||||
|
@ -686,10 +474,8 @@ suites:
|
|||
includes:
|
||||
- amazonlinux-2-tiamat-py3
|
||||
- amazonlinux-2-master-py3
|
||||
- amazonlinux-2-3003-2-py3
|
||||
- amazonlinux-2-3002-6-py3
|
||||
- amazonlinux-2-3001-7-py3
|
||||
- amazonlinux-2-3000-9-py3
|
||||
- amazonlinux-2-3004-1-py3
|
||||
- amazonlinux-2-3003-4-py3
|
||||
provisioner:
|
||||
dependencies:
|
||||
- name: epel
|
||||
|
@ -714,19 +500,9 @@ suites:
|
|||
- name: suse
|
||||
includes:
|
||||
- opensuse-leap-153-master-py3
|
||||
- opensuse-leap-152-master-py3
|
||||
- opensuse-tmbl-latest-master-py3
|
||||
- opensuse-leap-153-3003-2-py3
|
||||
- opensuse-leap-152-3003-2-py3
|
||||
- opensuse-tmbl-latest-3003-2-py3
|
||||
- opensuse-leap-153-3002-2-py3
|
||||
- opensuse-leap-152-3002-2-py3
|
||||
- opensuse-tmbl-latest-3002-2-py3
|
||||
- opensuse-leap-153-3001-7-py3
|
||||
- opensuse-leap-152-3001-7-py3
|
||||
- opensuse-tmbl-latest-3001-7-py3
|
||||
- opensuse-leap-153-3000-9-py3
|
||||
- opensuse-leap-152-3000-9-py3
|
||||
- opensuse-leap-153-3004-0-py3
|
||||
- opensuse-tmbl-latest-3004-0-py3
|
||||
provisioner:
|
||||
state_top:
|
||||
base:
|
||||
|
@ -746,11 +522,7 @@ suites:
|
|||
- name: arch
|
||||
includes:
|
||||
- arch-base-latest-master-py3
|
||||
- arch-base-latest-3003-2-py3
|
||||
- arch-base-latest-3003-1-py3
|
||||
- arch-base-latest-3002-6-py3
|
||||
- arch-base-latest-3001-7-py3
|
||||
- arch-base-latest-3000-9-py2
|
||||
- arch-base-latest-3004-1-py3
|
||||
provisioner:
|
||||
state_top:
|
||||
base:
|
||||
|
@ -771,16 +543,8 @@ suites:
|
|||
includes:
|
||||
- gentoo-stage3-latest-master-py3
|
||||
- gentoo-stage3-systemd-master-py3
|
||||
- gentoo-stage3-latest-3003-2-py3
|
||||
- gentoo-stage3-systemd-3003-2-py3
|
||||
- gentoo-stage3-latest-3003-1-py3
|
||||
- gentoo-stage3-systemd-3003-1-py3
|
||||
- gentoo-stage3-latest-3002-6-py3
|
||||
- gentoo-stage3-systemd-3002-6-py3
|
||||
- gentoo-stage3-latest-3001-7-py3
|
||||
- gentoo-stage3-systemd-3001-7-py3
|
||||
- gentoo-stage3-latest-3000-9-py3
|
||||
- gentoo-stage3-systemd-3000-9-py3
|
||||
- gentoo-stage3-latest-3004-1-py3
|
||||
- gentoo-stage3-systemd-3004-1-py3
|
||||
provisioner:
|
||||
state_top:
|
||||
base:
|
||||
|
@ -801,12 +565,13 @@ suites:
|
|||
includes:
|
||||
- windows-10-latest-py3
|
||||
- windows-81-latest-py3
|
||||
- windows-2022-latest-py3
|
||||
- windows-2019-latest-py3
|
||||
- windows-2016-latest-py3
|
||||
provisioner:
|
||||
state_top:
|
||||
base:
|
||||
'*':
|
||||
- packages._mapdata
|
||||
- packages.chocolatey
|
||||
pillars:
|
||||
top.sls:
|
||||
|
|
|
@ -26,7 +26,7 @@ packages-archive-unwanted-{{ file_or_directory }}:
|
|||
|
||||
# wanted 'archive' software
|
||||
{%- for package, archive in wanted_archives.items() %}
|
||||
{%- set archivename = archive.dl.source.split('/')[-1] %}
|
||||
{%- set archivename = archive.dl.source.split('/')[-1] if 'destname' not in archive else archive.destname %}
|
||||
|
||||
packages-archive-wanted-target-{{ package }}-directory:
|
||||
file.directory:
|
||||
|
|
|
@ -22,6 +22,15 @@ CentOS Linux-8:
|
|||
collides: ['snap']
|
||||
symlink: true
|
||||
|
||||
CentOS Stream-8:
|
||||
pkgs:
|
||||
required:
|
||||
pkgs:
|
||||
- python3-dnf-plugin-versionlock
|
||||
snaps:
|
||||
collides: ['snap']
|
||||
symlink: true
|
||||
|
||||
Oracle Linux Server-8:
|
||||
pkgs:
|
||||
required:
|
||||
|
|
|
@ -20,6 +20,10 @@ CentOS:
|
|||
snaps:
|
||||
packages: []
|
||||
|
||||
CentOS Stream:
|
||||
snaps:
|
||||
packages: []
|
||||
|
||||
AlmaLinux:
|
||||
snaps:
|
||||
packages: []
|
||||
|
|
|
@ -139,15 +139,9 @@ packages:
|
|||
source: https://bitbucket.org/ariya/phantomjs/downloads/phantomjs-2.1.1-linux-x86_64.tar.bz2
|
||||
hashsum: md5=1c947d57fce2f21ce0b43fe2ed7cd361
|
||||
# yamllint enable rule:line-length
|
||||
blockbox:
|
||||
dest: /usr/local/src/
|
||||
dl:
|
||||
format: raw
|
||||
# yamllint disable-line rule:line-length
|
||||
source: https://raw.githubusercontent.com/openstack/cinder/master/contrib/block-box/docker-compose.yml
|
||||
hashsum: 1751f8e4f6b4cddd8c4843a0f4473274
|
||||
kubectl:
|
||||
dest: /usr/local/bin
|
||||
destname: kubectl # optional destination filename
|
||||
dl:
|
||||
format: bin
|
||||
# yamllint disable-line rule:line-length
|
||||
|
|
|
@ -7,16 +7,16 @@ sed -i -e "s_^\(version:\).*_\1 ${1}_" FORMULA
|
|||
|
||||
|
||||
###############################################################################
|
||||
# (B) Use `m2r` to convert automatically produced `.md` docs to `.rst`
|
||||
# (B) Use `m2r2` to convert automatically produced `.md` docs to `.rst`
|
||||
###############################################################################
|
||||
|
||||
# Install `m2r`
|
||||
pip3 install m2r
|
||||
# Install `m2r2`
|
||||
pip3 install m2r2
|
||||
|
||||
# Copy and then convert the `.md` docs
|
||||
cp ./*.md docs/
|
||||
cd docs/ || exit
|
||||
m2r --overwrite ./*.md
|
||||
m2r2 --overwrite ./*.md
|
||||
|
||||
# Change excess `H1` headings to `H2` in converted `CHANGELOG.rst`
|
||||
sed -i -e '/^=.*$/s/=/-/g' CHANGELOG.rst
|
||||
|
|
47
test/integration/default/controls/_mapdata.rb
Normal file
47
test/integration/default/controls/_mapdata.rb
Normal file
|
@ -0,0 +1,47 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
require 'yaml'
|
||||
|
||||
control 'packages._mapdata' do
|
||||
title '`map.jinja` should match the reference file'
|
||||
|
||||
### Method
|
||||
# The steps below for each file appear convoluted but they are both required
|
||||
# and similar in nature:
|
||||
# 1. The earliest method was to simply compare the files textually but this often
|
||||
# led to false positives due to inconsistencies (e.g. spacing, ordering)
|
||||
# 2. The next method was to load the files back into YAML structures and then
|
||||
# compare but InSpec provided block diffs this way, unusable by end users
|
||||
# 3. The final step was to dump the YAML structures back into a string to use
|
||||
# for the comparison; this both worked and provided human-friendly diffs
|
||||
|
||||
### Comparison file for the specific platform
|
||||
### Static, adjusted as part of code contributions, as map data is changed
|
||||
# Strip the `platform[:finger]` version number down to the "OS major release"
|
||||
platform_finger = system.platform[:finger].split('.').first.to_s
|
||||
# Use that to set the path to the file (relative to the InSpec suite directory)
|
||||
mapdata_file_path = "_mapdata/#{platform_finger}.yaml"
|
||||
# Load the mapdata from profile, into a YAML structure
|
||||
# https://docs.chef.io/inspec/profiles/#profile-files
|
||||
mapdata_file_yaml = YAML.load(inspec.profile.file(mapdata_file_path))
|
||||
# Dump the YAML back into a string for comparison
|
||||
mapdata_file_dump = YAML.dump(mapdata_file_yaml)
|
||||
|
||||
### Output file produced by running the `_mapdata` state
|
||||
### Dynamic, generated during Kitchen's `converge` phase
|
||||
# Derive the location of the dumped mapdata (differs for Windows)
|
||||
output_dir = platform[:family] == 'windows' ? '/temp' : '/tmp'
|
||||
# Use that to set the path to the file (absolute path, i.e. within the container)
|
||||
output_file_path = "#{output_dir}/salt_mapdata_dump.yaml"
|
||||
# Load the output into a YAML structure using InSpec's `yaml` resource
|
||||
# https://github.com/inspec/inspec/blob/49b7d10/lib/inspec/resources/yaml.rb#L29
|
||||
output_file_yaml = yaml(output_file_path).params
|
||||
# Dump the YAML back into a string for comparison
|
||||
output_file_dump = YAML.dump(output_file_yaml)
|
||||
|
||||
describe 'File content' do
|
||||
it 'should match profile map data exactly' do
|
||||
expect(output_file_dump).to eq(mapdata_file_dump)
|
||||
end
|
||||
end
|
||||
end
|
|
@ -10,7 +10,6 @@ control 'Archive packages' do
|
|||
end
|
||||
|
||||
%w[
|
||||
docker-compose.yml
|
||||
phantomjs-2.1.1-linux-x86_64/bin
|
||||
].each do |f|
|
||||
describe file("/usr/local/src/#{f}") do
|
||||
|
|
|
@ -109,7 +109,7 @@ control 'Held packages' do
|
|||
match_string = "#{p}-.*#{v}"
|
||||
when 'debian'
|
||||
match_string = "^Package: #{p}\nStatus: hold ok "\
|
||||
"installed\nP.*\nS.*\nI.*\nM.*\nA.*\nVersion: #{v}"
|
||||
"installed\nP.*\nS.*\nI.*\nM.*\nA.*\nVersion: #{v}"
|
||||
end
|
||||
|
||||
describe file(lock_file) do
|
||||
|
|
95
test/integration/default/files/_mapdata/almalinux-8.yaml
Normal file
95
test/integration/default/files/_mapdata/almalinux-8.yaml
Normal file
|
@ -0,0 +1,95 @@
|
|||
# yamllint disable rule:indentation rule:line-length
|
||||
# AlmaLinux-8
|
||||
---
|
||||
values:
|
||||
archives:
|
||||
pkgs:
|
||||
required:
|
||||
- curl
|
||||
- bzip2
|
||||
- gzip
|
||||
required:
|
||||
archives: {}
|
||||
types:
|
||||
- tar
|
||||
- zip
|
||||
- rar
|
||||
unwanted: []
|
||||
wanted: {}
|
||||
chocolatey:
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
unwanted: []
|
||||
wanted: []
|
||||
gems:
|
||||
required:
|
||||
pkgs:
|
||||
- rubygems
|
||||
states: []
|
||||
unwanted:
|
||||
- diff-lcs
|
||||
- kitchen-vagrant
|
||||
- kwalify
|
||||
wanted:
|
||||
- progressbar
|
||||
golang:
|
||||
clean: []
|
||||
goget: []
|
||||
kernel: linux
|
||||
npms:
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
unwanted: []
|
||||
wanted: []
|
||||
pips:
|
||||
config: []
|
||||
required:
|
||||
pkgs:
|
||||
- gcc
|
||||
- python3-pip
|
||||
states: []
|
||||
unwanted:
|
||||
- campbel
|
||||
- reverse_geocode
|
||||
- indy-crypto
|
||||
wanted:
|
||||
- attrs
|
||||
pkgs:
|
||||
held:
|
||||
- iotop
|
||||
required:
|
||||
pkgs:
|
||||
- git
|
||||
- python3-dnf-plugin-versionlock
|
||||
states: []
|
||||
unwanted:
|
||||
- avahi-daemon
|
||||
wanted:
|
||||
- git
|
||||
- less
|
||||
- bc
|
||||
- curl
|
||||
- fail2ban
|
||||
remote_pkgs:
|
||||
zoom: https://zoom.us/client/latest/zoom_x86_64.rpm
|
||||
retry_options:
|
||||
attempts: 1
|
||||
interval: 60
|
||||
splay: 10
|
||||
until: true
|
||||
rootuser: root
|
||||
snaps:
|
||||
classic: []
|
||||
collides: []
|
||||
packages: []
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
service:
|
||||
- snapd
|
||||
symlink: false
|
||||
unwanted: []
|
||||
wanted: []
|
||||
tmpdir: /tmp/saltstack-packages-formula-archives
|
96
test/integration/default/files/_mapdata/amazonlinux-2.yaml
Normal file
96
test/integration/default/files/_mapdata/amazonlinux-2.yaml
Normal file
|
@ -0,0 +1,96 @@
|
|||
# yamllint disable rule:indentation rule:line-length
|
||||
# Amazon Linux-2
|
||||
---
|
||||
values:
|
||||
archives:
|
||||
pkgs:
|
||||
required:
|
||||
- curl
|
||||
- bzip2
|
||||
- gzip
|
||||
required:
|
||||
archives: {}
|
||||
types:
|
||||
- tar
|
||||
- zip
|
||||
- rar
|
||||
unwanted: []
|
||||
wanted: {}
|
||||
chocolatey:
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
unwanted: []
|
||||
wanted: []
|
||||
gems:
|
||||
required:
|
||||
pkgs:
|
||||
- rubygems
|
||||
states: []
|
||||
unwanted:
|
||||
- diff-lcs
|
||||
- kitchen-vagrant
|
||||
- kwalify
|
||||
wanted:
|
||||
- progressbar
|
||||
golang:
|
||||
clean: []
|
||||
goget: []
|
||||
kernel: linux
|
||||
npms:
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
unwanted: []
|
||||
wanted: []
|
||||
pips:
|
||||
config: []
|
||||
required:
|
||||
pkgs:
|
||||
- gcc
|
||||
- python3-pip
|
||||
states: []
|
||||
unwanted:
|
||||
- campbel
|
||||
- reverse_geocode
|
||||
- indy-crypto
|
||||
wanted:
|
||||
- attrs
|
||||
pkgs:
|
||||
held: {}
|
||||
required:
|
||||
pkgs:
|
||||
- git
|
||||
- yum-plugin-versionlock
|
||||
states: []
|
||||
unwanted:
|
||||
- avahi-daemon
|
||||
wanted:
|
||||
- git
|
||||
- less
|
||||
- bc
|
||||
- curl
|
||||
- fail2ban
|
||||
remote_pkgs:
|
||||
zoom: https://zoom.us/client/latest/zoom_x86_64.rpm
|
||||
retry_options:
|
||||
attempts: 1
|
||||
interval: 60
|
||||
splay: 10
|
||||
until: true
|
||||
rootuser: root
|
||||
snaps:
|
||||
classic: []
|
||||
collides: []
|
||||
packages:
|
||||
- snapd
|
||||
- fuse
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
service:
|
||||
- snapd
|
||||
symlink: false
|
||||
unwanted: []
|
||||
wanted: []
|
||||
tmpdir: /tmp/saltstack-packages-formula-archives
|
|
@ -0,0 +1,94 @@
|
|||
# yamllint disable rule:indentation rule:line-length
|
||||
# Arch
|
||||
---
|
||||
values:
|
||||
archives:
|
||||
pkgs:
|
||||
required:
|
||||
- curl
|
||||
- bzip2
|
||||
- gzip
|
||||
required:
|
||||
archives: {}
|
||||
types:
|
||||
- tar
|
||||
- zip
|
||||
- rar
|
||||
unwanted: []
|
||||
wanted: {}
|
||||
chocolatey:
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
unwanted: []
|
||||
wanted: []
|
||||
gems:
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
unwanted:
|
||||
- diff-lcs
|
||||
- kitchen-vagrant
|
||||
- kwalify
|
||||
wanted:
|
||||
- progressbar
|
||||
- minitest
|
||||
golang:
|
||||
clean: []
|
||||
goget: []
|
||||
kernel: linux
|
||||
npms:
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
unwanted: []
|
||||
wanted: []
|
||||
pips:
|
||||
config: []
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
unwanted:
|
||||
- campbel
|
||||
- reverse_geocode
|
||||
- indy-crypto
|
||||
wanted:
|
||||
- attrs
|
||||
pkgs:
|
||||
held:
|
||||
- iotop
|
||||
required:
|
||||
pkgs:
|
||||
- git
|
||||
states: []
|
||||
unwanted:
|
||||
- avahi-daemon
|
||||
wanted:
|
||||
- ruby
|
||||
- git
|
||||
- less
|
||||
- bc
|
||||
- curl
|
||||
- fail2ban
|
||||
remote_pkgs: {}
|
||||
retry_options:
|
||||
attempts: 1
|
||||
interval: 60
|
||||
splay: 10
|
||||
until: true
|
||||
rootuser: root
|
||||
snaps:
|
||||
classic: []
|
||||
collides: []
|
||||
packages:
|
||||
- snapd
|
||||
- fuse
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
service:
|
||||
- snapd
|
||||
symlink: false
|
||||
unwanted: []
|
||||
wanted: []
|
||||
tmpdir: /tmp/saltstack-packages-formula-archives
|
95
test/integration/default/files/_mapdata/centos-7.yaml
Normal file
95
test/integration/default/files/_mapdata/centos-7.yaml
Normal file
|
@ -0,0 +1,95 @@
|
|||
# yamllint disable rule:indentation rule:line-length
|
||||
# CentOS Linux-7
|
||||
---
|
||||
values:
|
||||
archives:
|
||||
pkgs:
|
||||
required:
|
||||
- curl
|
||||
- bzip2
|
||||
- gzip
|
||||
required:
|
||||
archives: {}
|
||||
types:
|
||||
- tar
|
||||
- zip
|
||||
- rar
|
||||
unwanted: []
|
||||
wanted: {}
|
||||
chocolatey:
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
unwanted: []
|
||||
wanted: []
|
||||
gems:
|
||||
required:
|
||||
pkgs:
|
||||
- rubygems
|
||||
states: []
|
||||
unwanted:
|
||||
- diff-lcs
|
||||
- kitchen-vagrant
|
||||
- kwalify
|
||||
wanted:
|
||||
- progressbar
|
||||
golang:
|
||||
clean: []
|
||||
goget: []
|
||||
kernel: linux
|
||||
npms:
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
unwanted: []
|
||||
wanted: []
|
||||
pips:
|
||||
config: []
|
||||
required:
|
||||
pkgs:
|
||||
- gcc
|
||||
- python3-pip
|
||||
states: []
|
||||
unwanted:
|
||||
- campbel
|
||||
- reverse_geocode
|
||||
- indy-crypto
|
||||
wanted:
|
||||
- attrs
|
||||
pkgs:
|
||||
held:
|
||||
- iotop
|
||||
required:
|
||||
pkgs:
|
||||
- git
|
||||
- yum-plugin-versionlock
|
||||
states: []
|
||||
unwanted:
|
||||
- avahi-daemon
|
||||
wanted:
|
||||
- git
|
||||
- less
|
||||
- bc
|
||||
- curl
|
||||
- fail2ban
|
||||
remote_pkgs:
|
||||
zoom: https://zoom.us/client/latest/zoom_x86_64.rpm
|
||||
retry_options:
|
||||
attempts: 1
|
||||
interval: 60
|
||||
splay: 10
|
||||
until: true
|
||||
rootuser: root
|
||||
snaps:
|
||||
classic: []
|
||||
collides: []
|
||||
packages: []
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
service:
|
||||
- snapd
|
||||
symlink: false
|
||||
unwanted: []
|
||||
wanted: []
|
||||
tmpdir: /tmp/saltstack-packages-formula-archives
|
96
test/integration/default/files/_mapdata/centos-8.yaml
Normal file
96
test/integration/default/files/_mapdata/centos-8.yaml
Normal file
|
@ -0,0 +1,96 @@
|
|||
# yamllint disable rule:indentation rule:line-length
|
||||
# CentOS Linux-8
|
||||
---
|
||||
values:
|
||||
archives:
|
||||
pkgs:
|
||||
required:
|
||||
- curl
|
||||
- bzip2
|
||||
- gzip
|
||||
required:
|
||||
archives: {}
|
||||
types:
|
||||
- tar
|
||||
- zip
|
||||
- rar
|
||||
unwanted: []
|
||||
wanted: {}
|
||||
chocolatey:
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
unwanted: []
|
||||
wanted: []
|
||||
gems:
|
||||
required:
|
||||
pkgs:
|
||||
- rubygems
|
||||
states: []
|
||||
unwanted:
|
||||
- diff-lcs
|
||||
- kitchen-vagrant
|
||||
- kwalify
|
||||
wanted:
|
||||
- progressbar
|
||||
golang:
|
||||
clean: []
|
||||
goget: []
|
||||
kernel: linux
|
||||
npms:
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
unwanted: []
|
||||
wanted: []
|
||||
pips:
|
||||
config: []
|
||||
required:
|
||||
pkgs:
|
||||
- gcc
|
||||
- python3-pip
|
||||
states: []
|
||||
unwanted:
|
||||
- campbel
|
||||
- reverse_geocode
|
||||
- indy-crypto
|
||||
wanted:
|
||||
- attrs
|
||||
pkgs:
|
||||
held:
|
||||
- iotop
|
||||
required:
|
||||
pkgs:
|
||||
- git
|
||||
- python3-dnf-plugin-versionlock
|
||||
states: []
|
||||
unwanted:
|
||||
- avahi-daemon
|
||||
wanted:
|
||||
- git
|
||||
- less
|
||||
- bc
|
||||
- curl
|
||||
- fail2ban
|
||||
remote_pkgs:
|
||||
zoom: https://zoom.us/client/latest/zoom_x86_64.rpm
|
||||
retry_options:
|
||||
attempts: 1
|
||||
interval: 60
|
||||
splay: 10
|
||||
until: true
|
||||
rootuser: root
|
||||
snaps:
|
||||
classic: []
|
||||
collides:
|
||||
- snap
|
||||
packages: []
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
service:
|
||||
- snapd
|
||||
symlink: true
|
||||
unwanted: []
|
||||
wanted: []
|
||||
tmpdir: /tmp/saltstack-packages-formula-archives
|
133
test/integration/default/files/_mapdata/debian-10.yaml
Normal file
133
test/integration/default/files/_mapdata/debian-10.yaml
Normal file
|
@ -0,0 +1,133 @@
|
|||
# yamllint disable rule:indentation rule:line-length
|
||||
# Debian-10
|
||||
---
|
||||
values:
|
||||
archives:
|
||||
pkgs:
|
||||
required:
|
||||
- curl
|
||||
- bzip2
|
||||
- gzip
|
||||
required:
|
||||
archives: {}
|
||||
types:
|
||||
- tar
|
||||
- zip
|
||||
- rar
|
||||
unwanted:
|
||||
- /usr/local/boring_archive_software
|
||||
wanted:
|
||||
kubectl:
|
||||
dest: /usr/local/bin
|
||||
dl:
|
||||
format: bin
|
||||
source: https://storage.googleapis.com/kubernetes-release/release/v1.12.0/bin/darwin/amd64/kubectl
|
||||
phantomjs:
|
||||
dest: /usr/local/src/
|
||||
dl:
|
||||
format: tar
|
||||
hashsum: md5=1c947d57fce2f21ce0b43fe2ed7cd361
|
||||
source: https://bitbucket.org/ariya/phantomjs/downloads/phantomjs-2.1.1-linux-x86_64.tar.bz2
|
||||
mode: '0700'
|
||||
user: root
|
||||
terminator:
|
||||
dest: /usr/local/terminator/
|
||||
dl:
|
||||
format: tar
|
||||
hashsum: md5=2eed999d7a41f2e18eaa511bbbf80f58
|
||||
source: https://launchpad.net/terminator/gtk3/1.91/+download/terminator-1.91.tar.gz
|
||||
options: --strip-components=1
|
||||
chocolatey:
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
unwanted: []
|
||||
wanted: []
|
||||
gems:
|
||||
required:
|
||||
pkgs:
|
||||
- ruby
|
||||
states: []
|
||||
unwanted:
|
||||
- diff-lcs
|
||||
- kitchen-vagrant
|
||||
- kwalify
|
||||
wanted:
|
||||
- progressbar
|
||||
- minitest
|
||||
golang:
|
||||
clean: []
|
||||
goget: []
|
||||
kernel: linux
|
||||
npms:
|
||||
dir: /home/kitchen/npms
|
||||
group: kitchen
|
||||
mode: '0755'
|
||||
required:
|
||||
pkgs: []
|
||||
states:
|
||||
- node.package.install
|
||||
unwanted:
|
||||
- gist
|
||||
user: kitchen
|
||||
wanted:
|
||||
- '@low-systems/example@1.1.58'
|
||||
- hello-world-npm
|
||||
- sax
|
||||
- coffee-script@1.0.1
|
||||
pips:
|
||||
config:
|
||||
global:
|
||||
default-timeout: 120
|
||||
timeout: 120
|
||||
required:
|
||||
pkgs:
|
||||
- python3-pip
|
||||
states: []
|
||||
unwanted:
|
||||
- campbel
|
||||
- reverse_geocode
|
||||
- indy-crypto
|
||||
wanted:
|
||||
- attrs
|
||||
pkgs:
|
||||
held:
|
||||
- alien
|
||||
- iotop
|
||||
required:
|
||||
pkgs:
|
||||
- wget
|
||||
- git
|
||||
states: []
|
||||
unwanted:
|
||||
- avahi-daemon
|
||||
wanted:
|
||||
- git
|
||||
- less
|
||||
- bc
|
||||
- curl
|
||||
- fail2ban
|
||||
remote_pkgs:
|
||||
zoom: https://zoom.us/client/latest/zoom_amd64.deb
|
||||
retry_options:
|
||||
attempts: 1
|
||||
interval: 60
|
||||
splay: 10
|
||||
until: true
|
||||
rootuser: root
|
||||
snaps:
|
||||
classic: []
|
||||
collides: []
|
||||
packages:
|
||||
- snapd
|
||||
- fuse
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
service:
|
||||
- snapd
|
||||
symlink: false
|
||||
unwanted:
|
||||
- bare
|
||||
wanted: []
|
||||
tmpdir: /tmp/saltstack-packages-formula-archives
|
133
test/integration/default/files/_mapdata/debian-11.yaml
Normal file
133
test/integration/default/files/_mapdata/debian-11.yaml
Normal file
|
@ -0,0 +1,133 @@
|
|||
# yamllint disable rule:indentation rule:line-length
|
||||
# Debian-11
|
||||
---
|
||||
values:
|
||||
archives:
|
||||
pkgs:
|
||||
required:
|
||||
- curl
|
||||
- bzip2
|
||||
- gzip
|
||||
required:
|
||||
archives: {}
|
||||
types:
|
||||
- tar
|
||||
- zip
|
||||
- rar
|
||||
unwanted:
|
||||
- /usr/local/boring_archive_software
|
||||
wanted:
|
||||
kubectl:
|
||||
dest: /usr/local/bin
|
||||
dl:
|
||||
format: bin
|
||||
source: https://storage.googleapis.com/kubernetes-release/release/v1.12.0/bin/darwin/amd64/kubectl
|
||||
phantomjs:
|
||||
dest: /usr/local/src/
|
||||
dl:
|
||||
format: tar
|
||||
hashsum: md5=1c947d57fce2f21ce0b43fe2ed7cd361
|
||||
source: https://bitbucket.org/ariya/phantomjs/downloads/phantomjs-2.1.1-linux-x86_64.tar.bz2
|
||||
mode: '0700'
|
||||
user: root
|
||||
terminator:
|
||||
dest: /usr/local/terminator/
|
||||
dl:
|
||||
format: tar
|
||||
hashsum: md5=2eed999d7a41f2e18eaa511bbbf80f58
|
||||
source: https://launchpad.net/terminator/gtk3/1.91/+download/terminator-1.91.tar.gz
|
||||
options: --strip-components=1
|
||||
chocolatey:
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
unwanted: []
|
||||
wanted: []
|
||||
gems:
|
||||
required:
|
||||
pkgs:
|
||||
- ruby
|
||||
states: []
|
||||
unwanted:
|
||||
- diff-lcs
|
||||
- kitchen-vagrant
|
||||
- kwalify
|
||||
wanted:
|
||||
- progressbar
|
||||
- minitest
|
||||
golang:
|
||||
clean: []
|
||||
goget: []
|
||||
kernel: linux
|
||||
npms:
|
||||
dir: /home/kitchen/npms
|
||||
group: kitchen
|
||||
mode: '0755'
|
||||
required:
|
||||
pkgs: []
|
||||
states:
|
||||
- node.package.install
|
||||
unwanted:
|
||||
- gist
|
||||
user: kitchen
|
||||
wanted:
|
||||
- '@low-systems/example@1.1.58'
|
||||
- hello-world-npm
|
||||
- sax
|
||||
- coffee-script@1.0.1
|
||||
pips:
|
||||
config:
|
||||
global:
|
||||
default-timeout: 120
|
||||
timeout: 120
|
||||
required:
|
||||
pkgs:
|
||||
- python3-pip
|
||||
states: []
|
||||
unwanted:
|
||||
- campbel
|
||||
- reverse_geocode
|
||||
- indy-crypto
|
||||
wanted:
|
||||
- attrs
|
||||
pkgs:
|
||||
held:
|
||||
- alien
|
||||
- iotop
|
||||
required:
|
||||
pkgs:
|
||||
- wget
|
||||
- git
|
||||
states: []
|
||||
unwanted:
|
||||
- avahi-daemon
|
||||
wanted:
|
||||
- git
|
||||
- less
|
||||
- bc
|
||||
- curl
|
||||
- fail2ban
|
||||
remote_pkgs:
|
||||
zoom: https://zoom.us/client/latest/zoom_amd64.deb
|
||||
retry_options:
|
||||
attempts: 1
|
||||
interval: 60
|
||||
splay: 10
|
||||
until: true
|
||||
rootuser: root
|
||||
snaps:
|
||||
classic: []
|
||||
collides: []
|
||||
packages:
|
||||
- snapd
|
||||
- fuse
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
service:
|
||||
- snapd
|
||||
symlink: false
|
||||
unwanted:
|
||||
- bare
|
||||
wanted: []
|
||||
tmpdir: /tmp/saltstack-packages-formula-archives
|
133
test/integration/default/files/_mapdata/debian-9.yaml
Normal file
133
test/integration/default/files/_mapdata/debian-9.yaml
Normal file
|
@ -0,0 +1,133 @@
|
|||
# yamllint disable rule:indentation rule:line-length
|
||||
# Debian-9
|
||||
---
|
||||
values:
|
||||
archives:
|
||||
pkgs:
|
||||
required:
|
||||
- curl
|
||||
- bzip2
|
||||
- gzip
|
||||
required:
|
||||
archives: {}
|
||||
types:
|
||||
- tar
|
||||
- zip
|
||||
- rar
|
||||
unwanted:
|
||||
- /usr/local/boring_archive_software
|
||||
wanted:
|
||||
kubectl:
|
||||
dest: /usr/local/bin
|
||||
dl:
|
||||
format: bin
|
||||
source: https://storage.googleapis.com/kubernetes-release/release/v1.12.0/bin/darwin/amd64/kubectl
|
||||
phantomjs:
|
||||
dest: /usr/local/src/
|
||||
dl:
|
||||
format: tar
|
||||
hashsum: md5=1c947d57fce2f21ce0b43fe2ed7cd361
|
||||
source: https://bitbucket.org/ariya/phantomjs/downloads/phantomjs-2.1.1-linux-x86_64.tar.bz2
|
||||
mode: '0700'
|
||||
user: root
|
||||
terminator:
|
||||
dest: /usr/local/terminator/
|
||||
dl:
|
||||
format: tar
|
||||
hashsum: md5=2eed999d7a41f2e18eaa511bbbf80f58
|
||||
source: https://launchpad.net/terminator/gtk3/1.91/+download/terminator-1.91.tar.gz
|
||||
options: --strip-components=1
|
||||
chocolatey:
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
unwanted: []
|
||||
wanted: []
|
||||
gems:
|
||||
required:
|
||||
pkgs:
|
||||
- ruby
|
||||
states: []
|
||||
unwanted:
|
||||
- diff-lcs
|
||||
- kitchen-vagrant
|
||||
- kwalify
|
||||
wanted:
|
||||
- progressbar
|
||||
- minitest
|
||||
golang:
|
||||
clean: []
|
||||
goget: []
|
||||
kernel: linux
|
||||
npms:
|
||||
dir: /home/kitchen/npms
|
||||
group: kitchen
|
||||
mode: '0755'
|
||||
required:
|
||||
pkgs: []
|
||||
states:
|
||||
- node.package.install
|
||||
unwanted:
|
||||
- gist
|
||||
user: kitchen
|
||||
wanted:
|
||||
- '@low-systems/example@1.1.58'
|
||||
- hello-world-npm
|
||||
- sax
|
||||
- coffee-script@1.0.1
|
||||
pips:
|
||||
config:
|
||||
global:
|
||||
default-timeout: 120
|
||||
timeout: 120
|
||||
required:
|
||||
pkgs:
|
||||
- python3-pip
|
||||
states: []
|
||||
unwanted:
|
||||
- campbel
|
||||
- reverse_geocode
|
||||
- indy-crypto
|
||||
wanted:
|
||||
- attrs
|
||||
pkgs:
|
||||
held:
|
||||
- alien
|
||||
- iotop
|
||||
required:
|
||||
pkgs:
|
||||
- wget
|
||||
- git
|
||||
states: []
|
||||
unwanted:
|
||||
- avahi-daemon
|
||||
wanted:
|
||||
- git
|
||||
- less
|
||||
- bc
|
||||
- curl
|
||||
- fail2ban
|
||||
remote_pkgs:
|
||||
zoom: https://zoom.us/client/latest/zoom_amd64.deb
|
||||
retry_options:
|
||||
attempts: 1
|
||||
interval: 60
|
||||
splay: 10
|
||||
until: true
|
||||
rootuser: root
|
||||
snaps:
|
||||
classic: []
|
||||
collides: []
|
||||
packages:
|
||||
- snapd
|
||||
- fuse
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
service:
|
||||
- snapd
|
||||
symlink: false
|
||||
unwanted:
|
||||
- bare
|
||||
wanted: []
|
||||
tmpdir: /tmp/saltstack-packages-formula-archives
|
98
test/integration/default/files/_mapdata/fedora-33.yaml
Normal file
98
test/integration/default/files/_mapdata/fedora-33.yaml
Normal file
|
@ -0,0 +1,98 @@
|
|||
# yamllint disable rule:indentation rule:line-length
|
||||
# Fedora-33
|
||||
---
|
||||
values:
|
||||
archives:
|
||||
pkgs:
|
||||
required:
|
||||
- curl
|
||||
- bzip2
|
||||
- gzip
|
||||
required:
|
||||
archives: {}
|
||||
types:
|
||||
- tar
|
||||
- zip
|
||||
- rar
|
||||
unwanted: []
|
||||
wanted: {}
|
||||
chocolatey:
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
unwanted: []
|
||||
wanted: []
|
||||
gems:
|
||||
required:
|
||||
pkgs:
|
||||
- rubygems
|
||||
states: []
|
||||
unwanted:
|
||||
- diff-lcs
|
||||
- kitchen-vagrant
|
||||
- kwalify
|
||||
wanted:
|
||||
- progressbar
|
||||
- minitest
|
||||
golang:
|
||||
clean: []
|
||||
goget: []
|
||||
kernel: linux
|
||||
npms:
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
unwanted: []
|
||||
wanted: []
|
||||
pips:
|
||||
config: []
|
||||
required:
|
||||
pkgs:
|
||||
- gcc
|
||||
- python3-pip
|
||||
states: []
|
||||
unwanted:
|
||||
- campbel
|
||||
- reverse_geocode
|
||||
- indy-crypto
|
||||
wanted:
|
||||
- attrs
|
||||
pkgs:
|
||||
held: {}
|
||||
required:
|
||||
pkgs:
|
||||
- git
|
||||
- python3-dnf-plugin-versionlock
|
||||
states: []
|
||||
unwanted:
|
||||
- avahi-daemon
|
||||
wanted:
|
||||
- git
|
||||
- less
|
||||
- bc
|
||||
- curl
|
||||
- fail2ban
|
||||
remote_pkgs:
|
||||
zoom: https://zoom.us/client/latest/zoom_x86_64.rpm
|
||||
retry_options:
|
||||
attempts: 1
|
||||
interval: 60
|
||||
splay: 10
|
||||
until: true
|
||||
rootuser: root
|
||||
snaps:
|
||||
classic: []
|
||||
collides:
|
||||
- snap
|
||||
packages:
|
||||
- snapd
|
||||
- fuse
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
service:
|
||||
- snapd
|
||||
symlink: true
|
||||
unwanted: []
|
||||
wanted: []
|
||||
tmpdir: /tmp/saltstack-packages-formula-archives
|
98
test/integration/default/files/_mapdata/fedora-34.yaml
Normal file
98
test/integration/default/files/_mapdata/fedora-34.yaml
Normal file
|
@ -0,0 +1,98 @@
|
|||
# yamllint disable rule:indentation rule:line-length
|
||||
# Fedora-34
|
||||
---
|
||||
values:
|
||||
archives:
|
||||
pkgs:
|
||||
required:
|
||||
- curl
|
||||
- bzip2
|
||||
- gzip
|
||||
required:
|
||||
archives: {}
|
||||
types:
|
||||
- tar
|
||||
- zip
|
||||
- rar
|
||||
unwanted: []
|
||||
wanted: {}
|
||||
chocolatey:
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
unwanted: []
|
||||
wanted: []
|
||||
gems:
|
||||
required:
|
||||
pkgs:
|
||||
- rubygems
|
||||
states: []
|
||||
unwanted:
|
||||
- diff-lcs
|
||||
- kitchen-vagrant
|
||||
- kwalify
|
||||
wanted:
|
||||
- progressbar
|
||||
- minitest
|
||||
golang:
|
||||
clean: []
|
||||
goget: []
|
||||
kernel: linux
|
||||
npms:
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
unwanted: []
|
||||
wanted: []
|
||||
pips:
|
||||
config: []
|
||||
required:
|
||||
pkgs:
|
||||
- gcc
|
||||
- python3-pip
|
||||
states: []
|
||||
unwanted:
|
||||
- campbel
|
||||
- reverse_geocode
|
||||
- indy-crypto
|
||||
wanted:
|
||||
- attrs
|
||||
pkgs:
|
||||
held: {}
|
||||
required:
|
||||
pkgs:
|
||||
- git
|
||||
- python3-dnf-plugin-versionlock
|
||||
states: []
|
||||
unwanted:
|
||||
- avahi-daemon
|
||||
wanted:
|
||||
- git
|
||||
- less
|
||||
- bc
|
||||
- curl
|
||||
- fail2ban
|
||||
remote_pkgs:
|
||||
zoom: https://zoom.us/client/latest/zoom_x86_64.rpm
|
||||
retry_options:
|
||||
attempts: 1
|
||||
interval: 60
|
||||
splay: 10
|
||||
until: true
|
||||
rootuser: root
|
||||
snaps:
|
||||
classic: []
|
||||
collides:
|
||||
- snap
|
||||
packages:
|
||||
- snapd
|
||||
- fuse
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
service:
|
||||
- snapd
|
||||
symlink: true
|
||||
unwanted: []
|
||||
wanted: []
|
||||
tmpdir: /tmp/saltstack-packages-formula-archives
|
94
test/integration/default/files/_mapdata/gentoo-2-sysd.yaml
Normal file
94
test/integration/default/files/_mapdata/gentoo-2-sysd.yaml
Normal file
|
@ -0,0 +1,94 @@
|
|||
# yamllint disable rule:indentation rule:line-length
|
||||
# Gentoo-2
|
||||
---
|
||||
values:
|
||||
archives:
|
||||
pkgs:
|
||||
required:
|
||||
- curl
|
||||
- bzip2
|
||||
- gzip
|
||||
required:
|
||||
archives: {}
|
||||
types:
|
||||
- tar
|
||||
- zip
|
||||
- rar
|
||||
unwanted: []
|
||||
wanted: {}
|
||||
chocolatey:
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
unwanted: []
|
||||
wanted: []
|
||||
gems:
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
unwanted:
|
||||
- diff-lcs
|
||||
- kitchen-vagrant
|
||||
- kwalify
|
||||
wanted:
|
||||
- progressbar
|
||||
- minitest
|
||||
golang:
|
||||
clean: []
|
||||
goget: []
|
||||
kernel: linux
|
||||
npms:
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
unwanted: []
|
||||
wanted: []
|
||||
pips:
|
||||
config: []
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
unwanted:
|
||||
- campbel
|
||||
- reverse_geocode
|
||||
- indy-crypto
|
||||
wanted: []
|
||||
pkgs:
|
||||
held:
|
||||
- app-arch/alien
|
||||
- sys-process/iotop
|
||||
required:
|
||||
pkgs:
|
||||
- dev-vcs/git
|
||||
states: []
|
||||
unwanted:
|
||||
- net-dns/avahi
|
||||
wanted:
|
||||
- net-analyzer/netcat
|
||||
- dev-lang/ruby
|
||||
- dev-vcs/git
|
||||
- sys-apps/less
|
||||
- sys-devel/bc
|
||||
- net-misc/curl
|
||||
remote_pkgs: {}
|
||||
retry_options:
|
||||
attempts: 1
|
||||
interval: 60
|
||||
splay: 10
|
||||
until: true
|
||||
rootuser: root
|
||||
snaps:
|
||||
classic: []
|
||||
collides: []
|
||||
packages:
|
||||
- snapd
|
||||
- fuse
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
service:
|
||||
- snapd
|
||||
symlink: false
|
||||
unwanted: []
|
||||
wanted: []
|
||||
tmpdir: /tmp/saltstack-packages-formula-archives
|
94
test/integration/default/files/_mapdata/gentoo-2-sysv.yaml
Normal file
94
test/integration/default/files/_mapdata/gentoo-2-sysv.yaml
Normal file
|
@ -0,0 +1,94 @@
|
|||
# yamllint disable rule:indentation rule:line-length
|
||||
# Gentoo-2
|
||||
---
|
||||
values:
|
||||
archives:
|
||||
pkgs:
|
||||
required:
|
||||
- curl
|
||||
- bzip2
|
||||
- gzip
|
||||
required:
|
||||
archives: {}
|
||||
types:
|
||||
- tar
|
||||
- zip
|
||||
- rar
|
||||
unwanted: []
|
||||
wanted: {}
|
||||
chocolatey:
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
unwanted: []
|
||||
wanted: []
|
||||
gems:
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
unwanted:
|
||||
- diff-lcs
|
||||
- kitchen-vagrant
|
||||
- kwalify
|
||||
wanted:
|
||||
- progressbar
|
||||
- minitest
|
||||
golang:
|
||||
clean: []
|
||||
goget: []
|
||||
kernel: linux
|
||||
npms:
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
unwanted: []
|
||||
wanted: []
|
||||
pips:
|
||||
config: []
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
unwanted:
|
||||
- campbel
|
||||
- reverse_geocode
|
||||
- indy-crypto
|
||||
wanted: []
|
||||
pkgs:
|
||||
held:
|
||||
- app-arch/alien
|
||||
- sys-process/iotop
|
||||
required:
|
||||
pkgs:
|
||||
- dev-vcs/git
|
||||
states: []
|
||||
unwanted:
|
||||
- net-dns/avahi
|
||||
wanted:
|
||||
- net-analyzer/netcat
|
||||
- dev-lang/ruby
|
||||
- dev-vcs/git
|
||||
- sys-apps/less
|
||||
- sys-devel/bc
|
||||
- net-misc/curl
|
||||
remote_pkgs: {}
|
||||
retry_options:
|
||||
attempts: 1
|
||||
interval: 60
|
||||
splay: 10
|
||||
until: true
|
||||
rootuser: root
|
||||
snaps:
|
||||
classic: []
|
||||
collides: []
|
||||
packages:
|
||||
- snapd
|
||||
- fuse
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
service:
|
||||
- snapd
|
||||
symlink: false
|
||||
unwanted: []
|
||||
wanted: []
|
||||
tmpdir: /tmp/saltstack-packages-formula-archives
|
90
test/integration/default/files/_mapdata/opensuse-15.yaml
Normal file
90
test/integration/default/files/_mapdata/opensuse-15.yaml
Normal file
|
@ -0,0 +1,90 @@
|
|||
# yamllint disable rule:indentation rule:line-length
|
||||
# Leap-15
|
||||
---
|
||||
values:
|
||||
archives:
|
||||
pkgs:
|
||||
required:
|
||||
- curl
|
||||
- bzip2
|
||||
- gzip
|
||||
required:
|
||||
archives: {}
|
||||
types:
|
||||
- tar
|
||||
- zip
|
||||
- rar
|
||||
unwanted: []
|
||||
wanted: {}
|
||||
chocolatey:
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
unwanted: []
|
||||
wanted: []
|
||||
gems:
|
||||
required:
|
||||
pkgs:
|
||||
- ruby-common
|
||||
states: []
|
||||
unwanted:
|
||||
- diff-lcs
|
||||
- kitchen-vagrant
|
||||
- kwalify
|
||||
wanted:
|
||||
- progressbar
|
||||
- minitest
|
||||
golang:
|
||||
clean: []
|
||||
goget: []
|
||||
kernel: linux
|
||||
npms:
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
unwanted: []
|
||||
wanted: []
|
||||
pips:
|
||||
config: []
|
||||
required:
|
||||
pkgs:
|
||||
- python3-pip
|
||||
states: []
|
||||
unwanted: []
|
||||
wanted: []
|
||||
pkgs:
|
||||
held: {}
|
||||
required:
|
||||
pkgs:
|
||||
- git
|
||||
states: []
|
||||
unwanted:
|
||||
- avahi-daemon
|
||||
wanted:
|
||||
- git
|
||||
- less
|
||||
- bc
|
||||
- curl
|
||||
- fail2ban
|
||||
remote_pkgs: {}
|
||||
retry_options:
|
||||
attempts: 1
|
||||
interval: 60
|
||||
splay: 10
|
||||
until: true
|
||||
rootuser: root
|
||||
snaps:
|
||||
classic: []
|
||||
collides: []
|
||||
packages:
|
||||
- snapd
|
||||
- fuse
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
service:
|
||||
- snapd
|
||||
symlink: false
|
||||
unwanted: []
|
||||
wanted: []
|
||||
tmpdir: /tmp/saltstack-packages-formula-archives
|
|
@ -0,0 +1,90 @@
|
|||
# yamllint disable rule:indentation rule:line-length
|
||||
# openSUSE Tumbleweed-20210620
|
||||
---
|
||||
values:
|
||||
archives:
|
||||
pkgs:
|
||||
required:
|
||||
- curl
|
||||
- bzip2
|
||||
- gzip
|
||||
required:
|
||||
archives: {}
|
||||
types:
|
||||
- tar
|
||||
- zip
|
||||
- rar
|
||||
unwanted: []
|
||||
wanted: {}
|
||||
chocolatey:
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
unwanted: []
|
||||
wanted: []
|
||||
gems:
|
||||
required:
|
||||
pkgs:
|
||||
- ruby-common
|
||||
states: []
|
||||
unwanted:
|
||||
- diff-lcs
|
||||
- kitchen-vagrant
|
||||
- kwalify
|
||||
wanted:
|
||||
- progressbar
|
||||
- minitest
|
||||
golang:
|
||||
clean: []
|
||||
goget: []
|
||||
kernel: linux
|
||||
npms:
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
unwanted: []
|
||||
wanted: []
|
||||
pips:
|
||||
config: []
|
||||
required:
|
||||
pkgs:
|
||||
- python3-pip
|
||||
states: []
|
||||
unwanted: []
|
||||
wanted: []
|
||||
pkgs:
|
||||
held: {}
|
||||
required:
|
||||
pkgs:
|
||||
- git
|
||||
states: []
|
||||
unwanted:
|
||||
- avahi-daemon
|
||||
wanted:
|
||||
- git
|
||||
- less
|
||||
- bc
|
||||
- curl
|
||||
- fail2ban
|
||||
remote_pkgs: {}
|
||||
retry_options:
|
||||
attempts: 1
|
||||
interval: 60
|
||||
splay: 10
|
||||
until: true
|
||||
rootuser: root
|
||||
snaps:
|
||||
classic: []
|
||||
collides: []
|
||||
packages:
|
||||
- snapd
|
||||
- fuse
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
service:
|
||||
- snapd
|
||||
symlink: false
|
||||
unwanted: []
|
||||
wanted: []
|
||||
tmpdir: /tmp/saltstack-packages-formula-archives
|
97
test/integration/default/files/_mapdata/oraclelinux-7.yaml
Normal file
97
test/integration/default/files/_mapdata/oraclelinux-7.yaml
Normal file
|
@ -0,0 +1,97 @@
|
|||
# yamllint disable rule:indentation rule:line-length
|
||||
# Oracle Linux Server-7
|
||||
---
|
||||
values:
|
||||
archives:
|
||||
pkgs:
|
||||
required:
|
||||
- curl
|
||||
- bzip2
|
||||
- gzip
|
||||
required:
|
||||
archives: {}
|
||||
types:
|
||||
- tar
|
||||
- zip
|
||||
- rar
|
||||
unwanted: []
|
||||
wanted: {}
|
||||
chocolatey:
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
unwanted: []
|
||||
wanted: []
|
||||
gems:
|
||||
required:
|
||||
pkgs:
|
||||
- rubygems
|
||||
states: []
|
||||
unwanted:
|
||||
- diff-lcs
|
||||
- kitchen-vagrant
|
||||
- kwalify
|
||||
wanted:
|
||||
- progressbar
|
||||
golang:
|
||||
clean: []
|
||||
goget: []
|
||||
kernel: linux
|
||||
npms:
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
unwanted: []
|
||||
wanted: []
|
||||
pips:
|
||||
config: []
|
||||
required:
|
||||
pkgs:
|
||||
- gcc
|
||||
- python3-pip
|
||||
states: []
|
||||
unwanted:
|
||||
- campbel
|
||||
- reverse_geocode
|
||||
- indy-crypto
|
||||
wanted:
|
||||
- attrs
|
||||
pkgs:
|
||||
held:
|
||||
- iotop
|
||||
required:
|
||||
pkgs:
|
||||
- git
|
||||
- yum-plugin-versionlock
|
||||
states: []
|
||||
unwanted:
|
||||
- avahi-daemon
|
||||
wanted:
|
||||
- git
|
||||
- less
|
||||
- bc
|
||||
- curl
|
||||
- fail2ban
|
||||
remote_pkgs:
|
||||
zoom: https://zoom.us/client/latest/zoom_x86_64.rpm
|
||||
retry_options:
|
||||
attempts: 1
|
||||
interval: 60
|
||||
splay: 10
|
||||
until: true
|
||||
rootuser: root
|
||||
snaps:
|
||||
classic: []
|
||||
collides: []
|
||||
packages:
|
||||
- snapd
|
||||
- fuse
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
service:
|
||||
- snapd
|
||||
symlink: false
|
||||
unwanted: []
|
||||
wanted: []
|
||||
tmpdir: /tmp/saltstack-packages-formula-archives
|
98
test/integration/default/files/_mapdata/oraclelinux-8.yaml
Normal file
98
test/integration/default/files/_mapdata/oraclelinux-8.yaml
Normal file
|
@ -0,0 +1,98 @@
|
|||
# yamllint disable rule:indentation rule:line-length
|
||||
# Oracle Linux Server-8
|
||||
---
|
||||
values:
|
||||
archives:
|
||||
pkgs:
|
||||
required:
|
||||
- curl
|
||||
- bzip2
|
||||
- gzip
|
||||
required:
|
||||
archives: {}
|
||||
types:
|
||||
- tar
|
||||
- zip
|
||||
- rar
|
||||
unwanted: []
|
||||
wanted: {}
|
||||
chocolatey:
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
unwanted: []
|
||||
wanted: []
|
||||
gems:
|
||||
required:
|
||||
pkgs:
|
||||
- rubygems
|
||||
states: []
|
||||
unwanted:
|
||||
- diff-lcs
|
||||
- kitchen-vagrant
|
||||
- kwalify
|
||||
wanted:
|
||||
- progressbar
|
||||
golang:
|
||||
clean: []
|
||||
goget: []
|
||||
kernel: linux
|
||||
npms:
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
unwanted: []
|
||||
wanted: []
|
||||
pips:
|
||||
config: []
|
||||
required:
|
||||
pkgs:
|
||||
- gcc
|
||||
- python3-pip
|
||||
states: []
|
||||
unwanted:
|
||||
- campbel
|
||||
- reverse_geocode
|
||||
- indy-crypto
|
||||
wanted:
|
||||
- attrs
|
||||
pkgs:
|
||||
held:
|
||||
- iotop
|
||||
required:
|
||||
pkgs:
|
||||
- git
|
||||
- python3-dnf-plugin-versionlock
|
||||
states: []
|
||||
unwanted:
|
||||
- avahi-daemon
|
||||
wanted:
|
||||
- git
|
||||
- less
|
||||
- bc
|
||||
- curl
|
||||
- fail2ban
|
||||
remote_pkgs:
|
||||
zoom: https://zoom.us/client/latest/zoom_x86_64.rpm
|
||||
retry_options:
|
||||
attempts: 1
|
||||
interval: 60
|
||||
splay: 10
|
||||
until: true
|
||||
rootuser: root
|
||||
snaps:
|
||||
classic: []
|
||||
collides:
|
||||
- snap
|
||||
packages:
|
||||
- snapd
|
||||
- fuse
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
service:
|
||||
- snapd
|
||||
symlink: true
|
||||
unwanted: []
|
||||
wanted: []
|
||||
tmpdir: /tmp/saltstack-packages-formula-archives
|
95
test/integration/default/files/_mapdata/rockylinux-8.yaml
Normal file
95
test/integration/default/files/_mapdata/rockylinux-8.yaml
Normal file
|
@ -0,0 +1,95 @@
|
|||
# yamllint disable rule:indentation rule:line-length
|
||||
# Rocky Linux-8
|
||||
---
|
||||
values:
|
||||
archives:
|
||||
pkgs:
|
||||
required:
|
||||
- curl
|
||||
- bzip2
|
||||
- gzip
|
||||
required:
|
||||
archives: {}
|
||||
types:
|
||||
- tar
|
||||
- zip
|
||||
- rar
|
||||
unwanted: []
|
||||
wanted: {}
|
||||
chocolatey:
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
unwanted: []
|
||||
wanted: []
|
||||
gems:
|
||||
required:
|
||||
pkgs:
|
||||
- rubygems
|
||||
states: []
|
||||
unwanted:
|
||||
- diff-lcs
|
||||
- kitchen-vagrant
|
||||
- kwalify
|
||||
wanted:
|
||||
- progressbar
|
||||
golang:
|
||||
clean: []
|
||||
goget: []
|
||||
kernel: linux
|
||||
npms:
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
unwanted: []
|
||||
wanted: []
|
||||
pips:
|
||||
config: []
|
||||
required:
|
||||
pkgs:
|
||||
- gcc
|
||||
- python3-pip
|
||||
states: []
|
||||
unwanted:
|
||||
- campbel
|
||||
- reverse_geocode
|
||||
- indy-crypto
|
||||
wanted:
|
||||
- attrs
|
||||
pkgs:
|
||||
held:
|
||||
- iotop
|
||||
required:
|
||||
pkgs:
|
||||
- git
|
||||
- python3-dnf-plugin-versionlock
|
||||
states: []
|
||||
unwanted:
|
||||
- avahi-daemon
|
||||
wanted:
|
||||
- git
|
||||
- less
|
||||
- bc
|
||||
- curl
|
||||
- fail2ban
|
||||
remote_pkgs:
|
||||
zoom: https://zoom.us/client/latest/zoom_x86_64.rpm
|
||||
retry_options:
|
||||
attempts: 1
|
||||
interval: 60
|
||||
splay: 10
|
||||
until: true
|
||||
rootuser: root
|
||||
snaps:
|
||||
classic: []
|
||||
collides: []
|
||||
packages: []
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
service:
|
||||
- snapd
|
||||
symlink: false
|
||||
unwanted: []
|
||||
wanted: []
|
||||
tmpdir: /tmp/saltstack-packages-formula-archives
|
122
test/integration/default/files/_mapdata/ubuntu-18.yaml
Normal file
122
test/integration/default/files/_mapdata/ubuntu-18.yaml
Normal file
|
@ -0,0 +1,122 @@
|
|||
# yamllint disable rule:indentation rule:line-length
|
||||
# Ubuntu-18.04
|
||||
---
|
||||
values:
|
||||
archives:
|
||||
pkgs:
|
||||
required:
|
||||
- curl
|
||||
- bzip2
|
||||
- gzip
|
||||
required:
|
||||
archives: {}
|
||||
types:
|
||||
- tar
|
||||
- zip
|
||||
- rar
|
||||
unwanted:
|
||||
- /usr/local/boring_archive_software
|
||||
wanted:
|
||||
phantomjs:
|
||||
dest: /usr/local/src/
|
||||
dl:
|
||||
format: tar
|
||||
hashsum: md5=1c947d57fce2f21ce0b43fe2ed7cd361
|
||||
source: https://bitbucket.org/ariya/phantomjs/downloads/phantomjs-2.1.1-linux-x86_64.tar.bz2
|
||||
mode: '0700'
|
||||
user: root
|
||||
terminator:
|
||||
dest: /usr/local/terminator/
|
||||
dl:
|
||||
format: tar
|
||||
hashsum: md5=2eed999d7a41f2e18eaa511bbbf80f58
|
||||
source: https://launchpad.net/terminator/gtk3/1.91/+download/terminator-1.91.tar.gz
|
||||
options: --strip-components=1
|
||||
chocolatey:
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
unwanted: []
|
||||
wanted: []
|
||||
gems:
|
||||
required:
|
||||
pkgs:
|
||||
- ruby
|
||||
states: []
|
||||
unwanted:
|
||||
- diff-lcs
|
||||
- kitchen-vagrant
|
||||
- kwalify
|
||||
wanted:
|
||||
- progressbar
|
||||
- minitest
|
||||
golang:
|
||||
clean:
|
||||
- github.com/golang/example/hello
|
||||
- github.com/golang/example/outyet
|
||||
goget:
|
||||
- github.com/golang/example/hello
|
||||
- github.com/golang/example/outyet
|
||||
kernel: linux
|
||||
npms:
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
unwanted: []
|
||||
wanted: []
|
||||
pips:
|
||||
config:
|
||||
global:
|
||||
default-timeout: 120
|
||||
timeout: 120
|
||||
required:
|
||||
pkgs:
|
||||
- libpython2.7-dev
|
||||
- python-pip
|
||||
states: []
|
||||
unwanted:
|
||||
- campbel
|
||||
- reverse_geocode
|
||||
- indy-crypto
|
||||
wanted:
|
||||
- attrs
|
||||
pkgs:
|
||||
held:
|
||||
alien: 8.95
|
||||
iotop: 0.6-2
|
||||
required:
|
||||
pkgs:
|
||||
- wget
|
||||
- git
|
||||
states: []
|
||||
unwanted:
|
||||
- avahi-daemon
|
||||
wanted:
|
||||
- git
|
||||
- less
|
||||
- bc
|
||||
- curl
|
||||
- fail2ban
|
||||
remote_pkgs:
|
||||
zoom: https://zoom.us/client/latest/zoom_amd64.deb
|
||||
retry_options:
|
||||
attempts: 1
|
||||
interval: 60
|
||||
splay: 10
|
||||
until: true
|
||||
rootuser: root
|
||||
snaps:
|
||||
classic: []
|
||||
collides: []
|
||||
packages:
|
||||
- snapd
|
||||
- fuse
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
service:
|
||||
- snapd
|
||||
symlink: false
|
||||
unwanted: []
|
||||
wanted: []
|
||||
tmpdir: /tmp/saltstack-packages-formula-archives
|
122
test/integration/default/files/_mapdata/ubuntu-20.yaml
Normal file
122
test/integration/default/files/_mapdata/ubuntu-20.yaml
Normal file
|
@ -0,0 +1,122 @@
|
|||
# yamllint disable rule:indentation rule:line-length
|
||||
# Ubuntu-20.04
|
||||
---
|
||||
values:
|
||||
archives:
|
||||
pkgs:
|
||||
required:
|
||||
- curl
|
||||
- bzip2
|
||||
- gzip
|
||||
required:
|
||||
archives: {}
|
||||
types:
|
||||
- tar
|
||||
- zip
|
||||
- rar
|
||||
unwanted:
|
||||
- /usr/local/boring_archive_software
|
||||
wanted:
|
||||
phantomjs:
|
||||
dest: /usr/local/src/
|
||||
dl:
|
||||
format: tar
|
||||
hashsum: md5=1c947d57fce2f21ce0b43fe2ed7cd361
|
||||
source: https://bitbucket.org/ariya/phantomjs/downloads/phantomjs-2.1.1-linux-x86_64.tar.bz2
|
||||
mode: '0700'
|
||||
user: root
|
||||
terminator:
|
||||
dest: /usr/local/terminator/
|
||||
dl:
|
||||
format: tar
|
||||
hashsum: md5=2eed999d7a41f2e18eaa511bbbf80f58
|
||||
source: https://launchpad.net/terminator/gtk3/1.91/+download/terminator-1.91.tar.gz
|
||||
options: --strip-components=1
|
||||
chocolatey:
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
unwanted: []
|
||||
wanted: []
|
||||
gems:
|
||||
required:
|
||||
pkgs:
|
||||
- ruby
|
||||
states: []
|
||||
unwanted:
|
||||
- diff-lcs
|
||||
- kitchen-vagrant
|
||||
- kwalify
|
||||
wanted:
|
||||
- progressbar
|
||||
- minitest
|
||||
golang:
|
||||
clean:
|
||||
- github.com/golang/example/hello
|
||||
- github.com/golang/example/outyet
|
||||
goget:
|
||||
- github.com/golang/example/hello
|
||||
- github.com/golang/example/outyet
|
||||
kernel: linux
|
||||
npms:
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
unwanted: []
|
||||
wanted: []
|
||||
pips:
|
||||
config:
|
||||
global:
|
||||
default-timeout: 120
|
||||
timeout: 120
|
||||
required:
|
||||
pkgs:
|
||||
- libpython2.7-dev
|
||||
- python-pip
|
||||
states: []
|
||||
unwanted:
|
||||
- campbel
|
||||
- reverse_geocode
|
||||
- indy-crypto
|
||||
wanted:
|
||||
- attrs
|
||||
pkgs:
|
||||
held:
|
||||
alien: 8.95
|
||||
iotop: 0.6-2
|
||||
required:
|
||||
pkgs:
|
||||
- wget
|
||||
- git
|
||||
states: []
|
||||
unwanted:
|
||||
- avahi-daemon
|
||||
wanted:
|
||||
- git
|
||||
- less
|
||||
- bc
|
||||
- curl
|
||||
- fail2ban
|
||||
remote_pkgs:
|
||||
zoom: https://zoom.us/client/latest/zoom_amd64.deb
|
||||
retry_options:
|
||||
attempts: 1
|
||||
interval: 60
|
||||
splay: 10
|
||||
until: true
|
||||
rootuser: root
|
||||
snaps:
|
||||
classic: []
|
||||
collides: []
|
||||
packages:
|
||||
- snapd
|
||||
- fuse
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
service:
|
||||
- snapd
|
||||
symlink: false
|
||||
unwanted: []
|
||||
wanted: []
|
||||
tmpdir: /tmp/saltstack-packages-formula-archives
|
|
@ -24,4 +24,5 @@ supports:
|
|||
- platform-name: gentoo
|
||||
- platform-name: almalinux
|
||||
- platform-name: rocky
|
||||
- platform-name: mac_os_x
|
||||
- platform: windows
|
||||
|
|
|
@ -21,4 +21,5 @@ supports:
|
|||
- platform-name: gentoo
|
||||
- platform-name: almalinux
|
||||
- platform-name: rocky
|
||||
- platform-name: mac_os_x
|
||||
- platform: windows
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
# Author: Daniel Dehennin <daniel.dehennin@ac-dijon.fr>
|
||||
# Copyright (C) 2020 Daniel Dehennin <daniel.dehennin@ac-dijon.fr>
|
||||
|
||||
# rubocop:disable Metrics/ClassLength
|
||||
class SystemResource < Inspec.resource(1)
|
||||
name 'system'
|
||||
|
||||
|
@ -21,7 +22,8 @@ class SystemResource < Inspec.resource(1)
|
|||
family: build_platform_family,
|
||||
name: build_platform_name,
|
||||
release: build_platform_release,
|
||||
finger: build_platform_finger
|
||||
finger: build_platform_finger,
|
||||
codename: build_platform_codename
|
||||
}
|
||||
end
|
||||
|
||||
|
@ -55,12 +57,16 @@ class SystemResource < Inspec.resource(1)
|
|||
'base-latest'
|
||||
when 'gentoo'
|
||||
"#{inspec.platform[:release].split('.')[0]}-#{derive_gentoo_init_system}"
|
||||
when 'mac_os_x'
|
||||
inspec.command('sw_vers -productVersion').stdout.to_s
|
||||
when 'opensuse'
|
||||
# rubocop:disable Style/NumericLiterals,Layout/LineLength
|
||||
inspec.platform[:release].to_i > 20210101 ? 'tumbleweed' : inspec.platform[:release]
|
||||
# rubocop:enable Style/NumericLiterals,Layout/LineLength
|
||||
when 'windows_8.1_pro'
|
||||
'8.1'
|
||||
when 'windows_server_2022_datacenter'
|
||||
'2022-server'
|
||||
when 'windows_server_2019_datacenter'
|
||||
'2019-server'
|
||||
when 'windows_server_2016_datacenter'
|
||||
|
@ -87,4 +93,46 @@ class SystemResource < Inspec.resource(1)
|
|||
build_platform_release.split('.')[0]
|
||||
end
|
||||
end
|
||||
|
||||
# rubocop:disable Metrics/MethodLength,Metrics/CyclomaticComplexity
|
||||
def build_platform_codename
|
||||
case build_platform_finger
|
||||
when 'ubuntu-22.04'
|
||||
'jammy'
|
||||
when 'ubuntu-20.04'
|
||||
'focal'
|
||||
when 'ubuntu-18.04'
|
||||
'bionic'
|
||||
when 'debian-11'
|
||||
'bullseye'
|
||||
when 'debian-10'
|
||||
'buster'
|
||||
when 'debian-9'
|
||||
'stretch'
|
||||
when 'almalinux-8'
|
||||
"AlmaLinux #{build_platform_release} (Arctic Sphynx)"
|
||||
when 'amazonlinux-2'
|
||||
'Amazon Linux 2'
|
||||
when 'arch-base-latest'
|
||||
'Arch Linux'
|
||||
when 'centos-7'
|
||||
'CentOS Linux 7 (Core)'
|
||||
when 'centos-8'
|
||||
'CentOS Stream 8'
|
||||
when 'opensuse-tumbleweed'
|
||||
'openSUSE Tumbleweed'
|
||||
when 'opensuse-15'
|
||||
"openSUSE Leap #{build_platform_release}"
|
||||
when 'oraclelinux-8', 'oraclelinux-7'
|
||||
"Oracle Linux Server #{build_platform_release}"
|
||||
when 'gentoo-2-sysd', 'gentoo-2-sysv'
|
||||
'Gentoo/Linux'
|
||||
when 'rockylinux-8'
|
||||
"Rocky Linux #{build_platform_release} (Green Obsidian)"
|
||||
else
|
||||
''
|
||||
end
|
||||
end
|
||||
# rubocop:enable Metrics/MethodLength,Metrics/CyclomaticComplexity
|
||||
end
|
||||
# rubocop:enable Metrics/ClassLength
|
||||
|
|
47
test/integration/windows/controls/_mapdata.rb
Normal file
47
test/integration/windows/controls/_mapdata.rb
Normal file
|
@ -0,0 +1,47 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
require 'yaml'
|
||||
|
||||
control 'packages._mapdata' do
|
||||
title '`map.jinja` should match the reference file'
|
||||
|
||||
### Method
|
||||
# The steps below for each file appear convoluted but they are both required
|
||||
# and similar in nature:
|
||||
# 1. The earliest method was to simply compare the files textually but this often
|
||||
# led to false positives due to inconsistencies (e.g. spacing, ordering)
|
||||
# 2. The next method was to load the files back into YAML structures and then
|
||||
# compare but InSpec provided block diffs this way, unusable by end users
|
||||
# 3. The final step was to dump the YAML structures back into a string to use
|
||||
# for the comparison; this both worked and provided human-friendly diffs
|
||||
|
||||
### Comparison file for the specific platform
|
||||
### Static, adjusted as part of code contributions, as map data is changed
|
||||
# Strip the `platform[:finger]` version number down to the "OS major release"
|
||||
platform_finger = system.platform[:finger].split('.').first.to_s
|
||||
# Use that to set the path to the file (relative to the InSpec suite directory)
|
||||
mapdata_file_path = "_mapdata/#{platform_finger}.yaml"
|
||||
# Load the mapdata from profile, into a YAML structure
|
||||
# https://docs.chef.io/inspec/profiles/#profile-files
|
||||
mapdata_file_yaml = YAML.load(inspec.profile.file(mapdata_file_path))
|
||||
# Dump the YAML back into a string for comparison
|
||||
mapdata_file_dump = YAML.dump(mapdata_file_yaml)
|
||||
|
||||
### Output file produced by running the `_mapdata` state
|
||||
### Dynamic, generated during Kitchen's `converge` phase
|
||||
# Derive the location of the dumped mapdata (differs for Windows)
|
||||
output_dir = platform[:family] == 'windows' ? '/temp' : '/tmp'
|
||||
# Use that to set the path to the file (absolute path, i.e. within the container)
|
||||
output_file_path = "#{output_dir}/salt_mapdata_dump.yaml"
|
||||
# Load the output into a YAML structure using InSpec's `yaml` resource
|
||||
# https://github.com/inspec/inspec/blob/49b7d10/lib/inspec/resources/yaml.rb#L29
|
||||
output_file_yaml = yaml(output_file_path).params
|
||||
# Dump the YAML back into a string for comparison
|
||||
output_file_dump = YAML.dump(output_file_yaml)
|
||||
|
||||
describe 'File content' do
|
||||
it 'should match profile map data exactly' do
|
||||
expect(output_file_dump).to eq(mapdata_file_dump)
|
||||
end
|
||||
end
|
||||
end
|
85
test/integration/windows/files/_mapdata/windows-10.yaml
Normal file
85
test/integration/windows/files/_mapdata/windows-10.yaml
Normal file
|
@ -0,0 +1,85 @@
|
|||
# yamllint disable rule:indentation rule:line-length
|
||||
# Windows-10
|
||||
---
|
||||
values:
|
||||
archives:
|
||||
pkgs:
|
||||
required:
|
||||
- curl
|
||||
- bzip2
|
||||
- gzip
|
||||
required:
|
||||
archives: {}
|
||||
types:
|
||||
- tar
|
||||
- zip
|
||||
- rar
|
||||
unwanted: []
|
||||
wanted: {}
|
||||
chocolatey:
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
unwanted:
|
||||
- GoogleChrome
|
||||
- hg
|
||||
wanted:
|
||||
Firefox:
|
||||
package_args: "/l:en-GB"
|
||||
jq:
|
||||
force: true
|
||||
version: '1.5'
|
||||
notepadplusplus:
|
||||
version: 7.8.8
|
||||
gems:
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
unwanted: []
|
||||
wanted: []
|
||||
golang:
|
||||
clean: []
|
||||
goget: []
|
||||
kernel: windows
|
||||
npms:
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
unwanted: []
|
||||
wanted: []
|
||||
pips:
|
||||
config: []
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
unwanted: []
|
||||
wanted: []
|
||||
pkgs:
|
||||
held: {}
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
unwanted: []
|
||||
wanted: []
|
||||
remote_pkgs: {}
|
||||
retry_options:
|
||||
attempts: 3
|
||||
interval: 60
|
||||
splay: 10
|
||||
until: true
|
||||
rootuser: root
|
||||
snaps:
|
||||
classic: []
|
||||
collides: []
|
||||
packages:
|
||||
- snapd
|
||||
- fuse
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
service:
|
||||
- snapd
|
||||
symlink: false
|
||||
unwanted: []
|
||||
wanted: []
|
||||
tmpdir: "/tmp/saltstack-packages-formula-archives"
|
|
@ -0,0 +1,85 @@
|
|||
# yamllint disable rule:indentation rule:line-length
|
||||
# Windows-2016Server
|
||||
---
|
||||
values:
|
||||
archives:
|
||||
pkgs:
|
||||
required:
|
||||
- curl
|
||||
- bzip2
|
||||
- gzip
|
||||
required:
|
||||
archives: {}
|
||||
types:
|
||||
- tar
|
||||
- zip
|
||||
- rar
|
||||
unwanted: []
|
||||
wanted: {}
|
||||
chocolatey:
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
unwanted:
|
||||
- GoogleChrome
|
||||
- hg
|
||||
wanted:
|
||||
Firefox:
|
||||
package_args: "/l:en-GB"
|
||||
jq:
|
||||
force: true
|
||||
version: '1.5'
|
||||
notepadplusplus:
|
||||
version: 7.8.8
|
||||
gems:
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
unwanted: []
|
||||
wanted: []
|
||||
golang:
|
||||
clean: []
|
||||
goget: []
|
||||
kernel: windows
|
||||
npms:
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
unwanted: []
|
||||
wanted: []
|
||||
pips:
|
||||
config: []
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
unwanted: []
|
||||
wanted: []
|
||||
pkgs:
|
||||
held: {}
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
unwanted: []
|
||||
wanted: []
|
||||
remote_pkgs: {}
|
||||
retry_options:
|
||||
attempts: 3
|
||||
interval: 60
|
||||
splay: 10
|
||||
until: true
|
||||
rootuser: root
|
||||
snaps:
|
||||
classic: []
|
||||
collides: []
|
||||
packages:
|
||||
- snapd
|
||||
- fuse
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
service:
|
||||
- snapd
|
||||
symlink: false
|
||||
unwanted: []
|
||||
wanted: []
|
||||
tmpdir: "/tmp/saltstack-packages-formula-archives"
|
|
@ -0,0 +1,85 @@
|
|||
# yamllint disable rule:indentation rule:line-length
|
||||
# Windows-2019Server
|
||||
---
|
||||
values:
|
||||
archives:
|
||||
pkgs:
|
||||
required:
|
||||
- curl
|
||||
- bzip2
|
||||
- gzip
|
||||
required:
|
||||
archives: {}
|
||||
types:
|
||||
- tar
|
||||
- zip
|
||||
- rar
|
||||
unwanted: []
|
||||
wanted: {}
|
||||
chocolatey:
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
unwanted:
|
||||
- GoogleChrome
|
||||
- hg
|
||||
wanted:
|
||||
Firefox:
|
||||
package_args: "/l:en-GB"
|
||||
jq:
|
||||
force: true
|
||||
version: '1.5'
|
||||
notepadplusplus:
|
||||
version: 7.8.8
|
||||
gems:
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
unwanted: []
|
||||
wanted: []
|
||||
golang:
|
||||
clean: []
|
||||
goget: []
|
||||
kernel: windows
|
||||
npms:
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
unwanted: []
|
||||
wanted: []
|
||||
pips:
|
||||
config: []
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
unwanted: []
|
||||
wanted: []
|
||||
pkgs:
|
||||
held: {}
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
unwanted: []
|
||||
wanted: []
|
||||
remote_pkgs: {}
|
||||
retry_options:
|
||||
attempts: 3
|
||||
interval: 60
|
||||
splay: 10
|
||||
until: true
|
||||
rootuser: root
|
||||
snaps:
|
||||
classic: []
|
||||
collides: []
|
||||
packages:
|
||||
- snapd
|
||||
- fuse
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
service:
|
||||
- snapd
|
||||
symlink: false
|
||||
unwanted: []
|
||||
wanted: []
|
||||
tmpdir: "/tmp/saltstack-packages-formula-archives"
|
|
@ -0,0 +1,85 @@
|
|||
# yamllint disable rule:indentation rule:line-length
|
||||
# Windows-2022Server
|
||||
---
|
||||
values:
|
||||
archives:
|
||||
pkgs:
|
||||
required:
|
||||
- curl
|
||||
- bzip2
|
||||
- gzip
|
||||
required:
|
||||
archives: {}
|
||||
types:
|
||||
- tar
|
||||
- zip
|
||||
- rar
|
||||
unwanted: []
|
||||
wanted: {}
|
||||
chocolatey:
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
unwanted:
|
||||
- GoogleChrome
|
||||
- hg
|
||||
wanted:
|
||||
Firefox:
|
||||
package_args: "/l:en-GB"
|
||||
jq:
|
||||
force: true
|
||||
version: '1.5'
|
||||
notepadplusplus:
|
||||
version: 7.8.8
|
||||
gems:
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
unwanted: []
|
||||
wanted: []
|
||||
golang:
|
||||
clean: []
|
||||
goget: []
|
||||
kernel: windows
|
||||
npms:
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
unwanted: []
|
||||
wanted: []
|
||||
pips:
|
||||
config: []
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
unwanted: []
|
||||
wanted: []
|
||||
pkgs:
|
||||
held: {}
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
unwanted: []
|
||||
wanted: []
|
||||
remote_pkgs: {}
|
||||
retry_options:
|
||||
attempts: 3
|
||||
interval: 60
|
||||
splay: 10
|
||||
until: true
|
||||
rootuser: root
|
||||
snaps:
|
||||
classic: []
|
||||
collides: []
|
||||
packages:
|
||||
- snapd
|
||||
- fuse
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
service:
|
||||
- snapd
|
||||
symlink: false
|
||||
unwanted: []
|
||||
wanted: []
|
||||
tmpdir: "/tmp/saltstack-packages-formula-archives"
|
85
test/integration/windows/files/_mapdata/windows-8.yaml
Normal file
85
test/integration/windows/files/_mapdata/windows-8.yaml
Normal file
|
@ -0,0 +1,85 @@
|
|||
# yamllint disable rule:indentation rule:line-length
|
||||
# Windows-8.1
|
||||
---
|
||||
values:
|
||||
archives:
|
||||
pkgs:
|
||||
required:
|
||||
- curl
|
||||
- bzip2
|
||||
- gzip
|
||||
required:
|
||||
archives: {}
|
||||
types:
|
||||
- tar
|
||||
- zip
|
||||
- rar
|
||||
unwanted: []
|
||||
wanted: {}
|
||||
chocolatey:
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
unwanted:
|
||||
- GoogleChrome
|
||||
- hg
|
||||
wanted:
|
||||
Firefox:
|
||||
package_args: "/l:en-GB"
|
||||
jq:
|
||||
force: true
|
||||
version: '1.5'
|
||||
notepadplusplus:
|
||||
version: 7.8.8
|
||||
gems:
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
unwanted: []
|
||||
wanted: []
|
||||
golang:
|
||||
clean: []
|
||||
goget: []
|
||||
kernel: windows
|
||||
npms:
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
unwanted: []
|
||||
wanted: []
|
||||
pips:
|
||||
config: []
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
unwanted: []
|
||||
wanted: []
|
||||
pkgs:
|
||||
held: {}
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
unwanted: []
|
||||
wanted: []
|
||||
remote_pkgs: {}
|
||||
retry_options:
|
||||
attempts: 3
|
||||
interval: 60
|
||||
splay: 10
|
||||
until: true
|
||||
rootuser: root
|
||||
snaps:
|
||||
classic: []
|
||||
collides: []
|
||||
packages:
|
||||
- snapd
|
||||
- fuse
|
||||
required:
|
||||
pkgs: []
|
||||
states: []
|
||||
service:
|
||||
- snapd
|
||||
symlink: false
|
||||
unwanted: []
|
||||
wanted: []
|
||||
tmpdir: "/tmp/saltstack-packages-formula-archives"
|
|
@ -3,10 +3,8 @@
|
|||
---
|
||||
# Dependency (node)
|
||||
node:
|
||||
version: 12.16.1-1nodesource1
|
||||
install_from_ppa: true
|
||||
ppa:
|
||||
repository_url: https://deb.nodesource.com/node_12.x
|
||||
pkg:
|
||||
use_upstream_repo: true # Debian family only
|
||||
|
||||
packages:
|
||||
pkgs:
|
||||
|
@ -40,10 +38,10 @@ packages:
|
|||
# Pillar parameters have precedence so, if you add a package here, you
|
||||
# should also add the python pip package you want. Otherwise, the formula
|
||||
# will take care of getting it if needed.
|
||||
- libpython2.7-dev
|
||||
- python-pip
|
||||
- python3-pip
|
||||
wanted:
|
||||
- dxpy
|
||||
# TODO: Investigate why this is longer working
|
||||
# - dxpy
|
||||
- attrs
|
||||
unwanted:
|
||||
- campbel
|
||||
|
@ -128,13 +126,6 @@ packages:
|
|||
source: https://bitbucket.org/ariya/phantomjs/downloads/phantomjs-2.1.1-linux-x86_64.tar.bz2
|
||||
hashsum: md5=1c947d57fce2f21ce0b43fe2ed7cd361
|
||||
# yamllint enable rule:line-length
|
||||
blockbox:
|
||||
dest: /usr/local/src/
|
||||
dl:
|
||||
format: raw
|
||||
# yamllint disable-line rule:line-length
|
||||
source: https://raw.githubusercontent.com/openstack/cinder/master/contrib/block-box/docker-compose.yml
|
||||
hashsum: 1751f8e4f6b4cddd8c4843a0f4473274
|
||||
kubectl:
|
||||
dest: /usr/local/bin
|
||||
dl:
|
||||
|
|
|
@ -89,13 +89,6 @@ packages:
|
|||
source: https://bitbucket.org/ariya/phantomjs/downloads/phantomjs-2.1.1-linux-x86_64.tar.bz2
|
||||
hashsum: md5=1c947d57fce2f21ce0b43fe2ed7cd361
|
||||
# yamllint enable rule:line-length
|
||||
blockbox:
|
||||
dest: /usr/local/src/
|
||||
dl:
|
||||
format: raw
|
||||
# yamllint disable-line rule:line-length
|
||||
source: https://raw.githubusercontent.com/openstack/cinder/master/contrib/block-box/docker-compose.yml
|
||||
hashsum: 1751f8e4f6b4cddd8c4843a0f4473274
|
||||
unwanted:
|
||||
- /usr/local/boring_archive_software
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue