From f442239cecfe2b3a278c30773b135640f51bbf7c Mon Sep 17 00:00:00 2001 From: Ludovic Poujol Date: Wed, 1 Apr 2020 18:05:20 +0200 Subject: [PATCH] (fix) packweb-apache: Don't try to install PHPMyAdmin on Buster as it's not available --- CHANGELOG.md | 1 + packweb-apache/tasks/main.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 61843e07..1adcc0fe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -106,6 +106,7 @@ The **patch** part changes incrementally at each release. * minifirewall: Properly detect alert5.sh to turn on firewall at boot * packweb-apache: Add missing dependency to evoacme role * php: Chose the debian version repo archive for packages.sury.org +* packweb-apache: Don't try to install PHPMyAdmin on Buster as it's not available ### Removed * clamav : do not install the zoo package anymore diff --git a/packweb-apache/tasks/main.yml b/packweb-apache/tasks/main.yml index 6fb47e0b..575c885d 100644 --- a/packweb-apache/tasks/main.yml +++ b/packweb-apache/tasks/main.yml @@ -78,6 +78,7 @@ - include: apache.yml - include: phpmyadmin.yml + when: ansible_distribution_release != "buster" - include: awstats.yml