Compare commits

..

No commits in common. "master" and "v0.14.0" have entirely different histories.

56 changed files with 804 additions and 3240 deletions

View file

@ -11,48 +11,6 @@ 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:
@ -86,8 +44,54 @@ jobs:
New-LocalUser $env:machine_user -Password $password
Add-LocalGroupMember -Group "Administrators" -Member $env:machine_user
- name: 'Set up WinRM'
run: |
Set-WSManQuickConfig -Force
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"}
- name: 'Run Bundler'
run: |
ruby --version

1
.gitignore vendored
View file

@ -127,7 +127,6 @@ tmp/
# `salt-formula` -- Vagrant Specific files
.vagrant
top.sls
!test/salt/pillar/top.sls
# `suricata-formula` -- Platform binaries
*.rpm

View file

@ -130,14 +130,12 @@ 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-stream8-tiamat-py3: {extends: '.test_instance_failure_permitted'}
# redhat8-centos-8-tiamat-py3: {extends: '.test_instance'}
# centos-centos-7-tiamat-py3: {extends: '.test_instance'}
# amazon-amazonlinux-2-tiamat-py3: {extends: '.test_instance'}
# redhat8-oraclelinux-8-tiamat-py3: {extends: '.test_instance'}
@ -147,15 +145,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-stream8-master-py3: {extends: '.test_instance_failure_permitted'}
redhat8-centos-8-master-py3: {extends: '.test_instance'}
centos-centos-7-master-py3: {extends: '.test_instance'}
# fedora-fedora-36-master-py3: {extends: '.test_instance_failure_permitted'}
# fedora-fedora-35-master-py3: {extends: '.test_instance'}
# fedora-fedora-34-master-py3: {extends: '.test_instance'}
# fedora-fedora-33-master-py3: {extends: '.test_instance'}
suse-opensuse-leap-153-master-py3: {extends: '.test_instance'}
suse-opensuse-tmbl-latest-master-py3: {extends: '.test_instance_failure_permitted'}
suse-opensuse-leap-152-master-py3: {extends: '.test_instance'}
suse-opensuse-tmbl-latest-master-py3: {extends: '.test_instance'}
amazon-amazonlinux-2-master-py3: {extends: '.test_instance'}
redhat8-oraclelinux-8-master-py3: {extends: '.test_instance'}
centos-oraclelinux-7-master-py3: {extends: '.test_instance'}
@ -164,37 +162,77 @@ 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-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
# 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'}
###############################################################################
# `release` stage: `semantic-release`

View file

@ -3,18 +3,6 @@
---
# 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
@ -30,7 +18,7 @@ repos:
additional_dependencies: ['@commitlint/config-conventional@8.3.4']
always_run: true
- repo: https://github.com/rubocop-hq/rubocop
rev: v1.30.1
rev: v1.9.1
hooks:
- id: rubocop
name: Check Ruby files with rubocop
@ -38,14 +26,14 @@ repos:
always_run: true
pass_filenames: false
- repo: https://github.com/shellcheck-py/shellcheck-py
rev: v0.8.0.4
rev: v0.7.1.1
hooks:
- id: shellcheck
name: Check shell scripts with shellcheck
files: ^.*\.(sh|bash|ksh)$
types: []
- repo: https://github.com/adrienverge/yamllint
rev: v1.26.3
rev: v1.23.0
hooks:
- id: yamllint
name: Check YAML syntax with yamllint
@ -53,7 +41,7 @@ repos:
always_run: true
pass_filenames: false
- repo: https://github.com/warpnet/salt-lint
rev: v0.8.0
rev: v0.3.0
hooks:
- id: salt-lint
name: Check Salt files using salt-lint

View file

