Add Wireguard playbook and first commit
This commit is contained in:
14
roles/homelab/wireguard/tasks/install_package.yml
Normal file
14
roles/homelab/wireguard/tasks/install_package.yml
Normal file
@@ -0,0 +1,14 @@
|
||||
---
|
||||
- name: "Install default packages"
|
||||
ansible.builtin.apt:
|
||||
name: "{{ default_packages }}"
|
||||
state: present
|
||||
become: true
|
||||
register: deps_installed
|
||||
|
||||
- name: "Install wireguard"
|
||||
ansible.builtin.apt:
|
||||
name: "{{ wireguard_packages }}"
|
||||
state: present
|
||||
become: true
|
||||
register: deps_installed
|
||||
Reference in New Issue
Block a user