Changeset 2426


Ignore:
Timestamp:
Aug 10, 2009, 9:54:07 PM (15 years ago)
Author:
broder
Message:

invirt-console:

  • Give the website access to all consoles in preparation for exposing AjaxTerm?.
Location:
trunk/packages/invirt-console
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/packages/invirt-console/debian/changelog

    r2314 r2426  
     1invirt-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
    18invirt-console (0.2.9) unstable; urgency=high
    29
  • trunk/packages/invirt-console/server/usr/bin/invirt-consolefs

    r2157 r2426  
    7171        self.recache()
    7272        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)
    7579   
    7680    def mirrorPath(self, path):
Note: See TracChangeset for help on using the changeset viewer.