blob: 8eeb5cd7f8b56674f1165a6f7007d1d21f122110 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
---
- name: Basic Setup
hosts: ch-vpn
roles:
- role: apt-repo/base
- role: core/base
- role: core/sshd/base
- role: core/zsh
- role: core/ntp
- role: network/wireguard/base
- role: apt-repo/nordvpn
post_tasks:
- name: install nordvpn
apt:
name: nordvpn
state: present
### nordvpn settings:
# nordvpn set technology NordLynx
# nordvpn set killswitch on
# nordvpn whitelist add subnet 192.168.28.0/24
# nordvpn whitelist add subnet 192.168.32.0/24
|