2012-05-28 21:16:38 +02:00
|
|
|
from optparse import make_option
|
|
|
|
|
|
|
|
from django.core.management.base import BaseCommand
|
|
|
|
|
2012-06-22 09:32:39 +02:00
|
|
|
from djeuscan.processing.update_counters import update_counters
|
2012-05-28 21:16:38 +02:00
|
|
|
|
|
|
|
|
|
|
|
class Command(BaseCommand):
|
|
|
|
_overlays = {}
|
|
|
|
help = 'Update counters'
|
|
|
|
|
|
|
|
option_list = BaseCommand.option_list + (
|
|
|
|
make_option('--quiet',
|
|
|
|
action='store_true',
|
|
|
|
dest='quiet',
|
|
|
|
default=False,
|
|
|
|
help='Be quiet'),
|
|
|
|
make_option('--fast',
|
|
|
|
action='store_true',
|
|
|
|
dest='fast',
|
|
|
|
default=False,
|
|
|
|
help='Skip sanity checks'),
|
|
|
|
make_option('--nolog',
|
|
|
|
action='store_true',
|
|
|
|
dest='nolog',
|
|
|
|
default=False,
|
|
|
|
help='Skip logs'),
|
|
|
|
)
|
|
|
|
|
|
|
|
def handle(self, *args, **options):
|
2012-06-22 09:32:39 +02:00
|
|
|
update_counters(
|
|
|
|
stdout=self.stdout,
|
|
|
|
fast=options["fast"],
|
|
|
|
quiet=options["quiet"],
|
|
|
|
nolog=options["nolog"],
|
|
|
|
)
|