This commit is contained in:
t3chn0m4g3 2019-02-15 11:29:39 +01:00
parent 010da57392
commit b692ebd822

View file

@ -5,6 +5,15 @@
# Extract command line arguments #
##################################
# Check for LSB command
myLSBCMD=$(which lsb_release)
if [ "$myLSBCHECK" = "" ];
then
apt-get -y update
apt-get -y install lsb-release
fi
# Check for Debian release
myLSB=$(lsb_release -c | awk '{ print $2 }')
myLSB_STABLE_SUPPORTED="stretch"
myLSB_TESTING_SUPPORTED="sid"