-
Notifications
You must be signed in to change notification settings - Fork 7.9k
Add deb822 apt sources to install section in Debian manual #23249
New issue
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
base: main
Are you sure you want to change the base?
Conversation
✅ Deploy Preview for docsdocker ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
$(. /etc/os-release && echo "$VERSION_CODENAME") stable" | \ | ||
sudo tee /etc/apt/sources.list.d/docker.list > /dev/null | ||
|
||
# Add the repository to Apt sources (new deb822 format, introduced with Trixie): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
deb822 format was introduced in apt version 1.1 ten years before the release of Trixie
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
oh 😅 , thanks for that comment.
Did not know that, I can adjust the comment together with possible other review comments.
Maybe we should just say:
# Add the repository to Apt sources (deb822 format)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Drop this comment and the use of non-deb822 format sources
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Addressed with 7e2650e
(Hope it is still ok to keep the original comment, which just stated # Add the repository to Apt sources:
. The paragraph seemed to me a bit lonely without the comment. At least explanations about (non-)deb822 are gone now).
Description
With Debian Trixie released the new apt sources format RFC822 is now the default.
This PR proposes a way to take this new format into account.
The goal would be to have the follwoing
docker.sources
:Related issues or tickets
#15382 and #23231
Reviews
I am happy to change my PR if needed. Currently I was not sure if we should keep both formats or make the new deb822 format as default.
Maybe we could move the legacy format into an info box?