blob: 2ab5177052748d356032715ef683ef735d78cee1 (
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
- role: installer/openbsd
post_tasks:
# you need to reboot for changes to take effect
- name: install network interface config
copy:
dest: /etc/network/interfaces
content: "{{ __interface_configs__ }}"
|