diff options
author | Lukas Fleischer <lfleischer@archlinux.org> | 2015-09-29 20:47:24 +0200 |
---|---|---|
committer | Lukas Fleischer <lfleischer@archlinux.org> | 2015-09-29 20:51:08 +0200 |
commit | 693e4b50a3fb57f90d802806fd1b8b78f21bd499 (patch) | |
tree | 9e6b1fb174bea12a7604f21016a5119335e36e8c /scripts | |
parent | fcb495874f3ff66b42dc723c99cb8ca4678a348a (diff) |
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>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/pkgmaint.py | 25 |
1 files changed, 25 insertions, 0 deletions
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() |