From 781835e7521b91ef813a1c95455ac9e91794a8ca Mon Sep 17 00:00:00 2001 From: Markos Chandras Date: Tue, 23 Oct 2018 12:46:25 +0100 Subject: [PATCH] vars: Add missing netcat package Commit afc0e5b1ce66 ("Add memcache flushing handler on db migrations") added an implicit dependency to the 'nc' package but it did not add it to the list of required packages so things break like this: ["/bin/sh: nc: command not found"] As such, we need to add the package to the rest of the distro packages. Fixes: afc0e5b1ce66 ("Add memcache flushing handler on db migrations") Change-Id: Ieab35215e84d6971cd9c2068206ebf2103cbc4b4 --- vars/redhat-7.yml | 3 ++- vars/suse.yml | 3 ++- vars/ubuntu.yml | 3 ++- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/vars/redhat-7.yml b/vars/redhat-7.yml index 1963b3ee..a693fe14 100644 --- a/vars/redhat-7.yml +++ b/vars/redhat-7.yml @@ -18,6 +18,7 @@ keystone_distro_packages: - cronie - cronie-anacron - git + - nc - openssh-server - rsync @@ -84,4 +85,4 @@ keystone_system_service_name: httpd keystone_uwsgi_bin: '/usr/sbin' -keystone_sshd: sshd \ No newline at end of file +keystone_sshd: sshd diff --git a/vars/suse.yml b/vars/suse.yml index 82f65cff..b7fa01b8 100644 --- a/vars/suse.yml +++ b/vars/suse.yml @@ -18,6 +18,7 @@ keystone_distro_packages: - ca-certificates - cronie - git-core + - netcat-openbsd - openssh - rsync @@ -110,4 +111,4 @@ keystone_system_service_name: apache2 keystone_uwsgi_bin: '/usr/sbin' -keystone_sshd: sshd \ No newline at end of file +keystone_sshd: sshd diff --git a/vars/ubuntu.yml b/vars/ubuntu.yml index dff56511..e46cdef1 100644 --- a/vars/ubuntu.yml +++ b/vars/ubuntu.yml @@ -17,6 +17,7 @@ cache_timeout: 600 keystone_distro_packages: - git + - netcat - openssh-server - rsync @@ -98,4 +99,4 @@ keystone_system_service_name: apache2 keystone_uwsgi_bin: '/usr/bin' -keystone_sshd: ssh \ No newline at end of file +keystone_sshd: ssh