diff --git a/public_html/check-config.php b/public_html/check-config.php index 38a1c0af7b1ffb28933bf144139842c05e6882c0..e66c1f4f3002eaad0ce37295cb508b7223f683a3 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',