Blob Blame History Raw
commit 690929f3e2d5169ad143d225cda24880722eae82
Author: Radek Novacek <rnovacek@redhat.com>
Date:   Wed Oct 24 10:13:41 2012 +0200

    Help and manpage improvements

diff --git a/virt-who.8 b/virt-who.8
index 4b2c283..715cce1 100644
--- a/virt-who.8
+++ b/virt-who.8
@@ -150,7 +150,7 @@ Use ESX (vCenter) as virtualization backend and specify option required to conne
 Use RHEV-M as virtualization backend and specify option required to connect to RHEV-M server.
 
 .TP
-4. Hyper-V
+5. Hyper-V
 
 # virt-who --hyperv --hyperv-owner=HYPERV_OWNER  --hyperv-env=HYPERV_ENV --hyperv-server=HYPERV_SERVER --hyperv-username=HYPERV_USERNAME --hyperv-password=HYPERV_PASSWORD
 
diff --git a/virt-who.py b/virt-who.py
index 85d998a..52ec318 100644
--- a/virt-who.py
+++ b/virt-who.py
@@ -341,8 +341,8 @@ def main():
     rhevmGroup = OptionGroup(parser, "RHEV-M options", "Use this options with --rhevm")
     rhevmGroup.add_option("--rhevm-owner", action="store", dest="owner", default="", help="Organization who has purchased subscriptions of the products")
     rhevmGroup.add_option("--rhevm-env", action="store", dest="env", default="", help="Environment where the RHEV-M belongs to")
-    rhevmGroup.add_option("--rhevm-server", action="store", dest="server", default="", help="URL of the RHEV-M server to connect to")
-    rhevmGroup.add_option("--rhevm-username", action="store", dest="username", default="", help="Username for connecting to RHEV-M")
+    rhevmGroup.add_option("--rhevm-server", action="store", dest="server", default="", help="URL of the RHEV-M server to connect to (preferable use secure connection - https://<ip or domain name>:<secure port, usually 8443>)")
+    rhevmGroup.add_option("--rhevm-username", action="store", dest="username", default="", help="Username for connecting to RHEV-M in the format username@domain")
     rhevmGroup.add_option("--rhevm-password", action="store", dest="password", default="", help="Password for connecting to RHEV-M")
     parser.add_option_group(rhevmGroup)