initial pfannkuchen

This commit is contained in:
sascha 2026-03-30 15:19:20 +02:00
parent b6dafc7a73
commit 4d305fa19f
99 changed files with 3575 additions and 321 deletions

32
wstunnel-cleanup.yml Normal file
View file

@ -0,0 +1,32 @@
---
- name: wstunnel entfernen
hosts: hysteria2
become: yes
tasks:
- name: wstunnel Service stoppen und deaktivieren
systemd:
name: wstunnel
state: stopped
enabled: false
ignore_errors: true
- name: wstunnel systemd Unit entfernen
file:
path: /etc/systemd/system/wstunnel.service
state: absent
notify: reload systemd
- name: wstunnel Binary entfernen
file:
path: /usr/local/bin/wstunnel
state: absent
- name: wstunnel Config entfernen
file:
path: /etc/wstunnel
state: absent
handlers:
- name: reload systemd
systemd:
daemon_reload: true