nyanshak
04/09/2021, 4:58 PMdocker run -it <http://registry.access.redhat.com/ubi8/ubi:8.1|registry.access.redhat.com/ubi8/ubi:8.1> bash
# yum-config-manager needs to be installed on this system
yum install yum-utils
# no sudo installed by default and already running as root, so I've modified instructions to remove sudo, but otherwise are the same:
curl -L <https://pkg.osquery.io/rpm/GPG> | tee /etc/pki/rpm-gpg/RPM-GPG-KEY-osquery
yum-config-manager --add-repo <https://pkg.osquery.io/rpm/osquery-s3-rpm.repo>
yum-config-manager --enable osquery-s3-rpm
Error: No matching repo to modify: osquery-s3-rpm.
^ I noticed the instructions failed at this point.
I opened https://pkg.osquery.io/rpm/osquery-s3-rpm.repo to take a look... Looks like the repo name changed or something? Shows as osquery-s3-rpm-repo
instead of osquery-s3-rpm
.
Seems to pan out, because changing the line to this works:
yum-config-manager --enable osquery-s3-rpm
And then I'm able to successfully install osquery with yum install osquery
theopolis
04/09/2021, 5:07 PMyum-config-manager --enable osquery-s3-rpm-repo
worked?nyanshak
04/09/2021, 5:07 PMtheopolis
04/09/2021, 5:07 PMnyanshak
04/09/2021, 5:08 PMtheopolis
04/09/2021, 5:11 PMosquery-s3-rpm-repo
for a while (since at least last August)nyanshak
04/09/2021, 5:17 PMseph
04/09/2021, 5:59 PM--enable
required?nyanshak
04/09/2021, 6:01 PMseph
04/09/2021, 6:05 PM