From 8914c309ec3f25050e8a374eedde43d68362df40 Mon Sep 17 00:00:00 2001 From: pedro Date: Mon, 9 Dec 2024 19:19:08 +0100 Subject: [PATCH] bugfixes contributed by thomas related to PR #7 --- deploy-workbench.sh | 2 +- install-dependencies.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/deploy-workbench.sh b/deploy-workbench.sh index d0884bc..3effbef 100755 --- a/deploy-workbench.sh +++ b/deploy-workbench.sh @@ -327,7 +327,7 @@ echo 'Install requirements' apt-get install -y --no-install-recommends \ sudo locales keyboard-configuration console-setup qrencode \ python-is-python3 python3 python3-dev python3-pip pipenv \ - dmidecode smartmontools hwinfo pciutils lshw nfs-common < /dev/null + dmidecode smartmontools hwinfo pciutils lshw nfs-common inxi < /dev/null # Install lshw B02.19 utility using backports (DEPRECATED in Debian 12) #apt install -y -t ${VERSION_CODENAME}-backports lshw < /dev/null diff --git a/install-dependencies.sh b/install-dependencies.sh index bb97b97..e1f7345 100755 --- a/install-dependencies.sh +++ b/install-dependencies.sh @@ -9,7 +9,7 @@ set -u set -x main() { - sudo apt install smartmontools lshw hwinfo dmidecode + sudo apt install qrencode smartmontools lshw hwinfo dmidecode inxi } main "${@}"