Skip to content

Commit

Permalink
change to alternate provisioning server, remove a spanish default
Browse files Browse the repository at this point in the history
  • Loading branch information
billsimon committed Jan 24, 2023
1 parent 9b126d0 commit ce96e6d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 48 deletions.
44 changes: 0 additions & 44 deletions assets/js/defaults-es_ES.js

This file was deleted.

2 changes: 1 addition & 1 deletion assets/js/epm_config.js
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ function epm_config_tab_manager_ajax_get_add_data(data)
$(boxappendL0).append(
$('<div/>', { 'class' : 'panel panel-warning', 'id' : 'manager_alert_list_emtry' })
.append(
$('<div/>', { 'class' : 'panel-heading' }).append( $('<h3/>', { 'class' : 'panel-title' }).text('LIST EMTRY!!!') ),
$('<div/>', { 'class' : 'panel-heading' }).append( $('<h3/>', { 'class' : 'panel-title' }).text('List empty!') ),
$('<div/>', { 'class' : 'panel-body' }).text('Click the "CHECK FOR UPDATES" button to search for data on the server.')
)
);
Expand Down
6 changes: 3 additions & 3 deletions install.php
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ function epm_find_exec($exec) {
(3, 'gmtoff', ''),
(4, 'gmthr', ''),
(5, 'config_location', '/tftpboot/'),
(6, 'update_server', 'http://mirror.freepbx.org/provisioner/v3/'),
(6, 'update_server', 'http://provision.lol/'),
(7, 'version', '" . $epmxmlversion . "'),
(8, 'enable_ari', '0'),
(9, 'debug', '0'),
Expand Down Expand Up @@ -117,7 +117,7 @@ function epm_find_exec($exec) {


if ($epmdbversion < "14.0.0.1"){
$sql = "UPDATE endpointman_global_vars SET value = 'http://mirror.freepbx.org/provisioner/v3/' WHERE var_name = 'update_server'";
$sql = "UPDATE endpointman_global_vars SET value = 'http://provision.lol/' WHERE var_name = 'update_server'";
$db->query($sql);
}

Expand All @@ -129,4 +129,4 @@ function epm_find_exec($exec) {
(29, 'disable_endpoint_warning', '0')";
$db->query($sql);
out("Done");
}
}

0 comments on commit ce96e6d

Please sign in to comment.