This repository has been archived on 2025-09-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
repertory-ui/public/detect_linux.sh
Scott E. Graves 9207d6af3f Debian support
2019-04-07 18:02:51 -05:00

18 lines
387 B
Bash

#!/bin/bash
DISTNAME=unknown
DISTVER=
if [ -f /etc/solus-release ]; then
DISTNAME=solus
elif [ -f /etc/lsb-release ]; then
. /etc/lsb-release
DISTNAME=$(echo ${DISTRIB_ID} | awk '{print tolower($0)}')
DISTVER=${DISTRIB_RELEASE}
elif [ -f /etc/debian_version ]; then
DISTNAME=debian
DISTVER=$(head -1 /etc/debian_version|awk -F. '{print $1}')
fi
echo ${DISTNAME}${DISTVER}