debian: install more things from backports

We were installing udev/systemd from backports by selecting which
package to get. But with systemd 241-5~bpo9+1 update we need more.

And then we need newer iptables due to dependencies.

Change-Id: Ifc075a0142738deb65fa3c73460b57cad61a5d4b
This commit is contained in:
Marcin Juszkiewicz 2019-12-03 09:52:12 +00:00
parent 77b664315d
commit a7e45cbc8b
2 changed files with 13 additions and 1 deletions

View File

@ -321,7 +321,11 @@ COPY apt_preferences /etc/apt/preferences.d/kolla-custom
%}
{% if base_distro in ['debian'] %}
{% set base_apt_packages = base_apt_packages + [ 'udev/stretch-backports' ] %}
{% set base_apt_packages = base_apt_packages + [
'systemd/stretch-backports',
'systemd-sysv/stretch-backports',
'udev/stretch-backports'
] %}
{% endif %}
{% set base_compiler_packages = [

View File

@ -0,0 +1,8 @@
# NOTE(hrw): we need versions from stretch-backports
Package: iptables libip*tc0 libxtables12
Pin: version 1.6.2-*
Pin-Priority: 550
Package: *udev* *systemd*
Pin: version 241-*
Pin-Priority: 550