From 65c9c1d5ecc59bad7bbaa643039bb5b39489a892 Mon Sep 17 00:00:00 2001 From: Lance Bragstad Date: Thu, 9 Feb 2017 17:34:00 +0000 Subject: [PATCH] Add libpq-dev to install os_tempest plugins We were getting errors locally [0] that complained about libpq-dev not being installed. This was causing os_tempest plugins installations to fail, snowballing the run. This commit adds libpq-dev to the ubuntu 16.04 variables so that we ensure it's installed before we get to that step. [0] http://cdn.pasteraw.com/1sdkssty5uvgq315hj7g5lvwpm8xyob Change-Id: I82eb012ac9d3a630e072e6b873419b86fa39333b --- vars/redhat-7.yml | 1 + vars/ubuntu-16.04.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/vars/redhat-7.yml b/vars/redhat-7.yml index 1417e742..be2b3209 100644 --- a/vars/redhat-7.yml +++ b/vars/redhat-7.yml @@ -15,5 +15,6 @@ tempest_distro_packages: - git + - postgresql-devel - rsync - which diff --git a/vars/ubuntu-16.04.yml b/vars/ubuntu-16.04.yml index 52d933a8..c33ec5ef 100644 --- a/vars/ubuntu-16.04.yml +++ b/vars/ubuntu-16.04.yml @@ -15,4 +15,5 @@ tempest_distro_packages: - git-core + - libpq-dev - rsync