Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,6 @@ will be commited.
- testing:altlinux-11 - `ghcr.io/saltstack/salt-ci-containers/testing:altlinux-11`
- testing:amazonlinux-2 - `ghcr.io/saltstack/salt-ci-containers/testing:amazonlinux-2`
- testing:amazonlinux-2023 - `ghcr.io/saltstack/salt-ci-containers/testing:amazonlinux-2023`
- testing:debian-11 - `ghcr.io/saltstack/salt-ci-containers/testing:debian-11`
- testing:debian-12 - `ghcr.io/saltstack/salt-ci-containers/testing:debian-12`
- testing:debian-13 - `ghcr.io/saltstack/salt-ci-containers/testing:debian-13`
- testing:fedora-42 - `ghcr.io/saltstack/salt-ci-containers/testing:fedora-42`
Expand Down
1 change: 0 additions & 1 deletion containers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ custom:
- rockylinux-10
- photon-4
- photon-5
- debian-11
- debian-12
- debian-13
- fedora-42
Expand Down
1 change: 0 additions & 1 deletion custom/testing/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
- testing:altlinux-11 - `ghcr.io/saltstack/salt-ci-containers/testing:altlinux-11`
- testing:amazonlinux-2 - `ghcr.io/saltstack/salt-ci-containers/testing:amazonlinux-2`
- testing:amazonlinux-2023 - `ghcr.io/saltstack/salt-ci-containers/testing:amazonlinux-2023`
- testing:debian-11 - `ghcr.io/saltstack/salt-ci-containers/testing:debian-11`
- testing:debian-12 - `ghcr.io/saltstack/salt-ci-containers/testing:debian-12`
- testing:debian-13 - `ghcr.io/saltstack/salt-ci-containers/testing:debian-13`
- testing:fedora-42 - `ghcr.io/saltstack/salt-ci-containers/testing:fedora-42`
Expand Down
70 changes: 0 additions & 70 deletions custom/testing/debian-11.Dockerfile

This file was deleted.

5 changes: 1 addition & 4 deletions custom/testing/golden-state-tree/os/debian/pkgs/init.sls
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,7 @@ include:
{%- elif grains['osrelease'] != '13' %}
- pkgs.dnsutils
{%- endif %}
{%- if grains['osrelease'] == '11' %}
- pkgs.docker
{%- endif %}
- pkgs.file
- pkgs.gcc
- pkgs.gpg
Expand Down Expand Up @@ -40,8 +38,7 @@ include:
- pkgs.swig
- pkgs.tar
- pkgs.zlib
{#- HashiCorp no longer publishes a Release file for bullseye (11), same as trixie (13) #}
{%- if grains['osrelease'] not in ('11', '13') and grains['osarch'] != 'arm64' %}
{%- if grains['osarch'] != 'arm64' %}
- pkgs.vault
{%- endif %}
- pkgs.jq
Expand Down
3 changes: 2 additions & 1 deletion custom/testing/golden-state-tree/pkgs/docker.sls
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
{%- endif %}

{%- if grains['os'] == 'Debian' %}
{% set pkgver = '=5:28.4.0-1~debian.11~bullseye' %}
{%- set debian_codenames = {'11': 'bullseye', '12': 'bookworm', '13': 'trixie'} %}
{% set pkgver = '=5:28.4.0-1~debian.' + grains['osrelease'] + '~' + debian_codenames[grains['osrelease']] %}
{%- else %}
{% set pkgver = '' %}
{%- endif %}
Expand Down
Loading