From 564c60523f32f4971e6ec4dab0506d96c5370dd3 Mon Sep 17 00:00:00 2001 From: Werner Sembach Date: Mon, 17 Oct 2022 12:27:01 +0200 Subject: [PATCH] dkms_common.postinst: Add "Tuxedo" distributor id Signed-off-by: Werner Sembach --- dkms_common.postinst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dkms_common.postinst b/dkms_common.postinst index 88caa148..d9fa1175 100644 --- a/dkms_common.postinst +++ b/dkms_common.postinst @@ -201,7 +201,7 @@ echo "Building for $KERNELS" | tr '\n' ',' \ | sed -e 's/,/, /g; s/, $/\n/; s/, \([^,]\+\)$/ and \1/' if [ -n "$ARCH" ]; then - if which lsb_release >/dev/null && [ $(lsb_release -s -i) = "Ubuntu" ]; then + if which lsb_release >/dev/null && ([ $(lsb_release -s -i) = "Ubuntu" ] || [ $(lsb_release -s -i) = "Tuxedo" ]); then case $ARCH in amd64) ARCH="x86_64"