summaryrefslogtreecommitdiffstats
path: root/scripts/pkgmaint.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/pkgmaint.py')
-rwxr-xr-xscripts/pkgmaint.py20
1 files changed, 0 insertions, 20 deletions
diff --git a/scripts/pkgmaint.py b/scripts/pkgmaint.py
deleted file mode 100755
index 3ad9ed8d..00000000
--- a/scripts/pkgmaint.py
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/usr/bin/python3
-
-import time
-
-import aurweb.db
-
-
-def main():
- conn = aurweb.db.Connection()
-
- limit_to = int(time.time()) - 86400
- conn.execute("DELETE FROM PackageBases WHERE " +
- "SubmittedTS < ? AND PackagerUID IS NULL", [limit_to])
-
- conn.commit()
- conn.close()
-
-
-if __name__ == '__main__':
- main()