From ac1ae33b052d4593e5704dbaafabab5c6b4eb197 Mon Sep 17 00:00:00 2001 From: Richard Hughes Date: Tue, 21 Sep 2021 15:05:18 +0100 Subject: [PATCH] redfish: Install the config file readable only by root It's got a password there, so this seems entirely appropriate. --- plugins/redfish/meson.build | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/redfish/meson.build b/plugins/redfish/meson.build index 07401d03c..5263048c5 100644 --- a/plugins/redfish/meson.build +++ b/plugins/redfish/meson.build @@ -53,7 +53,8 @@ shared_module('fu_plugin_redfish', ) install_data(['redfish.conf'], - install_dir: join_paths(sysconfdir, 'fwupd') + install_dir: join_paths(sysconfdir, 'fwupd'), + install_mode: 'rw-r-----', ) if get_option('tests')