@ -16,8 +16,4 @@ 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`

View file

@ -86,10 +86,9 @@ 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-stream8-tiamat-py3
# - env: INSTANCE=redhat8-centos-8-tiamat-py3
# - env: INSTANCE=centos-centos-7-tiamat-py3
# - env: INSTANCE=amazon-amazonlinux-2-tiamat-py3
# - env: INSTANCE=redhat8-oraclelinux-8-tiamat-py3
@ -99,14 +98,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-stream8-master-py3
- env: INSTANCE=redhat8-centos-8-master-py3
- env: INSTANCE=centos-centos-7-master-py3
# - env: INSTANCE=fedora-fedora-36-master-py3
# - env: INSTANCE=fedora-fedora-35-master-py3
# - env: INSTANCE=fedora-fedora-34-master-py3
# - env: INSTANCE=fedora-fedora-33-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
@ -116,36 +115,77 @@ 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-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
# - 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
## Define the release stage that runs `semantic-release`
- stage: 'release'

View file

@ -4,20 +4,19 @@ 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)|152
<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/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)|38
<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/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)|4
<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/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 2022-04-28.
Auto-generated by a [forked version](https://github.com/myii/maintainer) of [gaocegege/maintainer](https://github.com/gaocegege/maintainer) on 2021-09-06.

View file

@ -1,63 +1,5 @@
# 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)

View file

@ -22,7 +22,6 @@
/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

View file

@ -1,7 +1,7 @@
name: packages
os: Debian, Ubuntu, Raspbian, RedHat, Fedora, CentOS, Suse, openSUSE
os_family: Debian, RedHat, Suse
version: 0.16.0
version: 0.14.0
release: 1
minimum_version: 2017.7
summary: packages formula

View file

@ -1,6 +1,6 @@
# frozen_string_literal: true
source ENV.fetch('PROXY_RUBYGEMSORG', 'https://rubygems.org')
source '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.7.2'
gem 'kitchen-salt', '>= 0.6.3'
group :vagrant do
gem 'kitchen-vagrant'

View file

@ -1,20 +1,17 @@
GIT
remote: https://gitlab.com/saltstack-formulas/infrastructure/inspec
revision: aaef842906a5666f0fc0b4f186b4dd3498f5b28c
revision: 4fa6455347ea3c7123743dfd9796728cb0b77bb9
branch: ssf
specs:
inspec (5.18.15)
cookstyle
inspec (4.41.11)
faraday_middleware (>= 0.12.2, < 1.1)
inspec-core (= 5.18.15)
inspec-core (= 4.41.11)
mongo (= 2.13.2)
progress_bar (~> 1.3.3)
rake
train (~> 3.10)
train-aws (~> 0.2)
train (~> 3.0)
train-aws (~> 0.1)
train-habitat (~> 0.1)
train-winrm (~> 0.2)
inspec-core (5.18.15)
inspec-core (4.41.11)
addressable (~> 2.4)
chef-telemetry (~> 1.0, >= 1.0.8)
faraday (>= 0.9.0, < 1.5)
@ -27,268 +24,234 @@ 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.10)
train-core (~> 3.0)
tty-prompt (~> 0.17)
tty-table (~> 0.10)
GIT
remote: https://gitlab.com/saltstack-formulas/infrastructure/kitchen-docker
revision: 9a09bc1e571e25f3ccabf4725ca2048d970fff82
revision: 428c89fc250b3790abad5ecb0afe0c3d4956084c
branch: ssf
specs:
kitchen-docker (2.12.0)
kitchen-docker (2.11.0)
test-kitchen (>= 1.0.0)
GEM
remote: https://rubygems.org/
specs:
activesupport (7.0.3.1)
activesupport (6.1.4.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)
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-eventstream (1.1.1)
aws-partitions (1.492.0)
aws-sdk-apigateway (1.66.0)
aws-sdk-core (~> 3, >= 3.119.0)
aws-sigv4 (~> 1.1)
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-sdk-apigatewayv2 (1.35.0)
aws-sdk-core (~> 3, >= 3.119.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.55.0)
aws-sdk-core (~> 3, >= 3.127.0)
aws-sdk-athena (1.40.0)
aws-sdk-core (~> 3, >= 3.119.0)
aws-sigv4 (~> 1.1)
aws-sdk-autoscaling (1.63.0)
aws-sdk-autoscaling (1.61.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.50.0)
aws-sdk-core (~> 3, >= 3.127.0)
aws-sdk-budgets (1.40.0)
aws-sdk-core (~> 3, >= 3.119.0)
aws-sigv4 (~> 1.1)
aws-sdk-cloudformation (1.70.0)
aws-sdk-core (~> 3, >= 3.127.0)
aws-sdk-cloudformation (1.55.0)
aws-sdk-core (~> 3, >= 3.119.0)
aws-sigv4 (~> 1.1)
aws-sdk-cloudfront (1.65.0)
aws-sdk-core (~> 3, >= 3.127.0)
aws-sdk-cloudfront (1.55.0)
aws-sdk-core (~> 3, >= 3.119.0)
aws-sigv4 (~> 1.1)
aws-sdk-cloudhsm (1.39.0)
aws-sdk-core (~> 3, >= 3.127.0)
aws-sdk-cloudhsm (1.32.0)
aws-sdk-core (~> 3, >= 3.119.0)
aws-sigv4 (~> 1.1)
aws-sdk-cloudhsmv2 (1.42.0)
aws-sdk-core (~> 3, >= 3.127.0)
aws-sdk-cloudhsmv2 (1.35.0)
aws-sdk-core (~> 3, >= 3.119.0)
aws-sigv4 (~> 1.1)
aws-sdk-cloudtrail (1.49.0)
aws-sdk-core (~> 3, >= 3.127.0)
aws-sdk-cloudtrail (1.37.0)
aws-sdk-core (~> 3, >= 3.119.0)
aws-sigv4 (~> 1.1)
aws-sdk-cloudwatch (1.64.0)
aws-sdk-core (~> 3, >= 3.127.0)
aws-sdk-cloudwatch (1.54.0)
aws-sdk-core (~> 3, >= 3.119.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.53.0)
aws-sdk-core (~> 3, >= 3.127.0)
aws-sdk-cloudwatchlogs (1.44.0)
aws-sdk-core (~> 3, >= 3.119.0)
aws-sigv4 (~> 1.1)
aws-sdk-codecommit (1.51.0)
aws-sdk-core (~> 3, >= 3.127.0)
aws-sdk-codecommit (1.44.0)
aws-sdk-core (~> 3, >= 3.119.0)
aws-sigv4 (~> 1.1)
aws-sdk-codedeploy (1.49.0)
aws-sdk-core (~> 3, >= 3.127.0)
aws-sdk-codedeploy (1.42.0)
aws-sdk-core (~> 3, >= 3.119.0)
aws-sigv4 (~> 1.1)
aws-sdk-codepipeline (1.53.0)
aws-sdk-core (~> 3, >= 3.127.0)
aws-sdk-codepipeline (1.46.0)
aws-sdk-core (~> 3, >= 3.119.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.53.0)
aws-sdk-cognitoidentityprovider (1.51.0)
aws-sdk-core (~> 3, >= 3.112.0)
aws-sigv4 (~> 1.1)
aws-sdk-configservice (1.79.0)
aws-sdk-core (~> 3, >= 3.127.0)
aws-sdk-configservice (1.65.0)
aws-sdk-core (~> 3, >= 3.119.0)
aws-sigv4 (~> 1.1)
aws-sdk-core (3.131.2)
aws-sdk-core (3.119.1)
aws-eventstream (~> 1, >= 1.0.2)
aws-partitions (~> 1, >= 1.525.0)
aws-partitions (~> 1, >= 1.239.0)
aws-sigv4 (~> 1.1)
jmespath (~> 1, >= 1.6.1)
aws-sdk-costandusagereportservice (1.40.0)
aws-sdk-core (~> 3, >= 3.127.0)
jmespath (~> 1.0)
aws-sdk-costandusagereportservice (1.33.0)
aws-sdk-core (~> 3, >= 3.119.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.75.0)
aws-sdk-core (~> 3, >= 3.127.0)
aws-sdk-dynamodb (1.62.0)
aws-sdk-core (~> 3, >= 3.119.0)
aws-sigv4 (~> 1.1)
aws-sdk-ec2 (1.322.0)
aws-sdk-core (~> 3, >= 3.127.0)
aws-sdk-ec2 (1.260.0)
aws-sdk-core (~> 3, >= 3.119.0)
aws-sigv4 (~> 1.1)
aws-sdk-ecr (1.56.0)
aws-sdk-core (~> 3, >= 3.127.0)
aws-sdk-ecr (1.44.0)
aws-sdk-core (~> 3, >= 3.119.0)
aws-sigv4 (~> 1.1)
aws-sdk-ecrpublic (1.12.0)
aws-sdk-core (~> 3, >= 3.127.0)
aws-sdk-ecrpublic (1.5.0)
aws-sdk-core (~> 3, >= 3.119.0)
aws-sigv4 (~> 1.1)
aws-sdk-ecs (1.100.0)
aws-sdk-core (~> 3, >= 3.127.0)
aws-sdk-ecs (1.84.0)
aws-sdk-core (~> 3, >= 3.119.0)
aws-sigv4 (~> 1.1)
aws-sdk-efs (1.54.0)
aws-sdk-core (~> 3, >= 3.127.0)
aws-sdk-efs (1.42.0)
aws-sdk-core (~> 3, >= 3.119.0)
aws-sigv4 (~> 1.1)
aws-sdk-eks (1.75.0)
aws-sdk-core (~> 3, >= 3.127.0)
aws-sdk-eks (1.61.0)
aws-sdk-core (~> 3, >= 3.119.0)
aws-sigv4 (~> 1.1)
aws-sdk-elasticache (1.78.0)
aws-sdk-core (~> 3, >= 3.127.0)
aws-sdk-elasticache (1.60.0)
aws-sdk-core (~> 3, >= 3.119.0)
aws-sigv4 (~> 1.1)
aws-sdk-elasticbeanstalk (1.51.0)
aws-sdk-core (~> 3, >= 3.127.0)
aws-sdk-elasticbeanstalk (1.44.0)
aws-sdk-core (~> 3, >= 3.119.0)
aws-sigv4 (~> 1.1)
aws-sdk-elasticloadbalancing (1.40.0)
aws-sdk-core (~> 3, >= 3.127.0)
aws-sdk-elasticloadbalancing (1.33.0)
aws-sdk-core (~> 3, >= 3.119.0)
aws-sigv4 (~> 1.1)
aws-sdk-elasticloadbalancingv2 (1.78.0)
aws-sdk-core (~> 3, >= 3.127.0)
aws-sdk-elasticloadbalancingv2 (1.66.0)
aws-sdk-core (~> 3, >= 3.119.0)
aws-sigv4 (~> 1.1)
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-sdk-elasticsearchservice (1.54.0)
aws-sdk-core (~> 3, >= 3.119.0)
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.48.0)
aws-sdk-core (~> 3, >= 3.127.0)
aws-sdk-firehose (1.39.0)
aws-sdk-core (~> 3, >= 3.119.0)
aws-sigv4 (~> 1.1)
aws-sdk-glue (1.88.0)
aws-sdk-glue (1.87.0)
aws-sdk-core (~> 3, >= 3.112.0)
aws-sigv4 (~> 1.1)
aws-sdk-guardduty (1.58.0)
aws-sdk-core (~> 3, >= 3.127.0)
aws-sdk-guardduty (1.47.0)
aws-sdk-core (~> 3, >= 3.119.0)
aws-sigv4 (~> 1.1)
aws-sdk-iam (1.69.0)
aws-sdk-core (~> 3, >= 3.127.0)
aws-sdk-iam (1.59.0)
aws-sdk-core (~> 3, >= 3.119.0)
aws-sigv4 (~> 1.1)
aws-sdk-kafka (1.50.0)
aws-sdk-core (~> 3, >= 3.127.0)
aws-sdk-kafka (1.38.0)
aws-sdk-core (~> 3, >= 3.119.0)
aws-sigv4 (~> 1.1)
aws-sdk-kinesis (1.41.0)
aws-sdk-core (~> 3, >= 3.127.0)
aws-sdk-kinesis (1.34.0)
aws-sdk-core (~> 3, >= 3.119.0)
aws-sigv4 (~> 1.1)
aws-sdk-kms (1.57.0)
aws-sdk-core (~> 3, >= 3.127.0)
aws-sdk-kms (1.46.0)
aws-sdk-core (~> 3, >= 3.119.0)
aws-sigv4 (~> 1.1)
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-sdk-lambda (1.67.0)
aws-sdk-core (~> 3, >= 3.119.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.26.0)
aws-sdk-ram (1.25.0)
aws-sdk-core (~> 3, >= 3.112.0)
aws-sigv4 (~> 1.1)
aws-sdk-rds (1.148.0)
aws-sdk-core (~> 3, >= 3.127.0)
aws-sdk-rds (1.125.0)
aws-sdk-core (~> 3, >= 3.119.0)
aws-sigv4 (~> 1.1)
aws-sdk-redshift (1.84.0)
aws-sdk-core (~> 3, >= 3.127.0)
aws-sdk-redshift (1.68.0)
aws-sdk-core (~> 3, >= 3.119.0)
aws-sigv4 (~> 1.1)
aws-sdk-route53 (1.63.0)
aws-sdk-core (~> 3, >= 3.127.0)
aws-sdk-route53 (1.54.0)
aws-sdk-core (~> 3, >= 3.119.0)
aws-sigv4 (~> 1.1)
aws-sdk-route53domains (1.40.0)
aws-sdk-core (~> 3, >= 3.127.0)
aws-sdk-route53domains (1.32.0)
aws-sdk-core (~> 3, >= 3.119.0)
aws-sigv4 (~> 1.1)
aws-sdk-route53resolver (1.37.0)
aws-sdk-core (~> 3, >= 3.127.0)
aws-sdk-route53resolver (1.29.0)
aws-sdk-core (~> 3, >= 3.119.0)
aws-sigv4 (~> 1.1)
aws-sdk-s3 (1.114.0)
aws-sdk-core (~> 3, >= 3.127.0)
aws-sdk-s3 (1.100.0)
aws-sdk-core (~> 3, >= 3.119.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.67.0)
aws-sdk-core (~> 3, >= 3.127.0)
aws-sdk-securityhub (1.50.0)
aws-sdk-core (~> 3, >= 3.119.0)
aws-sigv4 (~> 1.1)
aws-sdk-servicecatalog (1.60.0)
aws-sdk-servicecatalog (1.59.0)
aws-sdk-core (~> 3, >= 3.112.0)
aws-sigv4 (~> 1.1)
aws-sdk-ses (1.41.0)
aws-sdk-core (~> 3, >= 3.120.0)
aws-sdk-ses (1.40.0)
aws-sdk-core (~> 3, >= 3.119.0)
aws-sigv4 (~> 1.1)
aws-sdk-shield (1.48.0)
aws-sdk-core (~> 3, >= 3.127.0)
aws-sdk-shield (1.40.0)
aws-sdk-core (~> 3, >= 3.119.0)
aws-sigv4 (~> 1.1)
aws-sdk-signer (1.32.0)
aws-sdk-core (~> 3, >= 3.120.0)
aws-sdk-sms (1.31.0)
aws-sdk-core (~> 3, >= 3.119.0)
aws-sigv4 (~> 1.1)
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-sdk-sns (1.44.0)
aws-sdk-core (~> 3, >= 3.119.0)
aws-sigv4 (~> 1.1)
aws-sdk-sns (1.53.0)
aws-sdk-core (~> 3, >= 3.127.0)
aws-sdk-sqs (1.42.0)
aws-sdk-core (~> 3, >= 3.119.0)
aws-sigv4 (~> 1.1)
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-sdk-ssm (1.116.0)
aws-sdk-core (~> 3, >= 3.119.0)
aws-sigv4 (~> 1.1)
aws-sdk-states (1.39.0)
aws-sdk-core (~> 3, >= 3.112.0)
aws-sigv4 (~> 1.1)
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-transfer (1.32.0)
aws-sdk-core (~> 3, >= 3.112.0)
aws-sigv4 (~> 1.1)
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-sigv4 (1.2.4)
aws-eventstream (~> 1, >= 1.0.2)
azure_graph_rbac (0.17.2)
ms_rest_azure (~> 0.12.0)
@ -301,11 +264,11 @@ GEM
azure_mgmt_storage (0.23.0)
ms_rest_azure (~> 0.12.0)
bcrypt_pbkdf (1.1.0)
bson (4.15.0)
bson (4.12.1)
builder (3.2.4)
chef-config (17.10.0)
chef-config (17.4.38)
addressable
chef-utils (= 17.10.0)
chef-utils (= 17.4.38)
fuzzyurl
mixlib-config (>= 2.2.12, < 4.0)
mixlib-shellout (>= 2.0, < 4.0)
@ -313,22 +276,20 @@ GEM
chef-telemetry (1.1.1)
chef-config
concurrent-ruby (~> 1.0)
chef-utils (17.10.0)
chef-utils (17.4.38)
concurrent-ruby
coderay (1.1.3)
concurrent-ruby (1.1.10)
cookstyle (7.32.1)
rubocop (= 1.25.1)
concurrent-ruby (1.1.9)
declarative (0.0.20)
diff-lcs (1.5.0)
diff-lcs (1.4.4)
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.3.0)
ed25519 (1.2.4)
erubi (1.10.0)
excon (0.92.3)
excon (0.85.0)
faraday (1.4.3)
faraday-em_http (~> 1.0)
faraday-em_synchrony (~> 1.0)
@ -347,7 +308,7 @@ GEM
faraday-net_http_persistent (1.2.0)
faraday_middleware (1.0.0)
faraday (~> 1.0)
ffi (1.15.5)
ffi (1.15.3)
fuzzyurl (0.9.0)
google-api-client (0.52.0)
addressable (~> 2.5, >= 2.5.1)
@ -367,28 +328,26 @@ GEM
signet (~> 0.14)
gssapi (1.3.1)
ffi (>= 1.0.1)
gyoku (1.4.0)
gyoku (1.3.1)
builder (>= 2.1.2)
rexml (~> 3.0)
hashie (4.1.0)
highline (2.0.3)
http-cookie (1.0.5)
http-cookie (1.0.4)
domain_name (~> 0.5)
httpclient (2.8.3)
i18n (1.12.0)
i18n (1.8.10)
concurrent-ruby (~> 1.0)
inifile (3.0.0)
jmespath (1.6.1)
json (2.6.2)
jwt (2.4.1)
kitchen-inspec (2.6.1)
jmespath (1.4.0)
json (2.5.1)
jwt (2.2.3)
kitchen-inspec (2.5.0)
hashie (>= 3.4, <= 5.0)
inspec (>= 2.2.64, < 7.0)
inspec (>= 2.2.64, < 5.0)
test-kitchen (>= 2.7, < 4)
kitchen-salt (0.7.2)
kitchen-salt (0.6.3)
hashie (>= 3.5)
test-kitchen (>= 1.4)
kitchen-vagrant (1.12.0)
kitchen-vagrant (1.10.0)
test-kitchen (>= 1.4, < 4)
license-acceptance (2.1.13)
pastel (~> 0.7)
@ -396,21 +355,21 @@ GEM
tty-box (~> 0.6)
tty-prompt (~> 0.20)
little-plugger (1.1.4)
logging (2.3.1)
logging (2.3.0)
little-plugger (~> 1.1)
multi_json (~> 1.14)
memoist (0.16.2)
method_source (1.0.0)
mini_mime (1.1.2)
minitest (5.16.2)
mixlib-config (3.0.27)
mini_mime (1.1.1)
minitest (5.14.4)
mixlib-config (3.0.9)
tomlrb
mixlib-install (3.12.19)
mixlib-install (3.12.16)
mixlib-shellout
mixlib-versioning
thor
mixlib-log (3.0.9)
mixlib-shellout (3.2.7)
mixlib-shellout (3.2.5)
chef-utils
mixlib-versioning (1.2.12)
mongo (2.13.2)
@ -425,72 +384,51 @@ GEM
faraday-cookie_jar (~> 0.0.6)
ms_rest (~> 0.7.6)
multi_json (1.15.0)
multipart-post (2.2.3)
multipart-post (2.1.1)
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)
options (2.3.2)
os (1.1.4)
parallel (1.22.1)
parser (3.1.2.0)
ast (~> 2.4.1)
os (1.1.1)
parallel (1.20.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.7)
rainbow (3.1.1)
rake (13.0.6)
regexp_parser (2.5.0)
representable (3.2.0)
public_suffix (4.0.6)
representable (3.1.1)
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.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)
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)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.11.0)
rspec-support (~> 3.10.0)
rspec-its (1.3.0)
rspec-core (>= 3.0.0)
rspec-expectations (>= 3.0.0)
rspec-mocks (3.11.1)
rspec-mocks (3.10.2)
diff-lcs (>= 1.2.0, < 2.0)
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)
rspec-support (~> 3.10.0)
rspec-support (3.10.2)
ruby2_keywords (0.0.5)
rubyntlm (0.6.3)
rubyzip (2.3.2)
semverse (3.0.2)
signet (0.17.0)
addressable (~> 2.8)
faraday (>= 0.17.5, < 3.a)
semverse (3.0.0)
signet (0.15.0)
addressable (~> 2.3)
faraday (>= 0.17.3, < 2.0)
jwt (>= 1.5, < 3.0)
multi_json (~> 1.10)
sslshake (1.3.1)
@ -499,7 +437,7 @@ GEM
unicode-display_width (>= 1.5, < 3.0)
unicode_utils (~> 1.4)
strings-ansi (0.2.0)
test-kitchen (3.3.1)
test-kitchen (3.0.0)
bcrypt_pbkdf (~> 1.0)
chef-utils (>= 16.4.35)
ed25519 (~> 1.2)
@ -513,11 +451,11 @@ GEM
winrm (~> 2.0)
winrm-elevated (~> 1.0)
winrm-fs (~> 1.1)
thor (1.2.1)
thor (1.1.0)
timeliness (0.3.10)
tomlrb (1.3.0)
trailblazer-option (0.1.2)
train (3.10.1)
trailblazer-option (0.1.1)
train (3.8.1)
activesupport (>= 6.0.3.1)
azure_graph_rbac (~> 0.16)
azure_mgmt_key_vault (~> 0.17)
@ -528,16 +466,14 @@ GEM
google-api-client (>= 0.23.9, <= 0.52.0)
googleauth (>= 0.6.6, <= 0.14.0)
inifile (~> 3.0)
train-core (= 3.10.1)
train-core (= 3.8.1)
train-winrm (~> 0.2)
train-aws (0.2.24)
aws-sdk-alexaforbusiness (~> 1.0)
aws-sdk-amplify (~> 1.32.0)
train-aws (0.2.8)
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.64)
aws-sdk-autoscaling (>= 1.22, < 1.62)
aws-sdk-batch (>= 1.36, < 1.48)
aws-sdk-budgets (~> 1.0)
aws-sdk-cloudformation (~> 1.0)
@ -552,7 +488,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.54)
aws-sdk-cognitoidentityprovider (>= 1.46, < 1.52)
aws-sdk-configservice (~> 1.21)
aws-sdk-core (~> 3.0)
aws-sdk-costandusagereportservice (~> 1.6)
@ -569,44 +505,35 @@ 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.89)
aws-sdk-glue (>= 1.71, < 1.88)
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.27)
aws-sdk-ram (>= 1.21, < 1.26)
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.61)
aws-sdk-ses (~> 1.41.0)
aws-sdk-servicecatalog (>= 1.48, < 1.60)
aws-sdk-ses (~> 1.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-synthetics (~> 1.19.0)
aws-sdk-transfer (>= 1.26, < 1.35)
aws-sdk-waf (~> 1.43.0)
train-core (3.10.1)
aws-sdk-transfer (>= 1.26, < 1.33)
train-core (3.8.1)
addressable (~> 2.5)
ffi (!= 1.13.0)
json (>= 1.8, < 3.0)
@ -614,7 +541,7 @@ GEM
net-scp (>= 1.2, < 4.0)
net-ssh (>= 2.9, < 7.0)
train-habitat (0.2.22)
train-winrm (0.2.13)
train-winrm (0.2.12)
winrm (>= 2.3.6, < 3.0)
winrm-elevated (~> 1.2.2)
winrm-fs (~> 1.0)
@ -641,8 +568,8 @@ GEM
uber (0.1.0)
unf (0.1.4)
unf_ext
unf_ext (0.0.8.2)
unicode-display_width (2.2.0)
unf_ext (0.0.7.7)
unicode-display_width (2.0.0)
unicode_utils (1.4.0)
winrm (2.3.6)
builder (>= 2.1.2)
@ -663,6 +590,7 @@ GEM
rubyzip (~> 2.0)
winrm (~> 2.0)
wisper (2.0.1)
zeitwerk (2.4.2)
PLATFORMS
ruby
@ -671,7 +599,7 @@ DEPENDENCIES
inspec!
kitchen-docker!
kitchen-inspec (>= 2.5.0)
kitchen-salt (>= 0.7.2)
kitchen-salt (>= 0.6.3)
kitchen-vagrant
BUNDLED WITH

View file

@ -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

View file

@ -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>`_
- 152
- 103
* - :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>`_
- 38
- 36
* - :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>`_
- 4
- 3
* - :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,9 +43,6 @@ 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
@ -56,4 +53,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 2022-04-28.
Auto-generated by a `forked version <https://github.com/myii/maintainer>`_ of `gaocegege/maintainer <https://github.com/gaocegege/maintainer>`_ on 2021-09-06.

