mirror of
https://github.com/trailofbits/algo.git
synced 2025-07-25 06:53:00 +02:00
* Refactoring, Linting and additional tests * Vultr: Undefined variable and deprecation notes fix * Travis-CI enable linters * Azure: Update python requirements * Update main.yml * Update install.sh * Add missing roles to ansible-lint * Linting for skipped roles * add .ansible-lint config
17 lines
324 B
YAML
17 lines
324 B
YAML
---
|
|
- name: BSD | WireGuard installed
|
|
package:
|
|
name: wireguard
|
|
state: present
|
|
|
|
- name: Set OS specific facts
|
|
set_fact:
|
|
service_name: wireguard
|
|
tags: always
|
|
|
|
- name: BSD | Configure rc script
|
|
copy:
|
|
src: wireguard.sh
|
|
dest: /usr/local/etc/rc.d/wireguard
|
|
mode: "0755"
|
|
notify: restart wireguard
|