Forráskód Böngészése

Merge pull request #201 from twiest/pr

Added --user option to ohi to pre-pend the username in the hostlist output.
Thomas Wiest 10 éve
szülő
commit
39a44ef1b7
1 módosított fájl, 9 hozzáadás és 1 törlés
  1. 9 1
      bin/ohi

+ 9 - 1
bin/ohi

@@ -64,7 +64,11 @@ class Ohi(object):
             raise ArgumentError("Invalid combination of arguments")
 
         for host in sorted(hosts, key=utils.normalize_dnsname):
-            print host
+            if self.args.user:
+                print "%s@%s" % (self.args.user, host)
+            else:
+                print host
+
         return 0
 
     def parse_config_file(self):
@@ -97,6 +101,10 @@ class Ohi(object):
         parser.add_argument('-t', '--host-type', action="store",
                        help="Which host type to use")
 
+        parser.add_argument('-l', '--user', action='store', default=None,
+                               help='username')
+
+
         self.args = parser.parse_args()