This repository has been archived on 2023-12-26. You can view files and clone it, but cannot push or open issues or pull requests.
lewis/ansible/playbooks/concourse.yml

16 lines
375 B
YAML
Raw Normal View History

- name: Install Concourse
hosts: concourse
pre_tasks:
- name: Delete externally managed environment file
shell:
cmd: "rm /usr/lib/python*/EXTERNALLY-MANAGED"
register: rm
changed_when: "rm.rc == 0"
failed_when: "false"
roles:
- {role: apt, tags: apt}
- {role: docker, tags: docker}
- {role: concourse, tags: concourse}