mirror of https://github.com/Aidaho12/haproxy-wi
parent
722604b325
commit
3213a4ba9f
|
@ -2849,10 +2849,10 @@ function checkGeoipInstallation() {
|
||||||
success: function( data ) {
|
success: function( data ) {
|
||||||
data = data.replace(/^\s+|\s+$/g,'');
|
data = data.replace(/^\s+|\s+$/g,'');
|
||||||
if(data.indexOf('No such file or directory') != '-1') {
|
if(data.indexOf('No such file or directory') != '-1') {
|
||||||
$('#cur_geoip').text('<b style="color: var(--green-color)">Not installed</b>');
|
$('#cur_geoip').html('<b style="color: var(--red-color)">GeoIPLite is installed</b>');
|
||||||
$('#geoip_install').show();
|
$('#geoip_install').show();
|
||||||
} else {
|
} else {
|
||||||
$('#cur_geoip').text('<b style="color: var(--red-color)">Installed<b>');
|
$('#cur_geoip').html('<b style="color: var(--green-color)">GeoIPLite is not installed<b>');
|
||||||
$('#geoip_install').hide();
|
$('#geoip_install').hide();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue