Commit 48ef9191 authored by Dylan Araps's avatar Dylan Araps Committed by GitHub

Merge pull request #447 from dylanaraps/lsb-release

Distro: Remove lsb_release block
parents 8d98c4fb e3feb32a
......@@ -138,14 +138,6 @@ get_distro() {
*) distro="Red Star OS $(awk -F'[^0-9*]' '$0=$2' /etc/redstar-release)"
esac
elif type -p lsb_release >/dev/null; then
case "$distro_shorthand" in
"on") lsb_flags="-sir" ;;
"tiny") lsb_flags="-si" ;;
*) lsb_flags="-sd" ;;
esac
distro="$(lsb_release $lsb_flags)"
elif type -p guix >/dev/null; then
distro="GuixSD"
......@@ -161,7 +153,7 @@ get_distro() {
else
# Source the os-release file
for file in /etc/os-release /etc/*ease /usr/lib/*ease; do
for file in /etc/os-release /usr/lib/os-release /etc/*release /usr/lib/*release; do
source "$file" && break
done
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment