github.com/ilhicas/nomad@v0.11.8/command/agent/agent_oss.go (about)

     1  // +build !ent
     2  
     3  package agent
     4  
     5  import (
     6  	hclog "github.com/hashicorp/go-hclog"
     7  	"github.com/hashicorp/nomad/nomad/structs/config"
     8  )
     9  
    10  func (a *Agent) setupEnterpriseAgent(log hclog.Logger) error {
    11  	// configure eventer
    12  	a.auditor = &noOpAuditor{}
    13  
    14  	return nil
    15  }
    16  
    17  func (a *Agent) entReloadEventer(cfg *config.AuditConfig) error {
    18  	return nil
    19  }