2024-02-17 23:23:33 +01:00
|
|
|
---
|
|
|
|
- name: Run optional versionscheck
|
|
|
|
ansible.builtin.include_tasks:
|
|
|
|
file: 'versioncheck.yml'
|
|
|
|
when: submodules_versioncheck | bool
|
2024-02-18 03:57:44 +01:00
|
|
|
|
|
|
|
- name: Gather versioning information
|
|
|
|
ansible.builtin.include_tasks:
|
|
|
|
file: "set_rustdesk_version.yml"
|
|
|
|
|
|
|
|
- name: Create homebox user and group
|
|
|
|
ansible.builtin.include_tasks:
|
|
|
|
file: 'create_user.yml'
|
|
|
|
|
|
|
|
- name: Install or Update homebox
|
|
|
|
ansible.builtin.include_tasks:
|
|
|
|
file: 'install.yml'
|
|
|
|
|
|
|
|
- name: Create directories
|
|
|
|
ansible.builtin.include_tasks:
|
|
|
|
file: 'directory.yml'
|
|
|
|
|
2024-02-18 17:33:18 +01:00
|
|
|
- name: Setup homebox systemd service
|
2024-02-18 16:13:48 +01:00
|
|
|
ansible.builtin.include_tasks:
|
2024-02-18 17:33:18 +01:00
|
|
|
file: 'install_systemd.yml'
|
2024-02-18 16:13:48 +01:00
|
|
|
when: ansible_service_mgr == "systemd"
|
2024-02-18 05:49:34 +01:00
|
|
|
|
2024-02-18 17:33:18 +01:00
|
|
|
- name: Keys Summary for rustdesk
|
2024-02-18 05:49:34 +01:00
|
|
|
ansible.builtin.include_tasks:
|
2024-02-18 17:33:18 +01:00
|
|
|
file: 'summary.yml'
|
2024-02-18 05:49:34 +01:00
|
|
|
when: ansible_service_mgr == "systemd"
|