Automatically accept orphan requests for old packages

If an orphan request is filed for a package that has been flagged
out-of-date for at least 180 days, it is disowned automatically.

Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
This commit is contained in:
Lukas Fleischer 2014-07-17 16:47:52 +02:00
parent d03f7a890f
commit c36f0e885a
2 changed files with 43 additions and 13 deletions

View file

@ -65,3 +65,8 @@ $AUR_REQUEST_ML = "aur-requests@archlinux.org";
# Time to wait until a package request is due.
$REQUEST_IDLE_TIME = 60 * 60 * 24 * 14;
# When an orphan request is filed for a package that has been flagged
# out-of-date for the following number of seconds, it is disowned
# automatically.
$AUTO_ORPHAN_AGE = 60 * 60 * 24 * 180;