commit 676f309eb9f959a2ceae079284453be84add7e66 Author: Jonathan Rosser Date: Wed Oct 7 21:57:06 2020 +0100 Include libpython and rsync for centos in lxc base image Some but not all roles use ansible-role-uwsgi to install libpython. Those which do not require libpython to be in the container base image. Some roles use rsync for copying rootwrap files (cinder as example) and in the long term this should be added to the distro packages for those roles. In the meantime we add it back to the container base for centos to allow other patches to merge. Change-Id: Iaf92e78758c159db7e969a89a889c4d897f5045c diff --git a/vars/debian.yml b/vars/debian.yml index 5e02965..930f22b 100644 --- a/vars/debian.yml +++ b/vars/debian.yml @@ -41,6 +41,7 @@ _lxc_cache_distro_packages: - netbase - openssh-server - python3 + - libpython3.7 - sudo - systemd - systemd-sysv diff --git a/vars/redhat.yml b/vars/redhat.yml index 6fb01a4..c4f0e0f 100644 --- a/vars/redhat.yml +++ b/vars/redhat.yml @@ -37,6 +37,8 @@ _lxc_cache_distro_packages: - openssh-server - policycoreutils - python3 + - python3-libs + - rsync - setup - sudo - systemd diff --git a/vars/ubuntu-18.04.yml b/vars/ubuntu-18.04.yml index c92c2cf..c5ca411 100644 --- a/vars/ubuntu-18.04.yml +++ b/vars/ubuntu-18.04.yml @@ -41,6 +41,7 @@ _lxc_cache_distro_packages: - netbase - openssh-server - python3 + - libpython3.6 - sudo - systemd - systemd-sysv diff --git a/vars/ubuntu-20.04.yml b/vars/ubuntu-20.04.yml index b1e784e..c6ecc24 100644 --- a/vars/ubuntu-20.04.yml +++ b/vars/ubuntu-20.04.yml @@ -40,6 +40,7 @@ _lxc_cache_distro_packages: - netbase - openssh-server - python3 + - libpython3.8 - sudo - systemd - systemd-sysv