Skip to content

Commit

Permalink
Prepare 3.9.3-6.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Jesús Ángel committed Jun 28, 2019
1 parent 35a6fba commit b0450e9
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 8 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

All notable changes to the Wazuh app project will be documented in this file.

## Wazuh v3.9.3 - Kibana v6.8.1 Revision 447

### Added

- Support for Wazuh v3.9.3

## Wazuh v3.9.2 - Kibana v6.8.0 / v6.8.1 / v7.1.1 - Revision 510

### Added
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "wazuh",
"version": "3.9.2",
"revision": "0446",
"code": "0446-1",
"version": "3.9.3",
"revision": "0447",
"code": "0447-0",
"kibana": {
"version": "6.8.1"
},
Expand Down
2 changes: 1 addition & 1 deletion public/controllers/agent/agents.js
Original file line number Diff line number Diff line change
Expand Up @@ -563,7 +563,7 @@ export class AgentsController {
this.$scope.selectedPciIndex = 0;
}
if (tab === 'gdpr') {
const gdprTabs = await this.commonData.getPCI();
const gdprTabs = await this.commonData.getGDPR();
this.$scope.gdprTabs = gdprTabs;
this.$scope.selectedGdprIndex = 0;
}
Expand Down
6 changes: 2 additions & 4 deletions server/controllers/wazuh-api.js
Original file line number Diff line number Diff line change
Expand Up @@ -584,10 +584,8 @@ export class WazuhApiCtrl {

const execd = daemons['ossec-execd'] === 'running';
const modulesd = daemons['wazuh-modulesd'] === 'running';
const wazuhdb =
(wazuhdbExists && daemons['wazuh-db'] === 'running') || true;
const clusterd =
(isCluster && daemons['wazuh-clusterd'] === 'running') || true;
const wazuhdb = wazuhdbExists ? daemons['wazuh-db'] === 'running' : true;
const clusterd = isCluster ? daemons['wazuh-clusterd'] === 'running' : true;

const isValid = execd && modulesd && wazuhdb && clusterd;

Expand Down

0 comments on commit b0450e9

Please sign in to comment.