php: Ändere Reihenfolge der Paket-Installation.
Verhindert Installation von libapache-mod-php
This commit is contained in:
parent
7b90d5fd33
commit
bb8855a6fc
1 changed files with 5 additions and 3 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue