From ea1bbee585cc256b62351e0bbb2645e88422fec8 Mon Sep 17 00:00:00 2001 From: Achim Gsell Date: Mon, 12 Aug 2024 16:01:23 +0200 Subject: [PATCH] detection of SLES distribution added --- Pmodules/libstd.bash | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Pmodules/libstd.bash b/Pmodules/libstd.bash index 36a5474..7c02bbb 100644 --- a/Pmodules/libstd.bash +++ b/Pmodules/libstd.bash @@ -191,6 +191,9 @@ std.get_os_release_linux() { ubuntu ) echo "Ubuntu${VERSION_ID%.*}" ;; + suse ) + echo "sles${VERSION_ID%.*}" + ;; * ) echo "Unknown" exit 1