infra-ansible/roles/deploy_system_config/tasks/clone_system_config_locally.yml
Ricardo Carrillo Cruz 02383a4161 Rename deploy_site_pp to deploy_system_config
We deploy a whole system-config repo, not just site.pp,
thus rename makes more sense
2015-04-29 15:17:22 +02:00

9 lines
281 B
YAML

---
# Clone system-config locally in the command machine
- git: repo="{{ system_config_repo_url }}"
dest=/tmp/infra-ansible/system-config/production
version="{{ system_config_branch }}"
accept_hostkey=True
force=True
tags: clone_system_config_locally