diff options
author | Romain d'Alverny <rda@mageia.org> | 2012-09-04 13:42:16 +0000 |
---|---|---|
committer | Romain d'Alverny <rda@mageia.org> | 2012-09-04 13:42:16 +0000 |
commit | 5c426d34bcddc9ef198f8da968ac34ae16692776 (patch) | |
tree | eda9bf16e43eda52da095e6e39941cc73e76b9cf /lib.php | |
parent | ed760b3ef9ed44d2346e4c9358e530af74dbe3ae (diff) | |
download | pkgsubmit-5c426d34bcddc9ef198f8da968ac34ae16692776.tar pkgsubmit-5c426d34bcddc9ef198f8da968ac34ae16692776.tar.gz pkgsubmit-5c426d34bcddc9ef198f8da968ac34ae16692776.tar.bz2 pkgsubmit-5c426d34bcddc9ef198f8da968ac34ae16692776.tar.xz pkgsubmit-5c426d34bcddc9ef198f8da968ac34ae16692776.zip |
new get_upload_time()
Diffstat (limited to 'lib.php')
-rw-r--r-- | lib.php | 17 |
1 files changed, 17 insertions, 0 deletions
@@ -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; +} |