oops
[invirt/packages/invirt-remote.git] / files / usr / sbin / sipb-xen-remconffs
index df07f54..7d49a95 100755 (executable)
@@ -13,6 +13,7 @@ import errno   # for error number codes (ENOENT, etc)
 from syslog import *
 
 import sipb_xen_database
+from invirt.config import structs as config
 
 fuse.fuse_python_api = (0, 2)
 
@@ -120,7 +121,7 @@ class RemConfFS(Fuse):
                        (princ, realm) = user.split('@')
                else:
                        princ = user
-                       realm = "ATHENA.MIT.EDU"
+                       realm = config.authn[0].realm
                
                return princ.replace('.', '/') + '@' + realm
        
@@ -227,7 +228,7 @@ class RemConfFS(Fuse):
 
 
 if __name__ == '__main__':
-       sipb_xen_database.connect('postgres://sipb-xen@sipb-xen-dev.mit.edu/sipb_xen')
+       sipb_xen_database.connect(config.db.uri)
        usage="""
 $0 [mount_path]
 """