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"
|
- name: "packages | Sammle Package Fakten"
|
||||||
package_facts:
|
ansible.builtin.package_facts:
|
||||||
manager: apt
|
manager: apt
|
||||||
|
|
||||||
|
# php-fpm muss vor php installiert werden
|
||||||
|
# Andernfalls wird libapache-mod-php installiert
|
||||||
- name: "packages | Installiere Pakete"
|
- name: "packages | Installiere Pakete"
|
||||||
apt:
|
ansible.builtin.apt:
|
||||||
pkg:
|
pkg:
|
||||||
|
- php-fpm
|
||||||
- php
|
- php
|
||||||
- php-apcu
|
- php-apcu
|
||||||
- php-fpm
|
|
||||||
- php-zip
|
- php-zip
|
||||||
|
|
Loading…
Reference in a new issue