Skip to content
Snippets Groups Projects
Commit 5481e4a5 authored by Adam Lewenberg's avatar Adam Lewenberg
Browse files

only install ubuntu-archive-keyring in buster or sid

parent 000e1ad5
No related branches found
No related tags found
No related merge requests found
......@@ -96,7 +96,15 @@ class su_debuild (
## Install ubuntu-archive-keyring
# We add the Ubuntu keyring in case we want to build Ubuntu packages.
package {'ubuntu-archive-keyring': ensure => installed }
# This package is not (yet) in bullseye, so we only install it for
# buster, stretch, or sid.
case $::lsbdistcodename {
'buster', 'stretch', 'sid': {
package {
'ubuntu-archive-keyring': ensure => installed;
}
}
}
# Additional packages to build kernel modules.
case $::lsbdistcodename {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment