feat: add preparation tasks

This commit is contained in:
2025-11-16 15:32:20 +01:00
parent 807c6e1c9b
commit fb80445c83

20
tasks/preparation.yml Normal file
View File

@@ -0,0 +1,20 @@
---
- name: Install cron for automatic feed refresh
ansible.builtin.apt:
name: cron
state: present
update_cache: true
- name: Install php dependencies
ansible.builtin.apt:
pkg:
- php
- php-curl
- php-gmp
- php-intl
- php-mbstring
- php-sqlite3
- php-xml
- php-zip
state: present
update_cache: true