README.rst
pagure-utility
==============

This repository contains a few scripts useful when running/managing a pagure
instance.


License: GPLv2 or any later version


Run the scripts
---------------

To run the script, either you have a configuration file at
``/etc/pagure/pagure.cfg`` and it will use it, or you can specify one using the
environment variable ``PAGURE_CONFIG`` when calling the script.

In other words:

* if you have ``/etc/pagure/pagure.cfg``, call the script directly::

  python <script>.py

* if you want to specify the configuration file, use ``PAGURE_CONFIG``::

  PAGURE_CONFIG=/path/to/pagure.cfg python <script>.py



clean_up_user_project
~~~~~~~~~~~~~~~~~~~~~

This script can be used to delete all the projects of a specific user.


fill_logs_from_db
~~~~~~~~~~~~~~~~~

This script takes all the tickets, pull-requests and their comments and
insert a corresponding entry in the pagure_logs table (available from
2.9).


fill_logs_from_gits
~~~~~~~~~~~~~~~~~

This script browses all the git repo in the specified directory, and for
each commits insert a corresponding entry in the pagure_logs table
(available from 2.9).