[aur-dev] [PATCH] Remove empty package bases after 24 hours

Lukas Fleischer lfleischer at archlinux.org
Tue Sep 29 19:03:30 UTC 2015


By using the setup-repo command, it is currently possible to create
empty package bases, which can be used to make package base
reservations. Add a maintenance script to remove such empty package
bases after 24 hours.

Fixes FS#46279.

Signed-off-by: Lukas Fleischer <lfleischer at archlinux.org>
---
 scripts/pkgmaint.py | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)
 create mode 100755 scripts/pkgmaint.py

diff --git a/scripts/pkgmaint.py b/scripts/pkgmaint.py
new file mode 100755
index 0000000..0eb9422
--- /dev/null
+++ b/scripts/pkgmaint.py
@@ -0,0 +1,25 @@
+#!/usr/bin/python3
+
+import configparser
+import mysql.connector
+import os
+
+config = configparser.RawConfigParser()
+config.read(os.path.dirname(os.path.realpath(__file__)) + "/../conf/config")
+
+aur_db_host = config.get('database', 'host')
+aur_db_name = config.get('database', 'name')
+aur_db_user = config.get('database', 'user')
+aur_db_pass = config.get('database', 'password')
+aur_db_socket = config.get('database', 'socket')
+
+db = mysql.connector.connect(host=aur_db_host, user=aur_db_user,
+                             passwd=aur_db_pass, db=aur_db_name,
+                             unix_socket=aur_db_socket, buffered=True)
+cur = db.cursor()
+
+cur.execute("DELETE FROM PackageBases WHERE " +
+            "UNIX_TIMESTAMP() - SubmittedTS > 86400 AND PackagerUID IS NULL")
+
+db.commit()
+db.close()
-- 
2.6.0


More information about the aur-dev mailing list