Skip to content

Commit

Permalink
Revert "use pip to install ansible and pin to working version"
Browse files Browse the repository at this point in the history
It seems the original issue is fixed now:
ansible-community/ppa#77
This reverts commit 02c432c.
  • Loading branch information
TimotheusBachinger committed Nov 14, 2023
1 parent 6865ed0 commit 49be7d4
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions packer/checkmk.pkr.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,10 @@ build {
# install ansible
provisioner "shell" {
inline = [
"sudo apt-get install -y -q software-properties-common python3-pip",
"sudo python3 -m pip install ansible==8.5.0",
"sudo apt-get install -y -q software-properties-common",
"sudo add-apt-repository --yes --update ppa:ansible/ansible",
"sudo apt-get update",
"sudo apt-get install -y -q ansible",
]
}
# run playbook
Expand Down

0 comments on commit 49be7d4

Please sign in to comment.