Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Zathras installer #129

Merged
merged 7 commits into from
Dec 17, 2024
Merged
Changes from 2 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 bin/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ for package in "${packages[@]}"; do
sudo dnf config-manager --add-repo $repo_url

# install the package
sudo dnf install terraform -y
sudo dnf install terraform-1.9.8-1 -y
else
echo "package $package is not installed and not available."
fi
Expand All @@ -80,6 +80,10 @@ pip3 install boto boto3 --user
pip3 install 'yq==2.10.0' --user


# install AWS collection for ansible
ansible-galaxy collection install amazon.aws


echo "Before you can run Zathras:"
echo "****Ensure ~/.local/bin is in your path"
echo "****Set up a scenario file"
Expand Down