meson: fix the missing root mfg flag
The existing meson support missed this root mfg config so that root user
is bypassed. This patch fixed it.
After this change, Redfish/IPMI tests on meson built pacakge starts
working.
Tested:
1. QEMU tests all pass
2. Tested on real hardware, user-manager creats the root user upon
startup. I don't have ldap server but I tested the ldap config APIs
which worked fine.
Signed-off-by: Nan Zhou <nanzhoumails@gmail.com>
Change-Id: I57cd2829bc952d8062709b715c88a8efe02c349c
diff --git a/meson_options.txt b/meson_options.txt
index cdf492c..b68ef14 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -1 +1,2 @@
option('tests', type: 'feature', description: 'Build tests', value: 'enabled')
+option('root_user_mgmt', type: 'feature', description: 'Enable management of the root user', value: 'enabled')