Home | History | Annotate | Download | only in contrib
      1 #!/usr/bin/env python
      2 
      3 """
      4 Usage: ./print_host_labels.py <IP.or.hostname>
      5 """
      6 
      7 import sys
      8 import common
      9 from autotest_lib.server.hosts import factory
     10 
     11 if len(sys.argv) < 2:
     12     print 'Usage: %s <IP.or.hostname>' % sys.argv[0]
     13     exit(1)
     14 
     15 host = factory.create_host(sys.argv[1])
     16 labels = host.get_labels()
     17 print 'Labels:'
     18 print labels
     19