~frankban/charms/precise/juju-gui/guiserver-logging-sandbox

« back to all changes in this revision

Viewing changes to hooks/backend.py

  • Committer: Francesco Banconi
  • Date: 2013-08-23 11:51:46 UTC
  • Revision ID: francesco.banconi@canonical.com-20130823115146-3mgz2g13ios6xsjv
Fixed typos, added apt dependencies for the builtin server.

Show diffs side-by-side

added added

removed removed

Lines of Context:
183
183
class BuiltinServerMixin(ServerInstallMixinBase):
184
184
    """Manage the builtin server via Upstart."""
185
185
 
186
 
    debs = ('openssl', 'python-pip')
 
186
    # The package python-bzrlib is required by juju-deployer.
 
187
    # The package python-pip is is used to install the GUI server dependencies.
 
188
    debs = ('openssl', 'python-bzrlib', 'python-pip')
187
189
 
188
190
    def install(self, backend):
189
191
        utils.install_builtin_server()