Files
ansible-role-freshrss/tasks/preparation.yml
2025-11-16 15:32:20 +01:00

21 lines
375 B
YAML

---
- 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