Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
ISPConfig
ISPConfig 3
Commits
e09a274f
Commit
e09a274f
authored
Sep 27, 2011
by
Falko Timme
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- Added check for "httpd2" to the installer (needed on OpenSUSE to check if Apache is installed).
parent
0adb3532
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
install/lib/installer_base.lib.php
install/lib/installer_base.lib.php
+1
-1
No files found.
install/lib/installer_base.lib.php
View file @
e09a274f
...
...
@@ -118,7 +118,7 @@ class installer_base {
if
(
is_installed
(
'mysql'
)
||
is_installed
(
'mysqld'
))
$conf
[
'mysql'
][
'installed'
]
=
true
;
if
(
is_installed
(
'postfix'
))
$conf
[
'postfix'
][
'installed'
]
=
true
;
if
(
is_installed
(
'mailman'
))
$conf
[
'mailman'
][
'installed'
]
=
true
;
if
(
is_installed
(
'apache'
)
||
is_installed
(
'apache2'
)
||
is_installed
(
'httpd'
))
$conf
[
'apache'
][
'installed'
]
=
true
;
if
(
is_installed
(
'apache'
)
||
is_installed
(
'apache2'
)
||
is_installed
(
'httpd'
)
||
is_installed
(
'httpd2'
)
)
$conf
[
'apache'
][
'installed'
]
=
true
;
if
(
is_installed
(
'getmail'
))
$conf
[
'getmail'
][
'installed'
]
=
true
;
if
(
is_installed
(
'courierlogger'
))
$conf
[
'courier'
][
'installed'
]
=
true
;
if
(
is_installed
(
'dovecot'
))
$conf
[
'dovecot'
][
'installed'
]
=
true
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment