summaryrefslogtreecommitdiff
path: root/shared
diff options
context:
space:
mode:
authorEudyptula <eitan@mosenkis.net>2009-08-13 18:54:15 -0400
committerEudyptula <eitan@mosenkis.net>2009-08-13 18:54:15 -0400
commit9e9db3358d449b2aec9b7c0b6828d8d1ea01f4d0 (patch)
treebb1d39bab42da73f165b5d9a41a6226b9aa59365 /shared
parentWrote a script for automatically keeping cache files (stage3, install ISO, et... (diff)
downloadingenue-9e9db3358d449b2aec9b7c0b6828d8d1ea01f4d0.tar.gz
ingenue-9e9db3358d449b2aec9b7c0b6828d8d1ea01f4d0.tar.bz2
ingenue-9e9db3358d449b2aec9b7c0b6828d8d1ea01f4d0.zip
Added ebuild; added ntpd to init deps; builds show [failed] in frontend when they've failed
Diffstat (limited to 'shared')
-rw-r--r--shared/classes/build.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/shared/classes/build.php b/shared/classes/build.php
index 3c65f9b..45d8f07 100644
--- a/shared/classes/build.php
+++ b/shared/classes/build.php
@@ -77,6 +77,8 @@ class sql_build extends conf_build_common {
$format='D j M Y G:i:s T';
$perms=$this->visibility == 'public' || owner_or_admin($this->id);
$html='<div class="build"><span class="name">'.(isset($this->name) && strlen($this->name)?htmlentities($this->name):'Unnamed Build').'</span> ';
+ if ($this->failed == 'true')
+ $html.='<span class="status failed">[failed]</span> ';
$links=array();
switch ($this->status) {
case 'queued':