Skip to content

Commit

Permalink
[networking.links] Added update_topology management command #231
Browse files Browse the repository at this point in the history
  • Loading branch information
nemesifier committed May 30, 2015
1 parent 4a38a29 commit 3cf8b89
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 0 deletions.
Empty file.
Empty file.
10 changes: 10 additions & 0 deletions nodeshot/networking/links/management/commands/update_topology.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
from django.core.management.base import BaseCommand

from ...utils import update_topology


class Command(BaseCommand):
help = 'Update network topology'

def handle(self, *args, **options):
update_topology()

0 comments on commit 3cf8b89

Please sign in to comment.