From 535bb7e5c79c7339bbeb39c134c8ea4a74ff97d7 Mon Sep 17 00:00:00 2001 From: hahn <axel.hahn@iml.unibe.ch> Date: Wed, 27 Jul 2022 12:39:44 +0200 Subject: [PATCH] update check-config.php --- public_html/check-config.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public_html/check-config.php b/public_html/check-config.php index 38a1c0af..e66c1f4f 100644 --- a/public_html/check-config.php +++ b/public_html/check-config.php @@ -180,14 +180,13 @@ if (!isset($aConfig) || !is_array($aConfig)) { foreach (array( 'auth', 'build', - 'installPackages', 'lang', 'phases', 'projects', ) as $sKey) { echo "Key [$sKey] "; if (!array_key_exists($sKey, $aConfig)) { - echo '<span class="error">failed</span> missing key [$sKey] in config<br>'; + echo '<span class="error">failed</span> missing key ['.$sKey.'] in config<br>'; $aErrors[] = "* missing key [$sKey] in config\n"; } else { echo '<span class="ok">OK</span> exists<br>'; @@ -222,6 +221,7 @@ checkCommands(array( 'which rsync'=>'sync packages to puppet master', 'which git'=>'connect to git repositories', )); + echo '<h3>tools for IML projects</h3>'; checkCommands(array( 'which uglifyjs'=>'compress js', -- GitLab