about summary refs log tree commit diff
path: root/nixos/modules/services/monitoring
diff options
context:
space:
mode:
authorlewo <lewo@abesis.fr>2023-07-26 17:58:09 +0200
committerGitHub <noreply@github.com>2023-07-26 17:58:09 +0200
commit9a9896271477aac554d602e3d3756ec7f4065ccb (patch)
tree56470cbc4a5b4cf2c8fd114f2a373cade9827b54 /nixos/modules/services/monitoring
parentaed953af8ed13ff4f2ea99ff7d0a7b57954f82ec (diff)
parent8af1d49858d2ccf504bc33d066ba047795d43093 (diff)
downloadnixlib-9a9896271477aac554d602e3d3756ec7f4065ccb.tar
nixlib-9a9896271477aac554d602e3d3756ec7f4065ccb.tar.gz
nixlib-9a9896271477aac554d602e3d3756ec7f4065ccb.tar.bz2
nixlib-9a9896271477aac554d602e3d3756ec7f4065ccb.tar.lz
nixlib-9a9896271477aac554d602e3d3756ec7f4065ccb.tar.xz
nixlib-9a9896271477aac554d602e3d3756ec7f4065ccb.tar.zst
nixlib-9a9896271477aac554d602e3d3756ec7f4065ccb.zip
Merge pull request #245545 from nlewo/osquery-disable-database
nixos/osquery: do not use the local database for osqueryi
Diffstat (limited to 'nixos/modules/services/monitoring')
-rw-r--r--nixos/modules/services/monitoring/osquery.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/monitoring/osquery.nix b/nixos/modules/services/monitoring/osquery.nix
index 98524d0c700c..4f6c2557a641 100644
--- a/nixos/modules/services/monitoring/osquery.nix
+++ b/nixos/modules/services/monitoring/osquery.nix
@@ -21,7 +21,7 @@ let
   osqueryi = pkgs.runCommand "osqueryi" { nativeBuildInputs = [ pkgs.makeWrapper ]; } ''
     mkdir -p $out/bin
     makeWrapper ${pkgs.osquery}/bin/osqueryi $out/bin/osqueryi \
-      --add-flags "--flagfile ${flagfile}"
+      --add-flags "--flagfile ${flagfile} --disable-database"
   '';
 in
 {