diff --git a/linux-installer/idt-installer b/linux-installer/idt-installer index bcad5ce..7cc5bd1 100755 --- a/linux-installer/idt-installer +++ b/linux-installer/idt-installer @@ -117,7 +117,7 @@ function install_deps { install_darwin_deps ;; "Linux") - if [[ "${DISTRO}" == *Ubuntu* || "${DISTRO}" == *Debian* ]]; then + if [[ "${DISTRO}" == *Ubuntu* || "${DISTRO}" == *Debian* || "${DISTRO}" == *Linux*Lite* ]]; then install_deps_with_apt_get elif [[ "${DISTRO}" == *Red*Hat* || "${DISTRO}" == *CentOS* || "${DISTRO}" == *RHEL* || "${DISTRO}" == *Fedora* ]]; then install_deps_with_yum @@ -424,7 +424,7 @@ function main { "Linux") # Linux distro, e.g "Ubuntu", "RedHatEnterpriseWorkstation", "RedHatEnterpriseServer", "CentOS", "Debian" DISTRO=$(lsb_release -ds 2>/dev/null || cat /etc/*release 2>/dev/null | head -n1 || uname -om || echo "") - if [[ "$DISTRO" != *Ubuntu* && "$DISTRO" != *Red*Hat* && "$DISTRO" != *CentOS* && "$DISTRO" != *Debian* && "$DISTRO" != *RHEL* && "$DISTRO" != *Fedora* ]]; then + if [[ "$DISTRO" != *Ubuntu* && "$DISTRO" != *Linux*Lite* && "$DISTRO" != *Red*Hat* && "$DISTRO" != *CentOS* && "$DISTRO" != *Debian* && "$DISTRO" != *RHEL* && "$DISTRO" != *Fedora* ]]; then warn "Linux has only been tested on Ubuntu, RedHat, Centos, Debian and Fedora distrubutions please let us know if you use this utility on other Distros" fi ;;