From fb80445c83a483c1ba56b7f7bcb91a20c337db3c Mon Sep 17 00:00:00 2001 From: Kharec Date: Sun, 16 Nov 2025 15:32:20 +0100 Subject: [PATCH] feat: add preparation tasks --- tasks/preparation.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 tasks/preparation.yml diff --git a/tasks/preparation.yml b/tasks/preparation.yml new file mode 100644 index 0000000..f05ac1f --- /dev/null +++ b/tasks/preparation.yml @@ -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