ansible-role-tinc/tasks/setup-Debian.yml

13 lines
218 B
YAML
Raw Permalink Normal View History

2019-11-03 15:27:52 +00:00
---
# Tinc/Setup: Install tinc application - Debian Version
- name: Setup - Install
become: true
ansible.builtin.apt:
2019-11-03 15:27:52 +00:00
name: "{{ packages }}"
state: present
vars:
packages:
2019-11-12 20:34:32 +00:00
- tinc
diff: false