Skip to content
This repository has been archived by the owner on Dec 13, 2022. It is now read-only.

Commit

Permalink
fix bam broker configuration on remote server
Browse files Browse the repository at this point in the history
  • Loading branch information
kduret committed Dec 31, 2018
1 parent 6198f9c commit 567ef3f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public function insert()

$this->insertConfigCentreonBroker($serverID);

if ($this->shouldInsertBamBrokers && !$this->isRemote()) {
if ($this->shouldInsertBamBrokers && $this->isRemote()) {
$this->insertBamBrokers();
}

Expand Down
2 changes: 1 addition & 1 deletion www/install/step_upgrade/step5.php
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ function validation() {
url: './step_upgrade/process/process_step5.php',
data: jQuery('input[name="send_statistics"]').serialize()
}).success(function () {
javascript:self.location = "../main.php"
javascript:self.location = "../index.php"
})
}
</script>
Expand Down
2 changes: 1 addition & 1 deletion www/install/steps/templates/step9.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
}).success(function (data) {
var data = JSON.parse(data);
if (data.result) {
javascript:self.location = "../main.php";
javascript:self.location = "../index.php";
}
});
}
Expand Down

0 comments on commit 567ef3f

Please sign in to comment.