[neon/neon/calamares-settings/Neon/release_focal] oem-prepare/usr/sbin: route dmidecode through pkexec

Harald Sitter null at kde.org
Wed Jul 6 09:48:27 BST 2022


Git commit 24be8e44247b74841f78249c40e6a41451dcdd5d by Harald Sitter.
Committed on 06/07/2022 at 08:47.
Pushed by sitter into branch 'Neon/release_focal'.

route dmidecode through pkexec

if I am not mistaken we run the OEM calamares as a user that has pkexec
enabled but is not itself root, so we need to route the call through
pkexec to get actual output

M  +2    -2    oem-prepare/usr/sbin/calamares-oem-slimbook-proxamd5

https://invent.kde.org/neon/neon/calamares-settings/commit/24be8e44247b74841f78249c40e6a41451dcdd5d

diff --git a/oem-prepare/usr/sbin/calamares-oem-slimbook-proxamd5 b/oem-prepare/usr/sbin/calamares-oem-slimbook-proxamd5
index 9830fc2..fe65b5b 100755
--- a/oem-prepare/usr/sbin/calamares-oem-slimbook-proxamd5
+++ b/oem-prepare/usr/sbin/calamares-oem-slimbook-proxamd5
@@ -6,12 +6,12 @@
 
 set -ex
 
-if [ "$(dmidecode --string system-manufacturer)" != "SLIMBOOK" ]; then
+if [ "$(pkexec dmidecode --string system-manufacturer)" != "SLIMBOOK" ]; then
   echo "I: Not SLIMBOOK"
   exit 0
 fi
 
-if [ "$(dmidecode --string system-product-name)" != "PROX-AMD5" ]; then
+if [ "$(pkexec dmidecode --string system-product-name)" != "PROX-AMD5" ]; then
   echo "I: Not PROX-AMD5"
   exit 0
 fi


More information about the Neon-commits mailing list