Skip to content

fix(map.jinja): fix debian security repo url#82

Open
sylvainfaivre wants to merge 1 commit intosaltstack-formulas:masterfrom
sylvainfaivre:bullseye
Open

fix(map.jinja): fix debian security repo url#82
sylvainfaivre wants to merge 1 commit intosaltstack-formulas:masterfrom
sylvainfaivre:bullseye

Conversation

@sylvainfaivre
Copy link
Copy Markdown

URL scheme for the Debian security suite changed with Debian Bullseye, see 5.1.3. in https://www.debian.org/releases/bullseye/amd64/release-notes.en.txt

Debian releases older than Bullseye are EOL and not supported by Salt, so no need to maintain backwards compatibility.

Comment thread apt/map.jinja
'security-stable': {
'distro': distribution ~ '/updates',
'distro': distribution ~ '-security',
'url': 'http://security.debian.org/',
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hey @sylvainfaivre,

It looks like there is one more change needed to ensure this matches the new spec you referenced.

Currently this renders the URL for the security repo as http://security.debian.org/ when it should be http://security.debian.org/debian-security

Suggested change
'url': 'http://security.debian.org/',
'url': 'http://security.debian.org/debian-security',

After this change it looks like it should be ready to merge in.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants