From 1b816f194d0e420efbb8648c0275171e2b598599 Mon Sep 17 00:00:00 2001 From: Nils Steinger Date: Thu, 24 Sep 2015 01:37:07 +0200 Subject: [PATCH] distro script: Removed United Linux (which has been dead since 2004) --- scripts/distro | 2 -- 1 file changed, 2 deletions(-) diff --git a/scripts/distro b/scripts/distro index 88cfd80a7..f97c4e94d 100755 --- a/scripts/distro +++ b/scripts/distro @@ -41,8 +41,6 @@ elif [ "${OS}" = "Linux" ] ; then DIST="Arch Linux" REV="" # Omit version since Arch Linux uses rolling releases IGNORE_LSB=1 # /etc/lsb-release would overwrite $REV with "rolling" - elif [ -f /etc/UnitedLinux-release ] ; then - DIST="${DIST}[`cat /etc/UnitedLinux-release | tr "\n" ' ' | sed s/VERSION.*//`]" elif [ -f /etc/os-release ] ; then DIST="$(grep '^NAME=' /etc/os-release | cut -d= -f2- | tr -d '\"')" REV="$(grep '^VERSION_ID=' /etc/os-release | cut -d= -f2- | tr -d '\"')"