From 35d48deccdfd11dea57af5470567fbaed2cbe7d6 Mon Sep 17 00:00:00 2001 From: Leif Madsen Date: Thu, 18 Aug 2016 19:33:21 -0400 Subject: [PATCH] Resolve single lint failure for ANSIBLE0004 ANSIBLE0004 states that a specific version must be provided to the git module on clone. This change explicitly states the 'master' branch for clone. Change-Id: Id27d7c47c42c052a340314e047ccc7ba66358e73 --- ansible/install/roles/browbeat/tasks/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ansible/install/roles/browbeat/tasks/main.yml b/ansible/install/roles/browbeat/tasks/main.yml index d8abab8ed..b8ba62983 100644 --- a/ansible/install/roles/browbeat/tasks/main.yml +++ b/ansible/install/roles/browbeat/tasks/main.yml @@ -78,7 +78,7 @@ when: browbeat_exists.stat.isdir is defined and browbeat_exists.stat.isdir - name: Clone browbeat on undercloud - git: repo=https://github.com/openstack/browbeat.git dest={{ browbeat_path }} + git: repo=https://github.com/openstack/browbeat.git dest={{ browbeat_path }} version=master when: browbeat_exists.stat.isdir is undefined - name: Generate hosts and ~/.ssh/config on undercloud