Skip to content
This repository has been archived by the owner on Jan 25, 2023. It is now read-only.

Update jq & AWS #167

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion modules/install-consul/install-consul
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,11 @@ function install_dependencies {
sudo apt-get install -y awscli curl unzip jq
elif $(has_yum); then
sudo yum update -y
sudo yum install -y aws curl unzip jq
sudo yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
sudo yum install python-pip -y
sudo pip install --upgrade pip
sudo pip install awscli
sudo yum install curl unzip jq -y
else
log_error "Could not find apt-get or yum. Cannot install dependencies on this OS."
exit 1
Expand Down