From e4e2518625da040fa99ed3275c1ca6f1ce09d773 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gardais=20J=C3=A9r=C3=A9my?= Date: Thu, 27 Apr 2023 13:52:15 +0200 Subject: [PATCH] Remove hddtemp dependency MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Package is no longer available in Debian Bookworm and can be replaced by **drivetemp** kernel module (working since Debian Bullseye 👍). --- CHANGELOG.md | 4 ++++ README.md | 2 +- defaults/main.yml | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 30d30e4..d2a1590 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ * Add new kern probe management. * Update dependencies for libs probe after hobbit-plugins 20230301 upgrade +### Removed +* Remove hddtemp dependency. Package is no longer available in Debian Bookworm + and replaced by **drivetemp** kernel module (working since Debian Bullseye). + ## v2.0.3 ### Fix diff --git a/README.md b/README.md index 03ab1e6..763e015 100644 --- a/README.md +++ b/README.md @@ -204,7 +204,7 @@ one's recommended by the vendor and check a recent (<24h) test was done. Variables for the temp plugin from hobbit-plugins. Simple temperature monitor. * **xymon_cli__plug_temp_state** : The state of plugin `temp` [default : `False`]. -* **xymon_cli__plug_temp_package** : The packages to install to provide `temp` plugin [default : `[ 'libfile-which-perl', 'libyaml-tiny-perl', 'hddtemp', 'smartmontools', 'libxml-twig-perl' ]`]. +* **xymon_cli__plug_temp_package** : The packages to install to provide `temp` plugin [default : `[ 'libfile-which-perl', 'libyaml-tiny-perl', 'smartmontools', 'libxml-twig-perl' ]`]. * **xymon_cli__plug_temp_path** : Configuration file for the `temp` plugin [default : `'/etc/xymon/clientlaunch.d/temp.cfg'`]. * **xymon_cli__plug_temp_tpl** : Template used to generate the previous config file [default : `'etc/xymon/clientlaunch.d/temp.cfg.j2'`]. * **xymon_cli__plug_temp_interval** : Time between each run of the `temp` plugin [default : `'5m'`] diff --git a/defaults/main.yml b/defaults/main.yml index b3e6cb9..35f6656 100644 --- a/defaults/main.yml +++ b/defaults/main.yml @@ -187,7 +187,7 @@ xymon_cli__plug_smart_interval: '10m' ## Plugin temp [[[ ### Enable by default on hardware host xymon_cli__plug_temp_state: False -xymon_cli__plug_temp_package: [ 'libfile-which-perl', 'libyaml-tiny-perl', 'hddtemp', 'smartmontools', 'libxml-twig-perl' ] +xymon_cli__plug_temp_package: [ 'libfile-which-perl', 'libyaml-tiny-perl', 'smartmontools', 'libxml-twig-perl' ] # Define xymon_cli__plug_temp_extra_package in your own inventory. # See Nvidia support in README for more informations #xymon_cli__plug_temp_extra_package: [ 'nvidia-smi' ]