From f93acf5a17030e6fd7d0240543a8dffeddda9dc5 Mon Sep 17 00:00:00 2001 From: Devansh Jain Date: Mon, 19 Dec 2022 16:15:35 +0530 Subject: [PATCH] shifted dependencies installation steps from README to install_dependencies.sh --- installer/README.md | 2 +- installer/install_dependencies.sh | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/installer/README.md b/installer/README.md index f182ac7d0..e34efd037 100644 --- a/installer/README.md +++ b/installer/README.md @@ -8,7 +8,7 @@ ### Install Steps ```bash -apt-get update && apt-get install -y git curl wget libltdl7 libseccomp2 libffi-dev +apt-get update && apt-get install -y git git clone https://github.com/sodafoundation/multi-cloud.git cd multi-cloud/installer chmod +x install_dependencies.sh && . install_dependencies.sh diff --git a/installer/install_dependencies.sh b/installer/install_dependencies.sh index 13d4a5bf3..fec862c98 100755 --- a/installer/install_dependencies.sh +++ b/installer/install_dependencies.sh @@ -1,5 +1,9 @@ #!/bin/bash +# Install dependencies +echo Installing dependencies +apt-get install -y curl wget libltdl7 libseccomp2 libffi-dev apt-transport-https ca-certificates gnupg gnupg-agent lsb-release software-properties-common sshpass pv gawk + # Enable docker repository echo Enabling docker repository mkdir -p /etc/apt/keyrings @@ -13,10 +17,6 @@ echo \ echo Updating local repositories apt-get update -# Install dependencies -echo Installing dependencies -apt-get install -y apt-transport-https ca-certificates gnupg gnupg-agent lsb-release software-properties-common sshpass pv gawk - # Install python dependencies echo Installing Python dependencies apt-get install -y python3-pip