sentora / sentora-installers

Provides a central place to store, version and distribute the Sentora installer and upgrade scripts from.
GNU General Public License v3.0
154 stars 148 forks source link

Debian 7 install issue #79

Closed deancb closed 9 years ago

deancb commented 9 years ago

Trying to install onto a Debian 7 box, I have used the following:

wget https://raw.githubusercontent.com/sentora/sentora-installers/master/sentora_install.sh

When running ./sentora_install.sh I am getting:

############################################################
#  Welcome to the Official Sentora Installer master  #
############################################################

Checking that minimal requirements are ok
Detected : debian  7  x86_64
Sorry, this OS is not supported by Sentora.
MBlagui commented 9 years ago

hmm this is still ALPHA.

You can disable os check manually and try to force it.

M B

deancb commented 9 years ago

I managed to fix this by changing line 75 from:

"$OS" = "Debian" && ("$VER" = "7" || "$VER" = "8" ) ]] ; then

to

`"$OS" = "debian" && ("$VER" = "7" || "$VER" = "8" ) ]] ; then`
slacknux commented 9 years ago

Exactly, it's 'debian' (not 'Debian'). It is ok in my repository. I took a look to the manual merge by Caffe1neAdd1ct of my Debian support and he messed up some stuff. I'm going to fix them soon.

Caffe1neAdd1ct commented 9 years ago

Fixed apologies about that one :8ball: