mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-31 19:19:43 +01:00
Ubuntu only needs "-s ALL" and Debian gives an error, because it does not support it
This commit is contained in:
parent
2b17360a7e
commit
ecf958b057
@ -124,7 +124,10 @@ function set_distro_defaults($distro=null)
|
|||||||
// enable mcrypt
|
// enable mcrypt
|
||||||
if (file_exists('/usr/sbin/php5enmod'))
|
if (file_exists('/usr/sbin/php5enmod'))
|
||||||
{
|
{
|
||||||
$config['php5enmod'] = '/usr/sbin/php5enmod -s ALL mcrypt';
|
$config['php5enmod'] = '/usr/sbin/php5enmod';
|
||||||
|
// Ubuntu only needs "-s ALL" and Debian gives an error, because it does not support it
|
||||||
|
if (!file_exists('/etc/php5/conf.d/')) $config['php5enmod'] = ' -s ALL';
|
||||||
|
$config['php5enmod'] = 'mcrypt';
|
||||||
}
|
}
|
||||||
$config['autostart_db'] = '/usr/sbin/update-rc.d mysql defaults';
|
$config['autostart_db'] = '/usr/sbin/update-rc.d mysql defaults';
|
||||||
$config['autostart_webserver'] = '/usr/sbin/update-rc.d apache2 defaults';
|
$config['autostart_webserver'] = '/usr/sbin/update-rc.d apache2 defaults';
|
||||||
|
Loading…
Reference in New Issue
Block a user