diff --git a/plugins/varnish/install.sh b/plugins/varnish/install.sh index 0d8a80c42..58426eaed 100755 --- a/plugins/varnish/install.sh +++ b/plugins/varnish/install.sh @@ -15,16 +15,16 @@ VERSION=$2 _os=`uname` if [ ${_os} == "Darwin" ]; then OSNAME='macos' -elif grep -Eqi "CentOS" /etc/issue || grep -Eq "CentOS" /etc/*-release; then +elif grep -Eq "openSUSE" /etc/*-release; then + OSNAME='opensuse' +elif grep -Eq "CentOS" /etc/*-release; then OSNAME='centos' -elif grep -Eqi "Fedora" /etc/issue || grep -Eq "Fedora" /etc/*-release; then +elif grep -Eq "Fedora" /etc/*-release; then OSNAME='fedora' -elif grep -Eqi "Debian" /etc/issue || grep -Eq "Debian" /etc/*-release; then +elif grep -Eq "Debian" /etc/*-release; then OSNAME='debian' -elif grep -Eqi "Ubuntu" /etc/issue || grep -Eq "Ubuntu" /etc/*-release; then +elif grep -Eq "Ubuntu" /etc/*-release; then OSNAME='ubuntu' -elif grep -Eqi "Raspbian" /etc/issue || grep -Eq "Raspbian" /etc/*-release; then - OSNAME='raspbian' else OSNAME='unknow' fi @@ -39,7 +39,9 @@ Install_varnish() elif [ ${OSNAME} == "centos" ]; then yum install varnish -y elif [ ${OSNAME} == "debian" ] || [ ${OSNAME} == "ubuntu" ]; then - apt-get install varnish -y + apt install varnish -y + elif [ ${OSNAME} == "opensuse" ];then + zypper install -y varnish else echo "I won't support it" fi