Files
playbook-sample/site.yml
ebesson e53a7da36c
All checks were successful
continuous-integration/drone/push Build is passing
feat: initial commit
2021-01-15 21:32:00 +01:00

24 lines
394 B
YAML
Executable File

---
- hosts: all
gather_facts: False
tasks:
- name: Install python for Ansible
raw: test -e /usr/bin/python || (apt -y update && apt install -y python2.7 python-minimal sudo)
changed_when: False
- hosts: middleware
become: True
roles:
- geerlingguy.docker
- traefik
tags:
- traefik
- hosts: gitea
become: True
roles:
- gitea
tags:
- gitea