Update stor4nfv install scripts according to opensds aruba release
[stor4nfv.git] / ci / ansible / install_ansible.sh
1 #!/bin/bash\r
2 \r
3 # Copyright (c) 2018 Huawei Technologies Co., Ltd. All Rights Reserved.\r
4 #\r
5 # Licensed under the Apache License, Version 2.0 (the "License");\r
6 # you may not use this file except in compliance with the License.\r
7 # You may obtain a copy of the License at\r
8 #\r
9 #     http://www.apache.org/licenses/LICENSE-2.0\r
10 #\r
11 # Unless required by applicable law or agreed to in writing, software\r
12 # distributed under the License is distributed on an "AS IS" BASIS,\r
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
14 # See the License for the specific language governing permissions and\r
15 # limitations under the License.\r
16 \r
17 # This step is needed to upgrade ansible to version 2.4.2 which is required for\r
18 # the ceph backend.\r
19 sudo add-apt-repository ppa:ansible/ansible-2.4\r
20 \r
21 sudo apt-get update\r
22 sudo apt-get install -y ansible\r
23 sleep 3\r
24 \r
25 ansible --version # Ansible version 2.4.2 is required for ceph; 2.0.2 or higher is needed for other backends.\r