summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--check.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/check.py b/check.py
index bebe9e5..2c38799 100644
--- a/check.py
+++ b/check.py
@@ -99,6 +99,18 @@ class DistfilesCheck(GardCheck):
path = '/distfiles/timestamp.chk'
return self.get_lag(path)
+# Check experimental mirrors
+class ExperimentalCheck(GardCheck):
+ def lag(self):
+ path = '/experimental/.timestamp-experimental.x'
+ return self.get_lag(path)
+
+# Check snapshot mirrors
+class SnapshotsCheck(GardCheck):
+ def lag(self):
+ path = '/snapshots/.timestamp-snapshots.x'
+ return self.get_lag(path)
+
# Check releases mirrors
class ReleasesCheck(GardCheck):
def lag(self):