Skip to content

Commit

Permalink
removed from all commands
Browse files Browse the repository at this point in the history
  • Loading branch information
jsayles committed Oct 21, 2022
1 parent 81d5572 commit cf8730a
Show file tree
Hide file tree
Showing 6 changed files with 0 additions and 8 deletions.
2 changes: 0 additions & 2 deletions arpwatch/management/commands/import_arp.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@
class Command(BaseCommand):
help = "Import new arplogs"

requires_system_checks = True

def handle(self, *args, **options):
arp.import_all()
arp.map_ip_to_mac(1)
Expand Down
2 changes: 0 additions & 2 deletions arpwatch/management/commands/import_snmp.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@
class Command(BaseCommand):
help = "Import new addresses using SNMP"

requires_system_checks = True

def handle(self, *args, **options):
arp.import_snmp()

Expand Down
1 change: 0 additions & 1 deletion doors/keymaster/management/commands/generate_key.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
class Command(BaseCommand):
help = "Generate a new encryption key"
args = ""
requires_system_checks = False

def handle(self, *labels, **options):
print((Fernet.generate_key()))
Expand Down
1 change: 0 additions & 1 deletion interlink/management/commands/move_to_comlink.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
from comlink import models as cl_models

class Command(BaseCommand):
requires_system_checks = True

def handle(self, *args, **options):
print("Moving Mailing Lists...")
Expand Down
1 change: 0 additions & 1 deletion interlink/management/commands/process_mail.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@

class Command(BaseCommand):
help = "Process all the mail from our MailingLists"
requires_system_checks = True

def handle(self, *args, **options):
# MailingList.objects.fetch_all_mail(logger)
Expand Down
1 change: 0 additions & 1 deletion interlink/management/commands/subscribe_members.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
class Command(BaseCommand):
help = "Subscribes every user with an active membership to a mailing list."
args = "[mailing-list-id]"
requires_system_checks = True

def print_usage(self):
print('./manage.py subscribe_members <mailing-list-id>')
Expand Down

0 comments on commit cf8730a

Please sign in to comment.