summaryrefslogtreecommitdiffstats
path: root/lib.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib.php')
-rw-r--r--lib.php17
1 files changed, 17 insertions, 0 deletions
diff --git a/lib.php b/lib.php
index e00ed27..1b870ae 100644
--- a/lib.php
+++ b/lib.php
@@ -170,3 +170,20 @@ function publish_stats_headers($stats, $last_package = null)
round($buildtime_total / $build_count, 2);
header(sprintf('X-BS-Buildtime-Average: %5.2f', $buildtime_avg));
}
+
+/**
+ * check if emi is running
+ *
+ * @return
+*/
+function get_upload_time()
+{
+ if (file_exists('/var/lib/schedbot/tmp/upload')) {
+ $stat = stat('/var/lib/schedbot/tmp/upload');
+ if ($stat) {
+ return $stat['mtime'];
+ }
+ }
+
+ return null;
+}