add missing packages to installation

This commit is contained in:
ronivay
2018-10-08 16:16:09 +03:00
parent a1294230b2
commit 1765375cb8
2 changed files with 8 additions and 4 deletions

View File

@@ -104,6 +104,7 @@ CentOS:
- libpng-devel - libpng-devel
- python - python
- git - git
- nfs-utils
Debian/Ubuntu: Debian/Ubuntu:
- apt-transport-https - apt-transport-https
@@ -118,4 +119,7 @@ Debian/Ubuntu:
- libpng-dev - libpng-dev
- git - git
- python-minimal - python-minimal
- libvhdi-utils
- lvm2
- nfs-common
``` ```

View File

@@ -90,8 +90,8 @@ function InstallDependenciesCentOS {
# install # install
echo echo
echo -n "Installing build dependencies, redis server, python and git..." echo -n "Installing build dependencies, redis server, python, git, nfs-utils..."
yum -y install gcc gcc-c++ make openssl-devel redis libpng-devel python git >/dev/null yum -y install gcc gcc-c++ make openssl-devel redis libpng-devel python git nfs-utils >/dev/null
echo "done" echo "done"
echo echo
@@ -151,8 +151,8 @@ function InstallDependenciesDebian {
# install packages # install packages
echo echo
echo -n "Installing build dependencies, redis server, python and git..." echo -n "Installing build dependencies, redis server, python, git, libvhdi-utils, lvm2..."
apt-get install -y build-essential redis-server libpng-dev git python-minimal >/dev/null apt-get install -y build-essential redis-server libpng-dev git python-minimal libvhdi-utils lvm2 >/dev/null
echo "Enabling and starting redis service" echo "Enabling and starting redis service"
/bin/systemctl enable redis-server >/dev/null && /bin/systemctl start redis-server >/dev/null /bin/systemctl enable redis-server >/dev/null && /bin/systemctl start redis-server >/dev/null