diff --git a/snf-cyclades-app/synnefo/quotas/management/commands/quotas-verify.py b/snf-cyclades-app/synnefo/quotas/management/commands/cyclades-usage-verify.py similarity index 93% rename from snf-cyclades-app/synnefo/quotas/management/commands/quotas-verify.py rename to snf-cyclades-app/synnefo/quotas/management/commands/cyclades-usage-verify.py index 04bb286d5dcd70211fbb46bc835ecf022c6fb6d5..d098ecf8d8181d4964197f96825251ad41f31ff4 100644 --- a/snf-cyclades-app/synnefo/quotas/management/commands/quotas-verify.py +++ b/snf-cyclades-app/synnefo/quotas/management/commands/cyclades-usage-verify.py @@ -39,11 +39,18 @@ from synnefo.management.common import pprint_table class Command(BaseCommand): + help = """ + Verify that cyclades.* resource usage. + + Verify that usage calculated from Cyclades DB agrees with the usage + recorded in the effective quota database (Quotaholder) + + """ output_transaction = True option_list = BaseCommand.option_list + ( make_option("--userid", dest="userid", default=None, - help="Verify quotas only for this user"), + help="Verify usage only for this user"), ) def handle(self, *args, **options):