commit fd0ba694b545216e1ec92915bf14cd7200c5a344 Author: Jonathan Rosser Date: Mon Oct 12 17:10:20 2020 +0100 Add rsync to container base image Keystone requires rsync to be already present in the container image becasue it runs serial=1 and uses rsync between multiple keystone hosts. rsync will not be present on the target host in this situation. Change-Id: I730ea2b7e6d913af020a81993f0b0e37c90a1a59 diff --git a/vars/debian.yml b/vars/debian.yml index 930f22b..43e08fd 100644 --- a/vars/debian.yml +++ b/vars/debian.yml @@ -42,6 +42,7 @@ _lxc_cache_distro_packages: - openssh-server - python3 - libpython3.7 + - rsync # os_keystone runs serial=1 and uses rsync before the distro packages have been installed on all keystone targets - sudo - systemd - systemd-sysv diff --git a/vars/redhat.yml b/vars/redhat.yml index c4f0e0f..21f0539 100644 --- a/vars/redhat.yml +++ b/vars/redhat.yml @@ -38,7 +38,7 @@ _lxc_cache_distro_packages: - policycoreutils - python3 - python3-libs - - rsync + - rsync # os_keystone runs serial=1 and uses rsync before the distro packages have been installed on all keystone targets - setup - sudo - systemd diff --git a/vars/ubuntu-18.04.yml b/vars/ubuntu-18.04.yml index c5ca411..4e39d59 100644 --- a/vars/ubuntu-18.04.yml +++ b/vars/ubuntu-18.04.yml @@ -42,6 +42,7 @@ _lxc_cache_distro_packages: - openssh-server - python3 - libpython3.6 + - rsync # os_keystone runs serial=1 and uses rsync before the distro packages have been installed on all keystone targets - sudo - systemd - systemd-sysv diff --git a/vars/ubuntu-20.04.yml b/vars/ubuntu-20.04.yml index c6ecc24..f9b469a 100644 --- a/vars/ubuntu-20.04.yml +++ b/vars/ubuntu-20.04.yml @@ -41,6 +41,7 @@ _lxc_cache_distro_packages: - openssh-server - python3 - libpython3.8 + - rsync # os_keystone runs serial=1 and uses rsync before the distro packages have been installed on all keystone targets - sudo - systemd - systemd-sysv