Initial work on monitless installation

This commit is contained in:
Duncan Sommerville 2014-12-16 12:24:41 -05:00
parent ecb43c2587
commit 4dfd49d12c
23 changed files with 225 additions and 112 deletions

View file

@ -109,7 +109,7 @@ $result = $r && $database;
?>">
Make sure you aren't missing any of the Postgres dependencies in the table above.
If your dependencies check out, make sure your database configuration settings in
<code>airtime.conf</code> are correct and the Airtime database was installed correctly.
<code>/etc/airtime.conf</code> are correct and the Airtime database was installed correctly.
<?php
}
?>
@ -143,8 +143,14 @@ $result = $r && $database;
<p>
<?php
global $extensions;
$first = true;
foreach ($extensions as $ext) {
echo $ext . " | ";
if (!$first) {
echo " | ";
} else {
$first = false;
}
echo $ext;
}
?>
</p>