You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
398 B
YAML
19 lines
398 B
YAML
4 years ago
|
---
|
||
|
- hosts: all
|
||
|
remote_user: vagrant
|
||
|
become: true
|
||
|
gather_facts: true
|
||
|
tasks:
|
||
|
- name: Init pacman
|
||
|
raw: |
|
||
|
pacman-key --init
|
||
|
pacman-key --populate archlinux
|
||
|
changed_when: false
|
||
|
ignore_errors: true
|
||
|
when: ansible_distribution|lower == 'archlinux'
|
||
|
|
||
|
- name: Include WireGuard role
|
||
|
include_role:
|
||
|
name: githubixx.ansible_role_wireguard
|
||
|
|