mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-01-21 07:55:00 +00:00
Fix missing import and pass before_install correctly.
This commit is contained in:
parent
ca61649105
commit
eca896a2e8
@ -22,6 +22,7 @@ from django.core.urlresolvers import reverse_lazy
|
||||
from django.template.response import TemplateResponse
|
||||
from gettext import gettext as _
|
||||
import logging
|
||||
import socket
|
||||
|
||||
from plinth import actions
|
||||
from plinth import cfg
|
||||
@ -65,7 +66,7 @@ def before_install():
|
||||
"""Preseed debconf values before the packages are installed."""
|
||||
fqdn = socket.getfqdn()
|
||||
domainname = '.'.join(fqdn.split('.')[1:])
|
||||
LOGGER.info('XMPP service domainname will be ', domainname)
|
||||
LOGGER.info('XMPP service domainname will be ' + domainname)
|
||||
actions.superuser_run('xmpp', ['pre-install', '--domainname', domainname])
|
||||
|
||||
|
||||
|
||||
@ -56,6 +56,8 @@ class PackageInstallView(TemplateView):
|
||||
Start the package installation, and refresh the page every x seconds to
|
||||
keep displaying PackageInstallView.get() with the installation status.
|
||||
"""
|
||||
package_module.start_install(self.kwargs['package_names'],
|
||||
on_install=self.kwargs.get('on_install'))
|
||||
package_module.start_install(
|
||||
self.kwargs['package_names'],
|
||||
before_install=self.kwargs.get('before_install'),
|
||||
on_install=self.kwargs.get('on_install'))
|
||||
return self.render_to_response(self.get_context_data())
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user