From d2aedc04f64dd2eaf89cdd5cf33e7b1d6666ad8d Mon Sep 17 00:00:00 2001 From: Andreas Umbreit Date: Wed, 13 Nov 2024 08:51:49 +0100 Subject: [PATCH] 17381 FIX Agent Updater: Prevent initial reinstallation on Linux/Solaris Previously, the agent updater relied on a previous update to know its own installed agent hash. This lead to the situation that the agent updater always downloaded the agent after initial registration, even if it was idential to the one already installed. Now, the agent updater makes use of static information about the installed agent hash that already comes with the installation of the agent package. Reland with fixed unit test Change-Id: I1b657733667be8bb1116f87394cfce903384b1a0 --- .werks/17381.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .werks/17381.md diff --git a/.werks/17381.md b/.werks/17381.md new file mode 100644 index 00000000000..9050b09dd25 --- /dev/null +++ b/.werks/17381.md @@ -0,0 +1,19 @@ +[//]: # (werk v2) +# Agent Updater: Prevent initial reinstallation on Linux/Solaris + +key | value +---------- | --- +date | 2024-11-13T07:46:35+00:00 +version | 2.4.0b1 +class | fix +edition | cee +component | agents +level | 1 +compatible | yes + +Previously, the agent updater relied on a previous update to know its own installed +agent hash. This lead to the situation that the agent updater always downloaded the +agent after initial registration, even if it was idential to the one already installed. + +Now, the agent updater makes use of static information about the installed agent hash +that already comes with the installation of the agent package.