[init] install git

This commit is contained in:
Paul Schoenfelder 2018-06-01 10:43:51 -04:00
parent 37f5b002f4
commit 22a0f2901c
1 changed files with 4 additions and 0 deletions

View File

@ -55,6 +55,10 @@ if ! which jq >/dev/null; then
log "Installing jq.."
yum install -y --enablerepo=epel jq >"$LOG"
fi
if ! which git >/dev/null; then
log "Installing git.."
yum install -y --enablerepo=epel git >"$LOG"
fi
log "Determining region this instance is in.."
REGION="$(curl -s $DYNDATA_URL/instance-identity/document | jq -r '.region')"