Since I use PHP7-FPM, I do not need the Apache/PHP module apache2-mod_php7. But there are some dependencies to apache2-mod_php7, so I get apache2-mod_php7 automatically: # rpm -e --test apache2-mod_php7 error: Failed dependencies: apache2-mod_php7 is needed by (installed) mythweb-29-1.2.noarch mod_php_any >= 7.0.0 is needed by (installed) nextcloud-16.0.4-81.1.noarch mod_php_any < 7.4.0 is needed by (installed) nextcloud-16.0.4-81.1.noarch I installed apache2-mod_php7 and disabled it with "a2dismod php7". Unfortunately the RPM postinstall script re-enables apache2-mod_php7 after every update of this package. # rpm -q --scripts apache2-mod_php7 #some distro versions does not have this tool. if [ -x /usr/sbin/a2enmod ]; then if a2enmod -q php5 && ! a2enmod -q php7; then a2dismod php5 a2enmod php7 fi fi [...] My work-around is this: # zypper dup; a2dismod php7 Are there better solutions? Greetings, Björn -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse+owner@opensuse.org