21 lines
646 B
YAML
21 lines
646 B
YAML
---
|
|||
|
|
# Deploy/reconcile the self-hosted RustDesk server (hbbs + hbbr) on hk2.
|
||
|
|
#
|
||
|
|
# Safe by default: run with --check for a read-only report, or supply
|
||
|
|
# rustdesk_confirm=true to deploy the compose file and recreate the stack.
|
||
|
|
#
|
||
|
|
# # Read-only report
|
||
|
|
# ansible-playbook playbooks/rustdesk.yml --limit rustdesk --check
|
||
|
|
#
|
||
|
|
# # Apply (deploy compose + recreate hbbs/hbbr)
|
||
|
|
# ansible-playbook playbooks/rustdesk.yml --limit rustdesk \
|
||
|
|
# -e '{"rustdesk_confirm": true}'
|
||
|
|
- name: Deploy and reconcile RustDesk server
|
||
|
|
hosts: rustdesk
|
||
|
|
become: true
|
||
|
|
gather_facts: false
|
||
|
|
serial: 1
|
||
|
|
roles:
|
||
|
|
- role: rustdesk
|
||
|
|
tags: [rustdesk, mutating]
|