Skip to content

Commit

Permalink
dkms_common.postinst: Add "Tuxedo" distributor id
Browse files Browse the repository at this point in the history
Signed-off-by: Werner Sembach <[email protected]>
  • Loading branch information
tuxedo-wse committed Oct 19, 2022
1 parent 6a35e8a commit 564c605
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dkms_common.postinst
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 564c605

Please sign in to comment.