rename table prefix in database from 'geni$' to 'sfa$'
authorThierry Parmentelat <thierry.parmentelat@sophia.inria.fr>
Wed, 8 Jul 2009 13:41:44 +0000 (13:41 +0000)
committerThierry Parmentelat <thierry.parmentelat@sophia.inria.fr>
Wed, 8 Jul 2009 13:41:44 +0000 (13:41 +0000)
INSTALL.txt
sfa/util/genitable.py

index 0f2f0ba..1bd2b3d 100644 (file)
@@ -34,7 +34,7 @@ Import: creating top level authorities
 Hierarchy: creating authority: plc
 plc : 
 Import: creating table for authority plc
-NOTICE:  table "geni$plc" does not exist, skipping
+NOTICE:  table "sfa$plc" does not exist, skipping
   inserting authority record for plc
 Import: adding plc to trusted list
 Import_Site: importing site plc.internet2
@@ -45,7 +45,7 @@ Hierarchy: creating authority: plc.pl
   inserting authority record for plc.pl
 Import: importing person plc.pl.root
 Import: creating table for authority plc.pl
-NOTICE:  table "geni$plc$pl" does not exist, skipping
+NOTICE:  table "sfa$plc$pl" does not exist, skipping
 
 (c) # service sfa start
 
index 7eb8335..15b244e 100644 (file)
@@ -15,7 +15,7 @@ from sfa.trust.gid import *
 from sfa.util.record import *
 from sfa.util.debug import *
 
-GENI_TABLE_PREFIX = "geni$"
+GENI_TABLE_PREFIX = "sfa$"
 
 class GeniTable:
     def __init__(self, create=False, hrn="unspecified.default.registry", cninfo=None):