From 11b2dd0d6c8a02ebe5a615fdd96c3957cde069c1 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 19 Feb 2018 08:42:18 +0100 Subject: add information about common dependencies --- wizard/index.php | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'wizard/index.php') diff --git a/wizard/index.php b/wizard/index.php index 8b0dfaf4..23781331 100644 --- a/wizard/index.php +++ b/wizard/index.php @@ -194,6 +194,13 @@ if ($php && $os && $type && !$err) { } else { $repo = $phpvers[$php]; } + if ($dist != 'Fedora') { + printf("
  • Some common dependencies are available in remi-safe repository, which is enabled by default

  • "); + } else if ($repo != 'remi') { + printf("
  • Some common dependencies are available in remi repository, which need to be enabled"); + printf("
        yum-config-manager --enable remi

  • "); + } + printf("
  • PHP version %s packages are available for %s in %s repository

  • ", $php, $os, $repo); printf("
  • If the priorities plugin is enabled, ensure %s have higher priority (a lower value) than %s

  • ", $repo, ($dist == 'Fedora' ? 'fedora' : 'base and updates')); -- cgit