File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -35,8 +35,11 @@ blackbox.framework.inventory.ansible() {
3535 apt update
3636 fi
3737
38- DEBIAN_FRONTEND=noninteractive apt install -y --no-install-recommends software-properties-common && {
39- apt-add-repository -y ppa:ansible/ansible
40- DEBIAN_FRONTEND=noninteractive apt install -y --no-install-recommends " $package_name " " ${with_packages[@]} "
38+ DEBIAN_FRONTEND=noninteractive apt install -y --no-install-recommends software-properties-common gpg-agent wget && {
39+ wget -S --output-document=" /tmp/ansible.deb" --no-verbose https://launchpad.net/~ansible/+archive/ubuntu/ansible/+files/ansible_10.7.0-1ppa~jammy_all.deb && {
40+ DEBIAN_FRONTEND=noninteractive apt install -y /tmp/ansible.deb " ${with_packages[@]} " && {
41+ rm -f /tmp/ansible.deb
42+ }
43+ }
4144 }
4245}
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ blackbox.framework.inventory.awscli() {
3232 wget -S --output-document=" /tmp/awscli.zip" --no-verbose https://awscli.amazonaws.com/awscli-exe-linux-x86_64-2.11.25.zip && {
3333 rm -rf /usr/local/aws-cli/
3434
35- unzip /tmp/awscli.zip -d /tmp && {
35+ unzip -q /tmp/awscli.zip -d /tmp && {
3636 /tmp/aws/install
3737 rm -rf /tmp/aws*
3838 }
You can’t perform that action at this time.
0 commit comments