blob: 8a39ee19e2befafc2f132322cb800eba980d4d37 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
---
- name: Basic Setup
hosts: ch-gnocchi
roles:
- role: base
- role: sshd
- role: zsh
- role: vm/host
- role: installer/debian/base
- role: installer/openbsd/base
post_tasks:
# you need to reboot for changes to take effect
- name: install network interface config
copy:
dest: /etc/network/interfaces
content: "{{ __interface_configs__ }}"
|