mirror of
https://bitbucket.org/atlassian/dc-deployments-automation.git
synced 2025-12-14 08:53:07 -06:00
15 lines
292 B
Bash
Executable File
15 lines
292 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
# Amazon Linux 2 packages Ansible separately, so enable the repo
|
|
. /etc/os-release
|
|
if [[ $ID == 'amzn' ]]; then
|
|
amazon-linux-extras enable ansible2
|
|
fi
|
|
|
|
./bin/pacapt install --noconfirm \
|
|
ansible \
|
|
python-boto3 \
|
|
python-botocore
|