Handle hostnames with upper-case letters
[webmin.git] / dhcpd / install_check.pl
1 # install_check.pl
2
3 do 'dhcpd-lib.pl';
4
5 # is_installed(mode)
6 # For mode 1, returns 2 if the server 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 local @st = stat($config{'dhcpd_path'});
12 return 0 if (!@st);
13 if (!$config{'dhcpd_version'} ||
14     $st[7] != $config{'dhcpd_size'} || $st[9] != $config{'dhcpd_mtime'}) {
15         # Version is not cached - need to actually check
16         return 0 if (!&get_dhcpd_version(\$dummy));
17         }
18 return $_[0] ? 2 : 1;
19 }
20