We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b0c0702 commit e6d6e19Copy full SHA for e6d6e19
install/vst-install.sh
@@ -44,6 +44,11 @@ case $(head -n1 /etc/issue | cut -f 1 -d ' ') in
44
*) type="rhel" ;;
45
esac
46
47
+# Fallback to Ubuntu
48
+if [ ! -e "/etc/redhat-release" ]; then
49
+ type='ubuntu'
50
+fi
51
+
52
# Check wget
53
if [ -e '/usr/bin/wget' ]; then
54
wget http://vestacp.com/pub/vst-install-$type.sh -O vst-install-$type.sh
0 commit comments