summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorEd Tanous <edtanous@google.com>2023-05-31 22:44:26 +0300
committerEd Tanous <ed@tanous.net>2023-06-01 00:39:00 +0300
commit6f8273e49cffdd347c223b9538558edfb05e818a (patch)
tree5f50c120c2d1f7fa96aa1ed24a81f973bc34e49f /config
parentd5e74b807e54fe85d37f06b1fb4b633ccb058ee3 (diff)
downloadbmcweb-6f8273e49cffdd347c223b9538558edfb05e818a.tar.xz
Rename option and enable it by default
I jumped the gun a little on merging this. This commit moves the health-populate option to be called redfish-health-populate and disables it by default Tested: Code compiles Change-Id: I9b2ffef828ec912e011d5d82fbfeaae5fb66ff2a Signed-off-by: Ed Tanous <edtanous@google.com>
Diffstat (limited to 'config')
-rw-r--r--config/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/config/meson.build b/config/meson.build
index 6464024e05..d29d115556 100644
--- a/config/meson.build
+++ b/config/meson.build
@@ -13,7 +13,7 @@ conf_data.set10('BMCWEB_INSECURE_ENABLE_HTTP_PUSH_STYLE_EVENTING', insecure_push
conf_data.set('MESON_INSTALL_PREFIX', get_option('prefix'))
conf_data.set('HTTPS_PORT', get_option('https_port'))
conf_data.set('HTTPS_PORT', get_option('https_port'))
-enable_health_populate = get_option('health-populate')
+enable_health_populate = get_option('redfish-health-populate')
conf_data.set10('BMCWEB_ENABLE_HEALTH_POPULATE', enable_health_populate.enabled())
enable_proc_mem_status = get_option('redfish-enable-proccessor-memory-status')
conf_data.set10('BMCWEB_ENABLE_PROC_MEM_STATUS', enable_proc_mem_status.enabled())