roll back the option --interface and use --registry-interface (-R) for both version...
[sfa.git] / sfa / client / sfi.py
index e4e1089..a52e2bd 100644 (file)
@@ -379,17 +379,14 @@ class Sfi:
                               help='how myslice config variables as well')
 
         if command in ("version"):
-            parser.add_option("-R","--registry-version",
-                              action="store_true", dest="version_registry", default=False,
-                              help="probe registry version instead of sliceapi")
             parser.add_option("-l","--local",
                               action="store_true", dest="version_local", default=False,
                               help="display version of the local client")
 
-        if command in ("trusted"):
-            parser.add_option("-R","--registry-version",
-                             action="store_true", dest="version_registry", default=False,
-                             help="probe registry version instead of sliceapi")
+        if command in ("version", "trusted"):
+            parser.add_option("-R","--registry-interface",
+                             action="store_true", dest="registry-interface", default=False,
+                             help="target the registry interface instead of slice interface")
 
         if command in ("add", "update"):
             parser.add_option('-x', '--xrn', dest='xrn', metavar='<xrn>', help='object hrn/urn (mandatory)')
@@ -839,7 +836,7 @@ use this if you mean an authority instead""")
         if options.version_local:
             version=version_core()
         else:
-            if options.version_registry:
+            if options.registry-interface:
                 server=self.registry()
             else:
                 server = self.sliceapi()
@@ -1629,15 +1626,13 @@ $ sfi m -b http://mymanifold.foo.com:7080/
         """
         return the trusted certs at this interface (get_trusted_certs)
         """ 
-        if options.version_registry:
+        if options.registry-interface:
             server=self.registry()
         else:
             server = self.sliceapi()
-            
-        auth_cred = self.my_authority_credential_string()
-        trusted_certs = server.get_trusted_certs(auth_cred)
-
-        if not options.version_registry:
+        cred = self.my_authority_credential_string()
+        trusted_certs = server.get_trusted_certs(cred)
+        if not options.registry-interface:
             trusted_certs = ReturnValue.get_value(trusted_certs)
 
         for trusted_cert in trusted_certs: