14 lines
415 B
YAML
14 lines
415 B
YAML
---
|
|
- name: Hawser
|
|
hosts: all
|
|
become: yes
|
|
tasks:
|
|
- name: Hawser installieren (offizielles Install-Script)
|
|
ansible.builtin.shell:
|
|
cmd: curl -fsSL https://raw.githubusercontent.com/Finsys/hawser/main/scripts/install.sh | bash
|
|
- name: Hawser aktivieren und starten
|
|
ansible.builtin.systemd:
|
|
name: hawser
|
|
enabled: true
|
|
state: started
|
|
daemon_reload: true
|