[baseimage]: Update smartmontool version >= v7.4 (#17635)
Why I did it Update smartmontool verson to 7.4. This is done to prevent smartmontools service to exit with non-zero exit status on platform that does not have a SSD/disk to be monitored. Until Debian Bullseye (which had smartmontools 7.2), Debian had a patch applied that changed the default quit mode to never exit. A bug report was filed on Debian, saying that the source code patch isn't needed and could just be done via command line options, and also that smartmontools 7.3 has a new built-in option to exit with 0 if there are no monitorable devices found (which prevents systemd from treating it as a service failure). Because of that, Debian Bookworm (which also upgraded to 7.3) removed the patch and restored the default behavior of exiting with exit code 17 if there are no devices found. Smartmontools v7.3 has this issue, because of which smartd exits with non-zero exit status even with "-q" option. How I did it Update the smartmontools to version 7.4 which has the fix for exiting gracefully if no monitoring device is found Added smartd option "-q nodev0" to allow smartd to exit with status 0 if no monitoring device found
This commit is contained in:
parent
cac73d80ca
commit
0564ce48c9
@ -365,7 +365,8 @@ sudo chmod 755 $FILESYSTEM_ROOT/usr/bin/restart_service
|
||||
|
||||
# Installed smartmontools version should match installed smartmontools in docker-platform-monitor Dockerfile
|
||||
# TODO: are mismatching versions fine for bookworm?
|
||||
sudo LANG=C DEBIAN_FRONTEND=noninteractive chroot $FILESYSTEM_ROOT apt-get -y install smartmontools
|
||||
sudo LANG=C DEBIAN_FRONTEND=noninteractive chroot $FILESYSTEM_ROOT apt-get -y install -t bookworm-backports smartmontools
|
||||
sudo cp $IMAGE_CONFIGS/smartmontools/smartmontools $FILESYSTEM_ROOT/etc/default/smartmontools
|
||||
|
||||
# Install custom-built openssh sshd
|
||||
sudo dpkg --root=$FILESYSTEM_ROOT -i $debs_path/openssh-server_${OPENSSH_VERSION}_*.deb $debs_path/openssh-client_${OPENSSH_VERSION}_*.deb $debs_path/openssh-sftp-server_${OPENSSH_VERSION}_*.deb
|
||||
|
8
files/image_config/smartmontools/smartmontools
Normal file
8
files/image_config/smartmontools/smartmontools
Normal file
@ -0,0 +1,8 @@
|
||||
# Defaults for smartmontools initscript (/etc/init.d/smartmontools)
|
||||
# This is a POSIX shell fragment
|
||||
|
||||
# List of devices you want to explicitly enable S.M.A.R.T. for
|
||||
# Not needed (and not recommended) if the device is monitored by smartd
|
||||
#enable_smart="/dev/hda /dev/hdb"
|
||||
|
||||
smartd_opts="-q nodev0"
|
Loading…
Reference in New Issue
Block a user