From cc4de358837ed6a853b1dbe4158366741d0318fd Mon Sep 17 00:00:00 2001 From: wutianwei Date: Sun, 8 Apr 2018 15:49:27 +0800 Subject: [XCI] Fix ansible synchronize module parameter synchronize module unsupported parameter "recurse", it would be failed, when trying to synchronize the directory. we need change it to "recursive", more information please refer to http://docs.ansible.com/ansible/devel/modules/synchronize_module.html Change-Id: If18ce8a3411ba9425dd573f090c5f4e0c41858e0 Signed-off-by: wutianwei --- xci/playbooks/get-opnfv-scenario-requirements.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xci/playbooks/get-opnfv-scenario-requirements.yml b/xci/playbooks/get-opnfv-scenario-requirements.yml index f37de61a..af97ceb2 100644 --- a/xci/playbooks/get-opnfv-scenario-requirements.yml +++ b/xci/playbooks/get-opnfv-scenario-requirements.yml @@ -80,7 +80,7 @@ dest: "{{ role_path_default }}/{{ item.item.role | basename }}" archive: no times: no - recurse: yes + recursive: yes checksum: yes owner: yes group: yes -- cgit