Handle hostnames with upper-case letters
[webmin.git] / apache / install_check.pl
1 # install_check.pl
2
3 do 'apache-lib.pl';
4
5 # is_installed(mode)
6 # For mode 1, returns 2 if Apache is installed and configured for use by
7 # Webmin, 1 if installed but not configured, or 0 otherwise.
8 # For mode 0, returns 1 if installed, 0 if not
9 sub is_installed
10 {
11 return 0 if (!-d $config{'httpd_dir'} || !&find_httpd());
12 local ($htconf) = &find_httpd_conf();
13 return 0 if (!$htconf);
14 if ($_[0]) {
15         return 2 if ($httpd_modules{'core'});
16         }
17 return 1;
18 }
19