10 lines
239 B
Bash
10 lines
239 B
Bash
#!/bin/bash -eux
|
|
|
|
# Install Ansible dependencies.
|
|
apt -y update && apt-get -y upgrade && apt -y install -y ansible
|
|
# apt -y update && apt-get -y upgrade
|
|
# apt -y install python3-pip python3-dev
|
|
|
|
# # Install Ansible.
|
|
# pip3 install ansible
|