From 54cffa0cdce73d3977c9e597fb94a2a707134435 Mon Sep 17 00:00:00 2001 From: Jannik Beyerstedt Date: Fri, 1 Nov 2019 23:05:18 +0100 Subject: [PATCH] first commit --- README.md | 35 +++++++++++++++++++++++++++++++++++ defaults/main.yml | 2 ++ handlers/main.yml | 2 ++ meta/main.yml | 23 +++++++++++++++++++++++ tasks/main.yml | 2 ++ vars/main.yml | 2 ++ 6 files changed, 66 insertions(+) create mode 100644 README.md create mode 100644 defaults/main.yml create mode 100644 handlers/main.yml create mode 100644 meta/main.yml create mode 100644 tasks/main.yml create mode 100644 vars/main.yml diff --git a/README.md b/README.md new file mode 100644 index 0000000..5be89f2 --- /dev/null +++ b/README.md @@ -0,0 +1,35 @@ +Tinc +============ + +Setup and configuration of a tinc VPN network. + + +Requirements +------------ + +none + + +Role Variables +-------------- + +TODO + + +Dependencies +------------ + +none + + +Example Playbook +---------------- + +TODO + + +License +------- + +GPLv3 + diff --git a/defaults/main.yml b/defaults/main.yml new file mode 100644 index 0000000..6ba3c95 --- /dev/null +++ b/defaults/main.yml @@ -0,0 +1,2 @@ +--- +# defaults file for tinc \ No newline at end of file diff --git a/handlers/main.yml b/handlers/main.yml new file mode 100644 index 0000000..4ed6a86 --- /dev/null +++ b/handlers/main.yml @@ -0,0 +1,2 @@ +--- +# handlers file for tinc \ No newline at end of file diff --git a/meta/main.yml b/meta/main.yml new file mode 100644 index 0000000..7ff40ce --- /dev/null +++ b/meta/main.yml @@ -0,0 +1,23 @@ +galaxy_info: + author: Jannik Beyerstedt + description: tinc VPN setup and configuration + + # issue_tracker_url: http://example.com/issue/tracker + license: GPL-3.0-only + min_ansible_version: 2.4 + + platforms: + - name: Debian + versions: + - all + - name: Darwin + versions: + - all + + galaxy_tags: [] + # List tags for your role here, one per line. + # Be sure to remove the '[]' above, if you add tags to this list. + +dependencies: [] + # List your role dependencies here, one per line. + # Be sure to remove the '[]' above, if you add tags to this list. diff --git a/tasks/main.yml b/tasks/main.yml new file mode 100644 index 0000000..92d9ae7 --- /dev/null +++ b/tasks/main.yml @@ -0,0 +1,2 @@ +--- +# tasks file for tinc \ No newline at end of file diff --git a/vars/main.yml b/vars/main.yml new file mode 100644 index 0000000..2df52f6 --- /dev/null +++ b/vars/main.yml @@ -0,0 +1,2 @@ +--- +# vars file for tinc \ No newline at end of file