Skip to content

Commit 8587e50

Browse files
Merge pull request #1369 from devanshjain7/integration-w-common
shifted dependencies installation steps from README to install_dependencies.sh
2 parents 677ad77 + f93acf5 commit 8587e50

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

installer/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
### Install Steps
1010
```bash
11-
apt-get update && apt-get install -y git curl wget libltdl7 libseccomp2 libffi-dev
11+
apt-get update && apt-get install -y git
1212
git clone https://github.com/sodafoundation/multi-cloud.git
1313
cd multi-cloud/installer
1414
chmod +x install_dependencies.sh && . install_dependencies.sh

installer/install_dependencies.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
#!/bin/bash
22

3+
# Install dependencies
4+
echo Installing dependencies
5+
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
6+
37
# Enable docker repository
48
echo Enabling docker repository
59
mkdir -p /etc/apt/keyrings
@@ -13,10 +17,6 @@ echo \
1317
echo Updating local repositories
1418
apt-get update
1519

16-
# Install dependencies
17-
echo Installing dependencies
18-
apt-get install -y apt-transport-https ca-certificates gnupg gnupg-agent lsb-release software-properties-common sshpass pv gawk
19-
2020
# Install python dependencies
2121
echo Installing Python dependencies
2222
apt-get install -y python3-pip

0 commit comments

Comments
 (0)