summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--config/meson.build2
-rw-r--r--meson_options.txt17
2 files changed, 9 insertions, 10 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())
diff --git a/meson_options.txt b/meson_options.txt
index 26fdecf2d4..31095007f0 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -237,6 +237,14 @@ option(
)
option(
+ 'redfish-health-populate',
+ type: 'feature',
+ value: 'disabled',
+ description: '''Enables HealthPopulate and generate the Status property for
+ the resource. This option will be removed Q1 2024'''
+)
+
+option(
'https_port',
type: 'integer',
min: 1,
@@ -335,12 +343,3 @@ option(
enable on production systems at this time. Other query
parameters such as only are not controlled by this option.'''
)
-
-option(
- 'health-populate',
- type: 'feature',
- value: 'enabled',
- description: '''Enables HealthPopulate and generate the Status property for
- the resource'''
-)
-