Fixes for Debian
This commit is contained in:
parent
8e7493b33d
commit
51704f2f06
2 changed files with 8 additions and 2 deletions
|
@ -2714,7 +2714,10 @@ function convertToMariaDBFromMYSQL(){
|
|||
|
||||
function installPythonPamMysql(){
|
||||
# Install Python Prereqs
|
||||
aptgetInstall "libpam-python python-pip python-dev build-essential"
|
||||
aptgetInstall "libpam-python"
|
||||
aptgetInstall "python-pip"
|
||||
aptgetInstall "python-dev"
|
||||
aptgetInstall "build-essential"
|
||||
aptgetInstall "python-passlib"
|
||||
aptgetInstall "libmysqlclient-dev"
|
||||
installPipManuallyIfNeeded
|
||||
|
|
|
@ -1215,7 +1215,10 @@ function installPythonPamMysql(){
|
|||
global $ehcpinstalldir, $ehcpmysqlpass;
|
||||
|
||||
// Install prerequisites
|
||||
aptget(array('libpam-python', 'python-pip', 'python-dev', 'build-essential'));
|
||||
aptget(array('libpam-python'));
|
||||
aptget(array('python-pip'));
|
||||
aptget(array('python-dev'));
|
||||
aptget(array('build-essential'));
|
||||
aptget(array('python-setuptools'));
|
||||
aptget(array('python-passlib', 'libmysqlclient-dev'));
|
||||
passthru2("pip install passlib");
|
||||
|
|
Loading…
Reference in a new issue