diff options
author | Remi Collet <remi@remirepo.net> | 2018-11-28 16:51:47 +0100 |
---|---|---|
committer | Remi Collet <remi@remirepo.net> | 2018-11-28 16:51:47 +0100 |
commit | 12dc0a80bfca7762f68c69f705e08869b51a92b0 (patch) | |
tree | 59a01c17e1ab80bd431f7eded412ea4fd9114892 | |
parent | 052ea6337686ce6173d8cf5a13116b037bd02408 (diff) |
Wizard: add instruction about the module way
-rw-r--r-- | wizard/index.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/wizard/index.php b/wizard/index.php index 7bad29d7..144f4c44 100644 --- a/wizard/index.php +++ b/wizard/index.php @@ -226,6 +226,13 @@ if ($php && $os && $type && !$err) { printf("<pre> yum-config-manager --enable %s</pre>", $repo); } printf("</li><br />"); + + if ($dist == 'Fedora' && $ver >= 29) { + printf("<li>Alternatively, you may prefer to enable the module:"); + printf("<pre> dnf module install remi-php:%s</pre>", $php); + printf("</li><br />"); + } + printf("<li>Command to upgrade (the repository only provides PHP):"); printf("<pre> $yum update</pre>"); printf("</li><br />"); |