From 8b558e52e2a975bce9256b5d7ac37dd2110ec0f5 Mon Sep 17 00:00:00 2001 From: Lorin Hochstein Date: Thu, 5 Jan 2017 22:55:21 -0800 Subject: [PATCH] make consistent with book --- ch06/playbooks/mezzanine.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/ch06/playbooks/mezzanine.yml b/ch06/playbooks/mezzanine.yml index 9b968d5..2ee6acf 100644 --- a/ch06/playbooks/mezzanine.yml +++ b/ch06/playbooks/mezzanine.yml @@ -54,10 +54,7 @@ path: "{{ ansible_env.HOME }}/logs" state: directory - name: check out the repository on the host - git: - repo: "{{ repo_url }}" - dest: "{{ proj_path }}" - accept_hostkey: yes + git: repo={{ repo_url }} dest={{ proj_path }} accept_hostkey=yes - name: install Python requirements globally via pip pip: name={{ item }} state=latest with_items: -- 2.44.0