diff options
author | Remi Collet <remi@remirepo.net> | 2019-10-14 08:34:00 +0200 |
---|---|---|
committer | Remi Collet <remi@remirepo.net> | 2019-10-14 08:34:00 +0200 |
commit | ec1c820253bf0ba080d0f36bc87e490e1e4dfbdd (patch) | |
tree | 2148dbeb435a30d5a3b25ee2c64b35a3a215fbff | |
parent | 586bc1f0f6b4843bf18d0c45e8cdf449673a4cf9 (diff) |
Wizard: diable old module before installing the new one
-rw-r--r-- | wizard/index.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/wizard/index.php b/wizard/index.php index 6fbd3b87..58134b4e 100644 --- a/wizard/index.php +++ b/wizard/index.php @@ -258,7 +258,8 @@ if ($php && $os && $type && !$err) { } if ($mod) { - printf("<pre> dnf module install php:remi-%s</pre>", $php); + printf("<pre> dnf module disable php"); + printf( "\n dnf module install php:remi-%s</pre>", $php); printf("</li><br />"); } |