We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
AptSources uses a set for the list of components. This makes removals of existing entries with at.repo() nearly impossible.
sources.list: deb [arch=amd64] https://deb.debian.org/debian/ bullseye main contrib non-free
deb [arch=amd64] https://deb.debian.org/debian/ bullseye main contrib non-free
code: sources = host.get_fact(AptSources) components returned in this order: contrib non-free main
sources = host.get_fact(AptSources)
The components should be a list in this order: main contrib non-free
I'm currently working on a patch and will add an pull request.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Describe the bug
AptSources uses a set for the list of components.
This makes removals of existing entries with at.repo() nearly impossible.
To Reproduce
sources.list:
deb [arch=amd64] https://deb.debian.org/debian/ bullseye main contrib non-free
code:
sources = host.get_fact(AptSources)
components returned in this order: contrib non-free main
Expected behavior
The components should be a list in this order: main contrib non-free
I'm currently working on a patch and will add an pull request.
The text was updated successfully, but these errors were encountered: