23 lines
307 B
YAML
23 lines
307 B
YAML
---
|
|
|
|
# Configures eth1, DHCP, and routing
|
|
|
|
- name: Matt-Cloud VPN Client Puck Post-VPN COnfig
|
|
hosts: all
|
|
become: yes
|
|
|
|
vars:
|
|
terse_packages: true
|
|
init_light: true
|
|
vpn_init: false
|
|
security_check_only: true
|
|
|
|
tasks:
|
|
|
|
|
|
roles:
|
|
- role: cosmos_init
|
|
- role: puck_vpn
|
|
|
|
...
|