Merge pull request #684 from MartinRaiola/patch-1

Fix OS version in vst-install-debian.sh
This commit is contained in:
Serghey Rodin 2016-06-25 11:28:30 +03:00 committed by GitHub
commit c6249faf6c

View file

@ -13,7 +13,7 @@ VERSION='debian'
memory=$(grep 'MemTotal' /proc/meminfo |tr ' ' '\n' |grep [0-9])
arch=$(uname -i)
os='debian'
release=$(cat /etc/issue|grep -o [0-9]|head -n1)
release=$(cat /etc/debian_version|grep -o [0-9]|head -n1)
codename="$(cat /etc/os-release |grep VERSION= |cut -f 2 -d \(|cut -f 1 -d \))"
vestacp="http://$CHOST/$VERSION/$release"