You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
build-debs: prefer [distro][number] over distribution codenames
this fixesPowerDNS/pdns#11925
debianXX sorts after the currently popular codenames (bullseye, bookworm)
ubuntuXX.YY sorts after all ubuntu releases since 15.04
tested on
* ubuntu trusty 14.04 (ubuntu14.04)
* ubuntu jammy 22.04 (ubuntu22.04)
* debian bookworm 12 (debian12)
* debian testing (debian13) - this requires distro-info-data
distro_release="$(source /etc/os-release; [ !-z${ID} ] && [ !-z${VERSION_ID} ] &&echo -n ${ID}${VERSION_ID})"# this will look like 'debian12' or 'ubuntu22.04'
0 commit comments