View file

@ -2,75 +2,6 @@
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)
-------------------------------------------------------------------------------------------------------------

View file

@ -9,8 +9,8 @@ driver:
gui: false
ssh:
shell: /bin/sh
linked_clone: true
<% unless ENV['CI'] %>
linked_clone: true
synced_folders:
- - '.kitchen/kitchen-vagrant/%{instance_name}/vagrant'
- '/vagrant'

View file

@ -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

View file

@ -44,10 +44,6 @@ 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
@ -56,9 +52,9 @@ platforms:
driver:
image: saltimages/salt-tiamat-py3:ubuntu-18.04
run_command: /lib/systemd/systemd
- name: centos-stream8-tiamat-py3
- name: centos-8-tiamat-py3
driver:
image: saltimages/salt-tiamat-py3:centos-stream8
image: saltimages/salt-tiamat-py3:centos-8
- name: centos-7-tiamat-py3
driver:
image: saltimages/salt-tiamat-py3:centos-7
@ -103,10 +99,6 @@ 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
@ -115,18 +107,18 @@ platforms:
driver:
image: saltimages/salt-master-py3:ubuntu-18.04
run_command: /lib/systemd/systemd
- name: centos-stream8-master-py3
- name: centos-8-master-py3
driver:
image: saltimages/salt-master-py3:centos-stream8
image: saltimages/salt-master-py3:centos-8
- name: centos-7-master-py3
driver:
image: saltimages/salt-master-py3:centos-7
- name: fedora-36-master-py3
- name: fedora-34-master-py3
driver:
image: saltimages/salt-master-py3:fedora-36
- name: fedora-35-master-py3
image: saltimages/salt-master-py3:fedora-34
- name: fedora-33-master-py3
driver:
image: saltimages/salt-master-py3:fedora-35
image: saltimages/salt-master-py3:fedora-33
- name: opensuse-leap-153-master-py3
driver:
image: saltimages/salt-master-py3:opensuse-leap-15.3
@ -134,6 +126,13 @@ 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
@ -167,140 +166,337 @@ platforms:
driver:
image: saltimages/salt-master-py3:rockylinux-8
## SALT `3004.1`
- name: debian-11-3004-1-py3
## SALT `3003.2`
- name: debian-11-3003-2-py3
driver:
image: saltimages/salt-3004.1-py3:debian-11
image: saltimages/salt-3003.2-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-3004-1-py3
- name: debian-10-3003-2-py3
driver:
image: saltimages/salt-3004.1-py3:debian-10
image: saltimages/salt-3003.2-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-3004-1-py3
- name: debian-9-3003-2-py3
driver:
image: saltimages/salt-3004.1-py3:debian-9
image: saltimages/salt-3003.2-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-2204-3004-1-py3
- name: ubuntu-2004-3003-2-py3
driver:
image: saltimages/salt-3004.1-py3:ubuntu-22.04
image: saltimages/salt-3003.2-py3:ubuntu-20.04
run_command: /lib/systemd/systemd
- name: ubuntu-2004-3004-1-py3
- name: ubuntu-1804-3003-2-py3
driver:
image: saltimages/salt-3004.1-py3:ubuntu-20.04
image: saltimages/salt-3003.2-py3:ubuntu-18.04
run_command: /lib/systemd/systemd
- name: ubuntu-1804-3004-1-py3
- name: centos-8-3003-2-py3
driver:
image: saltimages/salt-3004.1-py3:ubuntu-18.04
run_command: /lib/systemd/systemd
- name: centos-stream8-3004-1-py3
image: saltimages/salt-3003.2-py3:centos-8
- name: centos-7-3003-2-py3
driver:
image: saltimages/salt-3004.1-py3:centos-stream8
- name: centos-7-3004-1-py3
image: saltimages/salt-3003.2-py3:centos-7
- name: fedora-34-3003-2-py3
driver:
image: saltimages/salt-3004.1-py3:centos-7
- name: fedora-36-3004-1-py3
image: saltimages/salt-3003.2-py3:fedora-34
- name: fedora-33-3003-2-py3
driver:
image: saltimages/salt-3004.1-py3:fedora-36
- name: fedora-35-3004-1-py3
image: saltimages/salt-3003.2-py3:fedora-33
- name: opensuse-leap-153-3003-2-py3
driver:
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
image: saltimages/salt-3003.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-tmbl-latest-3004-0-py3
- name: opensuse-leap-152-3003-2-py3
driver:
image: saltimages/salt-3004.0-py3:opensuse-tumbleweed-latest
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
# Workaround to avoid intermittent failures on `opensuse-tumbleweed`:
# => SCP did not finish successfully (255): (Net::SCP::Error)
transport:
max_ssh_sessions: 1
## SALT `3003.4`
- name: debian-10-3003-4-py3
## SALT `3001.7`
- name: debian-10-3001-7-py3
driver:
image: saltimages/salt-3003.4-py3:debian-10
image: saltimages/salt-3001.7-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-4-py3
- name: debian-9-3001-7-py3
driver:
image: saltimages/salt-3003.4-py3:debian-9
image: saltimages/salt-3001.7-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-4-py3
- name: ubuntu-2004-3001-7-py3
driver:
image: saltimages/salt-3003.4-py3:ubuntu-20.04
image: saltimages/salt-3001.7-py3:ubuntu-20.04
run_command: /lib/systemd/systemd
- name: ubuntu-1804-3003-4-py3
- name: ubuntu-1804-3001-7-py3
driver:
image: saltimages/salt-3003.4-py3:ubuntu-18.04
image: saltimages/salt-3001.7-py3:ubuntu-18.04
run_command: /lib/systemd/systemd
- name: centos-stream8-3003-4-py3
- name: centos-8-3001-7-py3
driver:
image: saltimages/salt-3003.4-py3:centos-stream8
- name: centos-7-3003-4-py3
image: saltimages/salt-3001.7-py3:centos-8
- name: centos-7-3001-7-py3
driver:
image: saltimages/salt-3003.4-py3:centos-7
- name: amazonlinux-2-3003-4-py3
image: saltimages/salt-3001.7-py3:centos-7
- name: fedora-34-3001-7-py3
driver:
image: saltimages/salt-3003.4-py3:amazonlinux-2
- name: oraclelinux-8-3003-4-py3
image: saltimages/salt-3001.7-py3:fedora-34
- name: fedora-33-3001-7-py3
driver:
image: saltimages/salt-3003.4-py3:oraclelinux-8
- name: oraclelinux-7-3003-4-py3
image: saltimages/salt-3001.7-py3:fedora-33
- name: opensuse-leap-153-3001-7-py3
driver:
image: saltimages/salt-3003.4-py3:oraclelinux-7
- name: almalinux-8-3003-4-py3
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
driver:
image: saltimages/salt-3003.4-py3:almalinux-8
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
verifier:
# https://www.inspec.io/
@ -319,11 +515,16 @@ suites:
- debian-11-master-py3
- debian-10-master-py3
- debian-9-master-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
- 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
provisioner:
dependencies:
- name: node
@ -347,17 +548,18 @@ 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-2204-3004-1-py3
- ubuntu-2004-3004-1-py3
- ubuntu-1804-3004-1-py3
- ubuntu-2004-3003-4-py3
- ubuntu-1804-3003-4-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
provisioner:
dependencies:
- name: golang
@ -381,10 +583,14 @@ suites:
- path: test/integration/default
- name: fedora
includes:
- fedora-36-master-py3
- fedora-35-master-py3
- fedora-36-3004-1-py3
- fedora-35-3004-1-py3
- 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
provisioner:
state_top:
base:
@ -403,21 +609,23 @@ suites:
- path: test/integration/default
- name: redhat8
includes:
- centos-stream8-tiamat-py3
- centos-8-tiamat-py3
- oraclelinux-8-tiamat-py3
- almalinux-8-tiamat-py3
- rockylinux-8-tiamat-py3
- centos-stream8-master-py3
- centos-8-master-py3
- oraclelinux-8-master-py3
- almalinux-8-master-py3
- rockylinux-8-master-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
- 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
provisioner:
dependencies:
- name: epel
@ -445,10 +653,14 @@ suites:
- oraclelinux-7-tiamat-py3
- centos-7-master-py3
- oraclelinux-7-master-py3
- centos-7-3004-1-py3
- oraclelinux-7-3004-1-py3
- centos-7-3003-4-py3
- oraclelinux-7-3003-4-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
provisioner:
dependencies:
- name: epel
@ -474,8 +686,10 @@ suites:
includes:
- amazonlinux-2-tiamat-py3
- amazonlinux-2-master-py3
- amazonlinux-2-3004-1-py3
- amazonlinux-2-3003-4-py3
- amazonlinux-2-3003-2-py3
- amazonlinux-2-3002-6-py3
- amazonlinux-2-3001-7-py3
- amazonlinux-2-3000-9-py3
provisioner:
dependencies:
- name: epel
@ -500,9 +714,19 @@ suites:
- name: suse
includes:
- opensuse-leap-153-master-py3
- opensuse-leap-152-master-py3
- opensuse-tmbl-latest-master-py3
- opensuse-leap-153-3004-0-py3
- opensuse-tmbl-latest-3004-0-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
provisioner:
state_top:
base:
@ -522,7 +746,11 @@ suites:
- name: arch
includes:
- arch-base-latest-master-py3
- arch-base-latest-3004-1-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
provisioner:
state_top:
base:
@ -543,8 +771,16 @@ suites:
includes:
- gentoo-stage3-latest-master-py3
- gentoo-stage3-systemd-master-py3
- gentoo-stage3-latest-3004-1-py3
- gentoo-stage3-systemd-3004-1-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
provisioner:
state_top:
base:
@ -565,13 +801,12 @@ 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:

View file

@ -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] if 'destname' not in archive else archive.destname %}
{%- set archivename = archive.dl.source.split('/')[-1] %}
packages-archive-wanted-target-{{ package }}-directory:
file.directory:

View file

@ -22,15 +22,6 @@ 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:

View file

@ -20,10 +20,6 @@ CentOS:
snaps:
packages: []
CentOS Stream:
snaps:
packages: []
AlmaLinux:
snaps:
packages: []

View file

@ -139,9 +139,15 @@ 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

View file

@ -7,16 +7,16 @@ sed -i -e "s_^\(version:\).*_\1 ${1}_" FORMULA
###############################################################################
# (B) Use `m2r2` to convert automatically produced `.md` docs to `.rst`
# (B) Use `m2r` to convert automatically produced `.md` docs to `.rst`
###############################################################################
# Install `m2r2`
pip3 install m2r2
# Install `m2r`
pip3 install m2r
# Copy and then convert the `.md` docs
cp ./*.md docs/
cd docs/ || exit
m2r2 --overwrite ./*.md
m2r --overwrite ./*.md
# Change excess `H1` headings to `H2` in converted `CHANGELOG.rst`
sed -i -e '/^=.*$/s/=/-/g' CHANGELOG.rst

View file

@ -1,47 +0,0 @@
# 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

View file

@ -10,6 +10,7 @@ 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

View file

@ -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

View file

@ -1,95 +0,0 @@
# 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

View file

@ -1,96 +0,0 @@
# 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

View file

@ -1,94 +0,0 @@
# 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

View file

@ -1,95 +0,0 @@
# 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

View file

@ -1,96 +0,0 @@
# 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

View file

@ -1,133 +0,0 @@
# 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

View file

@ -1,133 +0,0 @@
# 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

View file

@ -1,133 +0,0 @@
# 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

View file

@ -1,98 +0,0 @@
# 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

View file

@ -1,98 +0,0 @@
# 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

View file

@ -1,94 +0,0 @@
# 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

View file

@ -1,94 +0,0 @@
# 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

View file

@ -1,90 +0,0 @@
# 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

View file

@ -1,90 +0,0 @@
# 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

View file

@ -1,97 +0,0 @@
# 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

View file

@ -1,98 +0,0 @@
# 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

View file

@ -1,95 +0,0 @@
# 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

View file

@ -1,122 +0,0 @@
# 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

View file

@ -1,122 +0,0 @@
# 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

View file

@ -24,5 +24,4 @@ supports:
- platform-name: gentoo
- platform-name: almalinux
- platform-name: rocky
- platform-name: mac_os_x
- platform: windows

View file

@ -21,5 +21,4 @@ supports:
- platform-name: gentoo
- platform-name: almalinux
- platform-name: rocky
- platform-name: mac_os_x
- platform: windows

View file

@ -4,7 +4,6 @@
# 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'
@ -22,8 +21,7 @@ class SystemResource < Inspec.resource(1)
family: build_platform_family,
name: build_platform_name,
release: build_platform_release,
finger: build_platform_finger,
codename: build_platform_codename
finger: build_platform_finger
}
end
@ -57,16 +55,12 @@ 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'
@ -93,46 +87,4 @@ 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

View file

@ -1,47 +0,0 @@
# 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

View file

@ -1,85 +0,0 @@
# 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"

View file

@ -1,85 +0,0 @@
# 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"

View file

@ -1,85 +0,0 @@
# 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"

View file

@ -1,85 +0,0 @@
# 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"

View file

@ -1,85 +0,0 @@
# 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"

View file

@ -3,8 +3,10 @@
---
# Dependency (node)
node:
pkg:
use_upstream_repo: true # Debian family only
version: 12.16.1-1nodesource1
install_from_ppa: true
ppa:
repository_url: https://deb.nodesource.com/node_12.x
packages:
pkgs:
@ -38,10 +40,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.
- python3-pip
- libpython2.7-dev
- python-pip
wanted:
# TODO: Investigate why this is longer working
# - dxpy
- dxpy
- attrs
unwanted:
- campbel
@ -126,6 +128,13 @@ 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:

View file

@ -89,6 +89,13 @@ 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