diff options
| author | Ahmed Abdelhalim <[email protected]> | 2025-09-03 02:26:21 +0200 |
|---|---|---|
| committer | Ahmed Abdelhalim <[email protected]> | 2025-09-03 03:26:09 +0200 |
| commit | 7221496f0555bbdd1601ea70da2a9ca99cd34488 (patch) | |
| tree | 412c8a78aaccb9000cad92e2a515ae87922ec353 /roles/gateway/meta | |
| parent | 0985f7534da7ffabec9e707f0a355a8307b1ea97 (diff) | |
Refactor: rename wireguard_gateway to gateway
As the role now functions as a gateway and not just a wireguard gateway
it's better name for clarity
Diffstat (limited to 'roles/gateway/meta')
| -rw-r--r-- | roles/gateway/meta/argument_specs.yml | 10 | ||||
| -rw-r--r-- | roles/gateway/meta/main.yml | 20 |
2 files changed, 30 insertions, 0 deletions
diff --git a/roles/gateway/meta/argument_specs.yml b/roles/gateway/meta/argument_specs.yml new file mode 100644 index 00000000..d6520641 --- /dev/null +++ b/roles/gateway/meta/argument_specs.yml @@ -0,0 +1,10 @@ +--- +argument_specs: + main: + description: "Configure the PI as a network gateway forcing all traffic through it (or through active VPN on it)" + author: "a14m" + options: + gateway_enabled: + description: "Toggle flag for enabling/disabling network gateway configurations" + type: "bool" + default: false diff --git a/roles/gateway/meta/main.yml b/roles/gateway/meta/main.yml new file mode 100644 index 00000000..36df4aad --- /dev/null +++ b/roles/gateway/meta/main.yml @@ -0,0 +1,20 @@ +--- +dependencies: + - "wireguard" + +galaxy_info: + author: "a14m" + description: "Install and configure WireGuard VPN as a network gateway" + company: "kartoffeln.work GmbH." + license: "MIT" + min_ansible_version: "2.18" + platforms: + - name: "ArchLinux" + versions: + - "all" + - name: "Ubuntu" + versions: + - "noble" + - name: "Debian" + versions: + - "bookworm" |
