from syslog import *
-import sipb_xen_database
+from invirt import database
from invirt.config import structs as config
fuse.fuse_python_api = (0, 2)
older than 15 seconds"""
if time() - self.lasttime > 15:
self.lasttime = time()
- sipb_xen_database.clear_cache()
- return [machine.name for machine in sipb_xen_database.Machine.select()]
+ database.clear_cache()
+ return [machine.name for machine in database.Machine.select()]
def getacl(self, machine_name):
"""Build the ACL file for a machine
"""
- machine = sipb_xen_database.Machine.get_by(name=machine_name)
+ machine = database.Machine.get_by(name=machine_name)
users = [acl.user for acl in machine.acl]
return "\n".join(map(self.userToPrinc, users)
+ ['include /etc/remctl/acl/web',
if __name__ == '__main__':
- sipb_xen_database.connect(config.db.uri)
+ database.connect()
usage="""
$0 [mount_path]
"""