blob: b3f43bb7589a9e0d8663a7f7a219047cfd540310 (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/bash
sudo add-apt-repository ppa:ansible/ansible # This step is needed to upgrade ansible to version 2.4.2 which is required for the ceph backend.
sudo apt-get update
sudo apt-get install -y ansible
sleep 3
ansible --version # Ansible version 2.4.2 or higher is required for ceph; 2.0.0.2 or higher is needed for other backends.
|