github.com/bshelton229/agent@v3.5.4+incompatible/agent/agent_configuration.go (about)

     1  package agent
     2  
     3  type AgentConfiguration struct {
     4  	ConfigPath                string
     5  	BootstrapScript           string
     6  	BuildPath                 string
     7  	HooksPath                 string
     8  	PluginsPath               string
     9  	GitCloneFlags             string
    10  	GitCleanFlags             string
    11  	GitSubmodules             bool
    12  	SSHKeyscan                bool
    13  	CommandEval               bool
    14  	PluginsEnabled            bool
    15  	PluginValidation          bool
    16  	LocalHooksEnabled         bool
    17  	RunInPty                  bool
    18  	TimestampLines            bool
    19  	DisconnectAfterJob        bool
    20  	DisconnectAfterJobTimeout int
    21  	Shell                     string
    22  }