X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/invirt-web.git/blobdiff_plain/e8873e019781fccec8c45ae00b2ea4954b2a6403..4d235e8d481971c081b3141babd65d36e9ad0337:/code/cache_acls.py?ds=sidebyside diff --git a/code/cache_acls.py b/code/cache_acls.py index b18eabc..130f359 100644 --- a/code/cache_acls.py +++ b/code/cache_acls.py @@ -1,5 +1,5 @@ #!/usr/bin/python -from sipb_xen_database import * +from invirt.database import * import sys import getafsgroups import subprocess @@ -46,7 +46,8 @@ def refreshMachine(m): ma = [x for x in m.acl if x.user == removed][0] ctx.current.delete(ma) for p in people - old_people: - ma = MachineAccess(machine_id=m.machine_id, user=p) + ma = MachineAccess(user=p) + m.acl.append(ma) ctx.current.save(ma) def refreshCache(): @@ -66,5 +67,5 @@ def refreshCache(): raise if __name__ == '__main__': - connect('postgres://sipb-xen@sipb-xen-dev/sipb_xen') + connect() refreshCache()