~rr.clearcorp/oerptools/2.0-oerp

« back to all changes in this revision

Viewing changes to oerptools/oerp/server.py

  • Committer: Carlos Vásquez
  • Date: 2013-03-11 19:36:27 UTC
  • Revision ID: carlos.vasquez@clearcorp.co.cr-20130311193627-5m7aiq1sq9ruiv8y
[FIX] phppgadmin installation

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
 
27
27
import os, datetime, pwd, grp, getpass, re, tempfile
28
28
 
29
 
from oerptools.lib import config, bzr, tools, apache
 
29
from oerptools.lib import config, bzr, tools, apache, phppgadmin
30
30
 
31
31
class oerpServer(object):
32
32
    def __init__(self, instance=None):
899
899
        
900
900
        if self._install_apache:
901
901
            self._do_install_apache()
902
 
            self._do_install_phppgadmin()
 
902
            phppgadmin.phppgadmin_install()
903
903
        
904
904
        self._set_logrotation()
905
905