MHMDhub / enterprise-log-search-and-archive

Automatically exported from code.google.com/p/enterprise-log-search-and-archive
0 stars 0 forks source link

install.sh has wrong ubuntu package manager in function ubuntu_get_web_packages #149

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1.  Upgrading elsa web
$ sudo sh -c "sh install.sh web update"

What is the expected output? What do you see instead?
Seeing this error:
install.sh: 830: install.sh: zypper: not found

What version of the product are you using? On what operating system?
This started with r889 and is specific to Ubuntu.

Please provide any additional information below.
In the function ubuntu_get_web_packages within install.sh, the package manager 
should be apt-get and not zypper.  Command options also need a minor tweak.

FROM: zypper -qn install mysql-client libmysqlclient-dev
TO:     apt-get -qy install mysql-client libmysqlclient-dev

Original issue reported on code.google.com by kebut...@gmail.com on 5 Jun 2013 at 12:29

GoogleCodeExporter commented 8 years ago
Strange, fixed.

Original comment by mchol...@gmail.com on 5 Jun 2013 at 3:58