Where do I get the latest osquery GPG keys for RHE...
# general
b
Where do I get the latest osquery GPG keys for RHEL RPMs?
s
Those keys have not changed.
There are instructions at https://osquery.io/downloads doens under alternate
curl -L <https://pkg.osquery.io/rpm/GPG>
👍 1
Or if you’re in debian,
Copy code
export OSQUERY_KEY=1484120AC4E9F8A1A577AEEE97A80C63C9D8B80B
sudo apt-key adv --keyserver <hkp://keyserver.ubuntu.com:80> --recv-keys $OSQUERY_KEY
b
Awesome, thank you!