Updating gitignore
Signed-off-by: volpino <fox91@anche.no>
This commit is contained in:
parent
b5b05e9502
commit
4b84dd54b5
2
.gitignore
vendored
2
.gitignore
vendored
@ -1,4 +1,4 @@
|
|||||||
*~
|
*~
|
||||||
*.py[co]
|
*.py[co]
|
||||||
*.egg-info
|
*.egg-info
|
||||||
|
.idea
|
||||||
|
2
euscanwww/.gitignore
vendored
2
euscanwww/.gitignore
vendored
@ -3,4 +3,4 @@ var/charts/*.png
|
|||||||
var/rrd/*.rrd
|
var/rrd/*.rrd
|
||||||
var/db/euscan.db
|
var/db/euscan.db
|
||||||
var/db/euscan.db-journal
|
var/db/euscan.db-journal
|
||||||
local_settings.py
|
local_settings.py
|
||||||
|
@ -6,6 +6,7 @@ from djeuscan.processing.misc import regen_rrds
|
|||||||
|
|
||||||
logger = logging.getLogger(__name__)
|
logger = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
|
||||||
class Command(BaseCommand):
|
class Command(BaseCommand):
|
||||||
_overlays = {}
|
_overlays = {}
|
||||||
help = 'Regenerate rrd database'
|
help = 'Regenerate rrd database'
|
||||||
|
@ -360,6 +360,15 @@ def send_monthly_email():
|
|||||||
group_chunks(process_emails, profiles, settings.TASKS_EMAIL_GROUPS)()
|
group_chunks(process_emails, profiles, settings.TASKS_EMAIL_GROUPS)()
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
|
||||||
|
@task
|
||||||
|
def collect_stabilization_candidates():
|
||||||
|
"""
|
||||||
|
This task collects the packages that are stabilization candidates
|
||||||
|
"""
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
admin_tasks = [
|
admin_tasks = [
|
||||||
regen_rrds,
|
regen_rrds,
|
||||||
update_counters,
|
update_counters,
|
||||||
|
Loading…
Reference in New Issue
Block a user