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
Hi all
Seems that on Raspbian Buster, the default config for unattended-upgrades in /etc/apt/apt.conf.d/50unattended-upgrades, is faulty. The default is
Unattended-Upgrade::Origins-Pattern { "origin=Debian,codename=${distro_codename},label=Debian"; "origin=Debian,codename=${distro_codename},label=Debian-Security"; }
This does not work, since there's no such thing as Debian in the repos. This, however, works
Unattended-Upgrade::Origins-Pattern { "origin=Raspbian,codename=${distro_codename},label=Raspbian"; "origin=Raspbian,codename=${distro_codename},label=Raspbian-Security"; }
I don't have a pi with Bullseye here atm, so I don't know the status for that yet.
The text was updated successfully, but these errors were encountered:
That should probably reported to Raspbian: https://bugs.launchpad.net/raspbian
Sorry, something went wrong.
No branches or pull requests
Hi all
Seems that on Raspbian Buster, the default config for unattended-upgrades in /etc/apt/apt.conf.d/50unattended-upgrades, is faulty. The default is
Unattended-Upgrade::Origins-Pattern {
"origin=Debian,codename=${distro_codename},label=Debian";
"origin=Debian,codename=${distro_codename},label=Debian-Security";
}
This does not work, since there's no such thing as Debian in the repos. This, however, works
Unattended-Upgrade::Origins-Pattern {
"origin=Raspbian,codename=${distro_codename},label=Raspbian";
"origin=Raspbian,codename=${distro_codename},label=Raspbian-Security";
}
I don't have a pi with Bullseye here atm, so I don't know the status for that yet.
The text was updated successfully, but these errors were encountered: