We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dcf7d97 commit 5a05030Copy full SHA for 5a05030
keylime-agent/src/config.rs
@@ -735,6 +735,8 @@ fn config_translate_keywords(
735
))
736
})?;
737
738
+ let root_path=Path::new("/");
739
+
740
let mut agent_data_path = config_get_file_path(
741
"agent_data_path",
742
&config.agent.agent_data_path,
@@ -745,14 +747,14 @@ fn config_translate_keywords(
745
747
let mut ima_ml_path = config_get_file_path(
746
748
"ima_ml_path",
749
&config.agent.ima_ml_path,
- "/",
750
+ root_path,
751
DEFAULT_IMA_ML_PATH,
752
);
753
754
let mut measuredboot_ml_path = config_get_file_path(
755
"measuredboot_ml_path",
756
&config.agent.measuredboot_ml_path,
757
758
DEFAULT_MEASUREDBOOT_ML_PATH,
759
760
0 commit comments