Merge pull request #245545 from nlewo/osquery-disable-database

nixos/osquery: do not use the local database for osqueryi
This commit is contained in:
lewo 2023-07-26 17:58:09 +02:00 committed by GitHub
commit 9a98962714
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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
{