[NEW PATCH] BZ#729251 vds_bootstrap: Removed a reference to an obselete netconsole option. (via gerrit-bot)

Gal Hammer ghammer at redhat.com
Wed Sep 7 14:07:47 UTC 2011


New patch submitted by Gal Hammer (ghammer at redhat.com)

You can review this change at: http://gerrit.usersys.redhat.com/909

commit 3078701dffc25f26870d3bb317a8f4ebc44fe429
Author: Gal Hammer <ghammer at redhat.com>
Date:   Wed Sep 7 15:27:51 2011 +0300

    BZ#729251 vds_bootstrap: Removed a reference to an obselete netconsole option.
    
    Change-Id: Ie0b90a78f7c9c49af7b70e50db71f6621274ad4f

diff --git a/vds_bootstrap/vds_bootstrap.py b/vds_bootstrap/vds_bootstrap.py
index 3f8423c..474ce06 100755
--- a/vds_bootstrap/vds_bootstrap.py
+++ b/vds_bootstrap/vds_bootstrap.py
@@ -785,14 +785,14 @@ def VdsValidation(iurl, subject, random_num, rev_num, orgName, systime, usevdcre
 def main():
     """
         Usage: vds_compat.py [-r rev_num] [-O organizationName] [-t systemTime]
-            [-n netconsole_host:port] [-u (seProductRepo) true|false ] <url> <subject> <random_num>
+            [-u (seProductRepo) true|false ] <url> <subject> <random_num>
     """
     try:
         rev_num = None
         orgName = 'Red Hat Inc.'
         systime = None
         usevdcrepo = False
-        opts, args = getopt.getopt(sys.argv[1:], "r:O:t:n:u:")
+        opts, args = getopt.getopt(sys.argv[1:], "r:O:t:u:")
         for o,v in opts:
             if o == "-r":
                 rev_num = v
@@ -800,9 +800,6 @@ def main():
                 orgName = v
             if o == "-t":
                 systime = v
-            if o == "-n":
-                # TODO: remove me as soon as possible (BZ#689726)
-                pass
             if o == "-u":
                 usevdcrepo = (v.upper() == 'TRUE')
         url = args[0]




More information about the vdsm-patches mailing list