From 98d24c2f81e6ea9e6e57227cd178e2ea05129b08 Mon Sep 17 00:00:00 2001 From: Stefan Mewes Date: Sun, 12 Apr 2026 19:01:23 +0200 Subject: [PATCH] =?UTF-8?q?=C3=BCberfl=C3=BCssige=20Datei=20entfernt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tasks/lighthouse.yml | 37 ------------------------------------- 1 file changed, 37 deletions(-) delete mode 100644 tasks/lighthouse.yml diff --git a/tasks/lighthouse.yml b/tasks/lighthouse.yml deleted file mode 100644 index bf6738b..0000000 --- a/tasks/lighthouse.yml +++ /dev/null @@ -1,37 +0,0 @@ ---- -- name: Ensure CA cert/key exists - command: - chdir: /opt/nebula - cmd: ./nebula-cert ca -name "{{ nebula_network_name }}" -duration "{{ nebula_ca_cert_duration }}" - creates: /opt/nebula/ca.crt - -- name: Ensure lighthouse cert/key exists - command: - chdir: /opt/nebula - cmd: ./nebula-cert sign -name "{{ nebula_lighthouse_hostname }}" -ip "{{ nebula_lighthouse_internal_ip_addr }}/{{ nebula_network_cidr }}" -duration "{{ nebula_client_cert_duration }}" - creates: "/opt/nebula/{{ nebula_lighthouse_hostname }}.crt" - -- name: Ensure lighthouse is configured - template: - src: lighthouse_config.yml.j2 - dest: /opt/nebula/config.yml - owner: root - group: root - mode: '0400' - notify: restart nebula - -- name: Ensure lighthouse service exists - template: - src: lighthouse.service.j2 - dest: /etc/systemd/system/lighthouse.service - owner: root - group: root - mode: '0644' - -- name: Ensure lighthouse service is enabled and running - systemd: - name: lighthouse - daemon_reload: yes - enabled: yes - masked: no - state: started