Replaced .infinito.service and .infinito.timer by SOFTWARE_NAME suffix, optimized LICENSE link and update OIDC Realm and ID conf

This commit is contained in:
2025-08-14 14:39:18 +02:00
parent 1b638c366e
commit 0228014d34
377 changed files with 549 additions and 508 deletions

View File

@@ -7,7 +7,7 @@ This role manages WireGuard on a client system. It sets up essential services an
## Overview
Optimized for client configurations, this role:
- Deploys a systemd service (`set-mtu.infinito.service`) and its associated script to set the MTU on specified network interfaces.
- Deploys a systemd service (`set-mtu{{ SYS_SERVICE_SUFFIX }}`) and its associated script to set the MTU on specified network interfaces.
- Uses a Jinja2 template to generate the `set-mtu.sh` script.
- Ensures that the MTU is configured correctly before starting WireGuard with [wg-quick](https://www.wireguard.com/quickstart/).

View File

@@ -1,6 +1,6 @@
- name: "restart set-mtu.infinito.service"
- name: "restart set-mtu service"
systemd:
name: set-mtu.infinito.service
name: set-mtu{{ SYS_SERVICE_SUFFIX }}
state: restarted
enabled: yes
daemon_reload: yes

View File

@@ -2,7 +2,7 @@
galaxy_info:
author: "Kevin Veen-Birkenbach"
description: "Manages WireGuard on a client system by deploying services and scripts to set MTU on network interfaces and ensure optimal VPN connectivity."
license: "Infinito.Nexus NonCommercial License (CNCL)"
license: "Infinito.Nexus NonCommercial License"
license_url: "https://s.infinito.nexus/license"
company: |
Kevin Veen-Birkenbach

View File

@@ -1,11 +1,11 @@
- name: create set-mtu.infinito.service
copy:
src: set-mtu.service
dest: /etc/systemd/system/set-mtu.infinito.service
notify: restart set-mtu.infinito.service
- name: create set-mtu service
template:
src: set-mtu.service.j2
dest: /etc/systemd/system/set-mtu{{ SYS_SERVICE_SUFFIX }}
notify: restart set-mtu service
- name: create set-mtu.sh
template:
src: set-mtu.sh.j2
dest: /usr/local/bin/set-mtu.sh
notify: restart set-mtu.infinito.service
notify: restart set-mtu service

View File

@@ -1,10 +1,10 @@
[Unit]
Description=set MTU
Before=wg-quick@wg0.infinito.service
Before=wg-quick@wg0{{ SYS_SERVICE_SUFFIX }}
[Service]
Type=oneshot
ExecStart=bash /usr/local/bin/set-mtu.sh
[Install]
RequiredBy=wg-quick@wg0.infinito.service
RequiredBy=wg-quick@wg0{{ SYS_SERVICE_SUFFIX }}