php: Ändere Reihenfolge der Paket-Installation.

Verhindert Installation von libapache-mod-php
This commit is contained in:
phil 2022-12-28 17:00:14 +01:00
parent 7b90d5fd33
commit bb8855a6fc

View file

@ -1,12 +1,14 @@
---
- name: "packages | Sammle Package Fakten"
package_facts:
ansible.builtin.package_facts:
manager: apt
# php-fpm muss vor php installiert werden
# Andernfalls wird libapache-mod-php installiert
- name: "packages | Installiere Pakete"
apt:
ansible.builtin.apt:
pkg:
- php-fpm
- php
- php-apcu
- php-fpm
- php-zip