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