2
0
mirror of https://github.com/frappe/bench.git synced 2025-01-23 15:08:24 +00:00
bench/vm/scripts/debian_family/install_ansible.sh

11 lines
222 B
Bash
Raw Normal View History

2018-03-05 13:16:34 +05:30
#!/bin/bash -eux
# Install Ansible repository.
apt -y update && apt-get -y upgrade
apt -y install software-properties-common
apt-add-repository ppa:ansible/ansible
# Install Ansible.
apt -y update
apt -y install ansible