mirror of
https://github.com/frappe/bench.git
synced 2024-11-11 15:51:03 +00:00
11 lines
222 B
Bash
11 lines
222 B
Bash
#!/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
|