Skip to content

Commit e09a274

Browse files
committed
- Added check for "httpd2" to the installer (needed on OpenSUSE to check if Apache is installed).
1 parent 0adb353 commit e09a274

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

install/lib/installer_base.lib.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ public function find_installed_apps() {
118118
if(is_installed('mysql') || is_installed('mysqld')) $conf['mysql']['installed'] = true;
119119
if(is_installed('postfix')) $conf['postfix']['installed'] = true;
120120
if(is_installed('mailman')) $conf['mailman']['installed'] = true;
121-
if(is_installed('apache') || is_installed('apache2') || is_installed('httpd')) $conf['apache']['installed'] = true;
121+
if(is_installed('apache') || is_installed('apache2') || is_installed('httpd') || is_installed('httpd2')) $conf['apache']['installed'] = true;
122122
if(is_installed('getmail')) $conf['getmail']['installed'] = true;
123123
if(is_installed('courierlogger')) $conf['courier']['installed'] = true;
124124
if(is_installed('dovecot')) $conf['dovecot']['installed'] = true;

0 commit comments

Comments
 (0)