mirror of
https://github.com/dev-sec/ansible-collection-hardening
synced 2024-11-10 09:14:18 +00:00
6 lines
231 B
Bash
6 lines
231 B
Bash
#!/bin/bash
|
|
sudo apt-get install -y build-essential python-dev python-setuptools
|
|
cd /tmp && wget http://releases.ansible.com/ansible/ansible-latest.tar.gz
|
|
tar xzf ansible-latest.tar.gz
|
|
cd ansible-* && sudo python setup.py install
|
|
|