From: Sébastien Han Date: Tue, 2 Sep 2014 22:04:23 +0000 (+0200) Subject: Fix OSD update during startup X-Git-Tag: v1.0.0~330^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F114%2Fhead;p=ceph-ansible.git Fix OSD update during startup 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 --- 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