From d0403b820e6d29d2eabd68cb9f3053507840ef94 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Han?= Date: Wed, 3 Sep 2014 00:04:23 +0200 Subject: [PATCH] Fix OSD update during startup MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Proviously we used osd_crush_update_on_start: true, this was interpreted by Ansible as a boolean and appeared as 'True' inside the Ceph configuration file. However the Ceph's init script is looking for 'true'. Signed-off-by: Sébastien Han --- roles/ceph-common/defaults/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/ceph-common/defaults/main.yml b/roles/ceph-common/defaults/main.yml index 32a12dcf1..6a1de1908 100644 --- a/roles/ceph-common/defaults/main.yml +++ b/roles/ceph-common/defaults/main.yml @@ -49,7 +49,7 @@ osd_mount_options_xfs: noatime osd_mon_heartbeat_interval: 30 # CRUSH pool_default_crush_rule: 0 -osd_crush_update_on_start: true +osd_crush_update_on_start: "true" # Object backend osd_objectstore: filestore # Performance tuning