diff options
author | Trygve Laugstøl <trygvis@inamo.no> | 2021-02-03 16:35:48 +0100 |
---|---|---|
committer | Trygve Laugstøl <trygvis@inamo.no> | 2021-02-03 16:35:48 +0100 |
commit | bafe762ac01d16904c18404283027e426e19bc73 (patch) | |
tree | c22688ad186f5ce635f525704c5035f91b983b68 /module/ri-wireguard/src/main/resources/templates/wireguard | |
parent | 91abd0b04320a9c9d932df195aca38c1cacfcc5a (diff) | |
download | rules-sandbox-bafe762ac01d16904c18404283027e426e19bc73.tar.gz rules-sandbox-bafe762ac01d16904c18404283027e426e19bc73.tar.bz2 rules-sandbox-bafe762ac01d16904c18404283027e426e19bc73.tar.xz rules-sandbox-bafe762ac01d16904c18404283027e426e19bc73.zip |
Code reorganization.
Moving main code to src, keeping modules in modules/
Diffstat (limited to 'module/ri-wireguard/src/main/resources/templates/wireguard')
3 files changed, 0 insertions, 32 deletions
diff --git a/module/ri-wireguard/src/main/resources/templates/wireguard/ansible-host.j2 b/module/ri-wireguard/src/main/resources/templates/wireguard/ansible-host.j2 deleted file mode 100644 index 6cb3a05..0000000 --- a/module/ri-wireguard/src/main/resources/templates/wireguard/ansible-host.j2 +++ /dev/null @@ -1,12 +0,0 @@ -# Generated -wireguard_port: {{ host.publicPort }} -link_address: {{ host.ip }} -network_cidr: {{ host.networkCidr }} -wireguard_peers: -{%- for peer in peers %} - {{ peer.machine.name }}: - public_address: {{ peer.publicName }} - public_port: {{ peer.publicPort }} - gateway: {{ peer.ip }} - network: {{ peer.networkCidr }} -{%- endfor %} diff --git a/module/ri-wireguard/src/main/resources/templates/wireguard/ansible.j2 b/module/ri-wireguard/src/main/resources/templates/wireguard/ansible.j2 deleted file mode 100644 index ad4d034..0000000 --- a/module/ri-wireguard/src/main/resources/templates/wireguard/ansible.j2 +++ /dev/null @@ -1,7 +0,0 @@ -- hosts: wireguard_{{ net.name }} - vars: - wireguard_if: {{ net.name }} - tasks: - - name: wireguard - import_role: - name: wireguard diff --git a/module/ri-wireguard/src/main/resources/templates/wireguard/inventory.j2 b/module/ri-wireguard/src/main/resources/templates/wireguard/inventory.j2 deleted file mode 100644 index 64f3b5b..0000000 --- a/module/ri-wireguard/src/main/resources/templates/wireguard/inventory.j2 +++ /dev/null @@ -1,13 +0,0 @@ -# Generated -all: - hosts: - {%- for host in hosts %} - {{ host.getName() }}: - ansible_host: {{ host.getFqdn() }} - {%- endfor %} - children: - wireguard_{{ net.name }}: - hosts: -{%- for host in hosts %} - {{ host.getName() }}: -{%- endfor %} |