blob: e9cc9f9de6de2e46c15adedee1be58a990b8f7a2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
---
- name: Deploy configurations
hosts: "{{ host | default('all') }}"
user: "{{ deploy_user }}"
become: true
roles:
- basic
- security
- dns
- web
- mail
- shadowsocks
# vim: set ft=yaml sw=2: #
|