From 9cce4d160933d9b331ca5a6ab90c0892c883d4e4 Mon Sep 17 00:00:00 2001 From: Jeff Geerling Date: Sat, 26 Jan 2019 22:40:59 -0600 Subject: [PATCH] Fix broken test build for rolling deployments; ensure Ping is installed. --- tests/deployments-rolling.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/deployments-rolling.yml b/tests/deployments-rolling.yml index c4936ea..df4038f 100644 --- a/tests/deployments-rolling.yml +++ b/tests/deployments-rolling.yml @@ -7,5 +7,11 @@ groups: nodejs-api changed_when: false + - name: Update the apt cache. + apt: update_cache=yes cache_valid_time=600 + + - name: Ensure ping is present. + apt: name=iputils-ping state=present + - import_playbook: ../deployments-rolling/playbooks/provision.yml - import_playbook: ../deployments-rolling/playbooks/deploy.yml \ No newline at end of file