summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLukas Fleischer <lfleischer@archlinux.org>2015-09-29 20:47:24 +0200
committerLukas Fleischer <lfleischer@archlinux.org>2015-09-29 20:51:08 +0200
commit693e4b50a3fb57f90d802806fd1b8b78f21bd499 (patch)
tree9e6b1fb174bea12a7604f21016a5119335e36e8c
parentfcb495874f3ff66b42dc723c99cb8ca4678a348a (diff)
downloadaur-693e4b50a3fb57f90d802806fd1b8b78f21bd499.tar.gz
aur-693e4b50a3fb57f90d802806fd1b8b78f21bd499.tar.xz
Remove empty package bases after 24 hours
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@archlinux.org>
-rwxr-xr-xscripts/pkgmaint.py25
1 files changed, 25 insertions, 0 deletions
diff --git a/scripts/pkgmaint.py b/scripts/pkgmaint.py
new file mode 100755
index 00000000..0eb94221
--- /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()