27 lines
375 B
YAML
27 lines
375 B
YAML
---
|
|
|
|
# Configures eth1, DHCP, and routing
|
|
|
|
- name: Matt-Cloud VPN Client Puck Pre-VPN Config
|
|
hosts: all
|
|
become: yes
|
|
|
|
vars:
|
|
terse_packages: true
|
|
init_light: true
|
|
vpn_init: true
|
|
update_grub_timeout: false
|
|
public_deploy: true
|
|
rename_host: true
|
|
add_domain: false
|
|
|
|
|
|
tasks:
|
|
|
|
|
|
roles:
|
|
- role: cosmos_init
|
|
- role: puck_vpn
|
|
|
|
...
|