aboutsummaryrefslogtreecommitdiffstats
path: root/deploy/adapters
diff options
context:
space:
mode:
authorgrakiss <grakiss.wanglei@huawei.com>2016-01-16 15:56:31 +0800
committerJustin chi <chigang@huawei.com>2016-01-30 05:16:10 +0000
commitcb3d982b9c70e86dbe489c9eddfa40f2e563e224 (patch)
treeab45117f2591e7bf6ece6c882340503eb6757f79 /deploy/adapters
parenta7664d66d61424d6e931daf14e0cc50b82db76a7 (diff)
Use wait_for instead of sleep to fetch keyring
JIRA: COMPASS-275 - fetch is not reliable, and sleep is also not reliable - wait_for can be used to confirm the file existence Change-Id: Ie44715e1b8756398f656fdee2c3243f03967e29a Signed-off-by: grakiss <grakiss.wanglei@huawei.com> (cherry picked from commit 8f997e075da72337a5c60158708081bc40d77c67)
Diffstat (limited to 'deploy/adapters')
-rw-r--r--deploy/adapters/ansible/roles/ceph-mon/tasks/install_mon.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/deploy/adapters/ansible/roles/ceph-mon/tasks/install_mon.yml b/deploy/adapters/ansible/roles/ceph-mon/tasks/install_mon.yml
index e2fc8ebb..1bdf3bfc 100644
--- a/deploy/adapters/ansible/roles/ceph-mon/tasks/install_mon.yml
+++ b/deploy/adapters/ansible/roles/ceph-mon/tasks/install_mon.yml
@@ -14,8 +14,8 @@
- name: auto start ceph-mon
file: path="/var/lib/ceph/mon/ceph-{{ inventory_hostname }}/upstart" state="touch"
-- name: sleep for creating osd keyring
- shell: sleep 10
+- name: wait for creating osd keyring
+ wait_for: path=/var/lib/ceph/bootstrap-osd/ceph.keyring
- name: fetch osd keyring
fetch: src="/var/lib/ceph/bootstrap-osd/ceph.keyring" dest="/tmp/ceph.osd.keyring" flat=yes