- Timestamp:
- Aug 10, 2009, 9:54:07 PM (15 years ago)
- Location:
- trunk/packages/invirt-console
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/packages/invirt-console/debian/changelog
r2314 r2426 1 invirt-console (0.2.10) unstable; urgency=low 2 3 * Give the website access to all consoles in preparation for exposing 4 AjaxTerm. 5 6 -- Evan Broder <broder@mit.edu> Mon, 10 Aug 2009 17:54:12 -0700 7 1 8 invirt-console (0.2.9) unstable; urgency=high 2 9 -
trunk/packages/invirt-console/server/usr/bin/invirt-consolefs
r2157 r2426 71 71 self.recache() 72 72 machine = self.machines[machine] 73 users = [acl.user for acl in machine.acl] 74 return "\n".join(map(self.userToPrinc, users) + ['']) 73 users = (acl.user for acl in machine.acl) 74 users = [self.userToPrinc(u) for u in users] 75 users.append('daemon/%s@%s' % (config.web.hostname, 76 config.kerberos.realm)) 77 users.append('') 78 return "\n".join(users) 75 79 76 80 def mirrorPath(self, path):
Note: See TracChangeset
for help on using the changeset viewer.