kolla-ansible/ansible/roles/swift/tasks/check.yml
Xinliang Liu df60b76552 Fix ansible running issue on Debian
When deploying on debian, it reports error:
stat /usr/bin/ansible: no such file or directory

That's because on Debian and Ubuntu pip install ansible to
/usr/local/bin/ansible, whereas on CentOS the location is
/usr/bin/ansible.

Change to ansible to handle both cases.

Closes-Bug: #1729216
Depends-On: I2b57403128bc103148ae696c219df52590214adc

Change-Id: I025037cf48596450e6479ab7ff6425c48ac73aad
Signed-off-by: Xinliang Liu <xinliang.liu@linaro.org>
2017-11-02 09:46:38 +01:00

20 lines
738 B
YAML

---
- name: Swift sanity checks
command: docker exec -t kolla_toolbox ansible localhost
-m kolla_sanity
-a "service=swift
project=service
user={{ openstack_auth.username }}
password={{ swift_keystone_password }}
role=admin
region_name={{ openstack_region_name }}
auth={{ '{{ openstack_swift_auth }}' }}"
-e "{'openstack_swift_auth':{{ openstack_swift_auth }}}"
register: swift_sanity
changed_when: swift_sanity.stdout.find('localhost | SUCCESS => ') != -1 and (swift_sanity.stdout.split('localhost | SUCCESS => ')[1]|from_json).changed
until: swift_sanity.stdout.split()[2] == 'SUCCESS'
retries: 10
delay: 5
run_once: True
when: kolla_enable_sanity_swift | bool