blob: 961c291d0ee05106df6ff43fc4777f4cf4cebf08 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
---
- name: Deploy configurations
hosts: "{{ host | default('all') }}"
user: "{{ deploy_user }}"
become: true
roles:
- role: basic
tags: basic
- role: security
tags: security
- role: dns
tags: dns
- role: web
tags: web
- role: mail
tags: mail
- role: shadowsocks
tags: shadowsocks
- role: znc
tags: znc
- role: radicale
tags: radicale
- role: git
tags: git
# vim: set ft=yaml sw=2: #
|