Unverified Commit 9a989627 authored by lewo's avatar lewo Committed by GitHub
Browse files

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

nixos/osquery: do not use the local database for osqueryi
parents aed953af 8af1d498
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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
{