Skip to content

Commit

Permalink
Rename the initial kolide plugin to kolide_grpc (#851)
Browse files Browse the repository at this point in the history
  • Loading branch information
directionless authored Jul 29, 2022
1 parent e7f399f commit 36ff746
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/osquery/runtime/runner.go
Original file line number Diff line number Diff line change
Expand Up @@ -366,9 +366,9 @@ func (r *Runner) launchOsqueryInstance() error {
// ordering issues.

// Start an extension manager for the extensions that osquery
// needs for config/log/etc
// needs for config/log/etc. It's called `kolide_grpc` for mostly historic reasons
if len(o.opts.extensionPlugins) > 0 {
if err := o.StartOsqueryExtensionManagerServer("kolide_initial", paths.extensionSocketPath, o.opts.extensionPlugins); err != nil {
if err := o.StartOsqueryExtensionManagerServer("kolide_grpc", paths.extensionSocketPath, o.opts.extensionPlugins); err != nil {
level.Info(o.logger).Log("msg", "Unable to create initial extension server. Stopping", "err", err)
return errors.Wrap(err, "could not create an extension server")
}
Expand Down

0 comments on commit 36ff746

Please sign in to comment.