Skip to content

Commit

Permalink
Merge pull request #1369 from devanshjain7/integration-w-common
Browse files Browse the repository at this point in the history
shifted dependencies installation steps from README to install_dependencies.sh
  • Loading branch information
sushanthakumar authored Dec 19, 2022
2 parents 677ad77 + f93acf5 commit 8587e50
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion installer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions installer/install_dependencies.sh
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
Expand Down

0 comments on commit 8587e50

Please sign in to comment.