2024-09-28 12:52:23 +02:00
|
|
|
---
|
|
|
|
- name: Run simple versionscheck (optional)
|
|
|
|
ansible.builtin.include_tasks:
|
|
|
|
file: 'versioncheck.yml'
|
2024-10-08 01:57:40 +02:00
|
|
|
when: submodules_versioncheck | bool
|
2024-09-28 12:52:23 +02:00
|
|
|
|
|
|
|
- name: Create user for pretix
|
|
|
|
ansible.builtin.include_tasks:
|
|
|
|
file: 'user.yml'
|
|
|
|
|
|
|
|
- name: Install required packages
|
|
|
|
ansible.builtin.include_tasks:
|
|
|
|
file: 'packages.yml'
|
2024-10-02 23:56:33 +02:00
|
|
|
|
|
|
|
- name: Create pretix Configuration
|
|
|
|
ansible.builtin.include_tasks:
|
|
|
|
file: 'configure.yml'
|
2024-10-08 01:51:38 +02:00
|
|
|
|
|
|
|
- name: Install pretix
|
|
|
|
ansible.builtin.include_tasks:
|
|
|
|
file: 'install.yml'
|
2024-10-14 12:06:26 +02:00
|
|
|
|
|
|
|
- name: Create systemd service
|
|
|
|
ansible.builtin.include_tasks:
|
|
|
|
file: 'systemd.yml'
|