Skip to content

Commit 6c9db8b

Browse files
committed
keylime-agent.conf: Allow setting event logs paths
This introduces the 'ima_ml_path' and 'measuredboot_ml_path' options to set the IMA measurement log and Measured Boot event log, respectively. This also bumps the configuration version to 2.2 as new options were added. Signed-off-by: Anderson Toshiyuki Sasaki <[email protected]>
1 parent 91390c4 commit 6c9db8b

File tree

1 file changed

+16
-1
lines changed

1 file changed

+16
-1
lines changed

keylime-agent.conf

+16-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# The configuration file version
1212
#
1313
# To override, set KEYLIME_AGENT_VERSION environment variable.
14-
version = "2.1"
14+
version = "2.2"
1515

1616
# The agent's UUID.
1717
# If you set this to "generate", Keylime will create a random UUID.
@@ -298,3 +298,18 @@ run_as = "keylime:tss"
298298
# variable.
299299
agent_data_path = "default"
300300

301+
# Path from where the agent will read the IMA measurement log.
302+
#
303+
# If set as "default", Keylime will use the default path:
304+
# The default path is /sys/kernel/security/ima/ascii_runtime_measurements
305+
# If set as a relative path, it will be considered from the root path "/".
306+
# If set as an absolute path, it will use it without changes
307+
ima_ml_path = "default"
308+
309+
# Path from where the agent will read the measured boot event log.
310+
#
311+
# If set as "default", Keylime will use the default path:
312+
# The default path is /sys/kernel/security/tpm0/binary_boot_measurements
313+
# If set as a relative path, it will be considered from the root path "/".
314+
# If set as an absolute path, it will use it without changes
315+
measuredboot_ml_path = "default"

0 commit comments

Comments
 (0)