From 42a7b81894ac0a35ef32a3995b2bb0c279b05883 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julio=20C=C3=A9sar=20Biset?= <43619595+jbiset@users.noreply.github.com> Date: Wed, 14 Jun 2023 07:10:54 -0300 Subject: [PATCH 1/2] Change windows agent service name (#5538) * Change windows agent service name to Wazuh Change windows agent service name to Wazuh * Add CHANGELOG (cherry picked from commit 2bc89843ce5c0bd5ce61ffcd18f0f8c29b9fa34e) --- CHANGELOG.md | 8 ++++---- public/controllers/agent/components/register-agent.js | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 48bf6b35fc..cad0ea500a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to the Wazuh app project will be documented in this file. ## Wazuh v4.4.5 - Kibana 7.10.2, 7.16.x, 7.17.x - Revision 00 +### Changed + +- Changed windows agent service name in the deploy agent wizard [#5538](https://github.com/wazuh/wazuh-kibana-app/pull/5538) + ### Fixed - Fixed the rendering of tables that contains IPs and agent overview [#5471](https://github.com/wazuh/wazuh-kibana-app/pull/5471) @@ -12,10 +16,6 @@ All notable changes to the Wazuh app project will be documented in this file. - Removed the agent name in the agent info ribbon [#5497](https://github.com/wazuh/wazuh-kibana-app/pull/5497) -### Changed - -- Changed windows agent service name in the deploy agent wizard [#5538](https://github.com/wazuh/wazuh-kibana-app/pull/5538) - ## Wazuh v4.4.4 - Kibana 7.10.2, 7.16.x, 7.17.x - Revision 01 ### Added diff --git a/public/controllers/agent/components/register-agent.js b/public/controllers/agent/components/register-agent.js index 8fe73a8108..18ae658f26 100644 --- a/public/controllers/agent/components/register-agent.js +++ b/public/controllers/agent/components/register-agent.js @@ -271,7 +271,7 @@ export const RegisterAgent = withErrorBoundary( this.state.selectedVersion === 'windowsserver2008' || this.state.selectedVersion === 'windows7' ) { - return 'NET START WazuhSvc'; + return 'NET START Wazuh'; } else { return ''; } From 6290be3f69f9874e1987972cc23d058b3dddd251 Mon Sep 17 00:00:00 2001 From: Julio Cesar Biset Date: Wed, 14 Jun 2023 12:44:19 -0300 Subject: [PATCH 2/2] Fix CHANGELOG --- CHANGELOG.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cad0ea500a..48bf6b35fc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,10 +4,6 @@ All notable changes to the Wazuh app project will be documented in this file. ## Wazuh v4.4.5 - Kibana 7.10.2, 7.16.x, 7.17.x - Revision 00 -### Changed - -- Changed windows agent service name in the deploy agent wizard [#5538](https://github.com/wazuh/wazuh-kibana-app/pull/5538) - ### Fixed - Fixed the rendering of tables that contains IPs and agent overview [#5471](https://github.com/wazuh/wazuh-kibana-app/pull/5471) @@ -16,6 +12,10 @@ All notable changes to the Wazuh app project will be documented in this file. - Removed the agent name in the agent info ribbon [#5497](https://github.com/wazuh/wazuh-kibana-app/pull/5497) +### Changed + +- Changed windows agent service name in the deploy agent wizard [#5538](https://github.com/wazuh/wazuh-kibana-app/pull/5538) + ## Wazuh v4.4.4 - Kibana 7.10.2, 7.16.x, 7.17.x - Revision 01 ### Added