Documentation
¶
Index ¶
Constants ¶
View Source
const ( Version string = "3007.1" // renovate: datasource=github-releases depName=saltstack/salt BinaryURL string = `https://repo.saltproject.io/salt/singlebin/{{ .Version }}-1/salt-{{ .Version }}-1-linux-{{ .OS.Architecture }}.tar.gz` HashURL string = `https://repo.saltproject.io/salt/singlebin/{{ .Version }}-1/salt-{{ .Version }}-1_SHA512` SigURL string = `https://repo.saltproject.io/salt/singlebin/{{ .Version }}-1/salt-{{ .Version }}-1_SHA512.asc` RepoKeyURL string = "https://packages.broadcom.com/artifactory/api/security/keypair/SaltProjectKey/public" RepoKeyFile string = "/etc/apt/keyrings/salt-archive-keyring-2023.pgp" APTRepo string = "" /* 162-byte string literal not displayed */ )
View Source
const PublicKey string = `` /* 1769-byte string literal not displayed */
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type LocalResults ¶
type LocalResults struct {
Local Results `yaml:"local"`
}
func ParseLocalResults ¶
func ParseLocalResults(contents []byte) (res *LocalResults, err error)
type LocalResultsErrors ¶
type LocalResultsErrors struct {
Local []string `yaml:"local"`
}
type Result ¶
type Result struct {
ID string `yaml:"__id__"`
RunNumber int `yaml:"__run_num__"`
SLS string `yaml:"__sls__"`
Changes map[interface{}]interface{} `yaml:"changes"`
Comment string `yaml:"comment"`
Duration float64 `yaml:"duration"`
Name string `yaml:"name"`
Result bool `yaml:"result"`
StartTime string `yaml:"start_time"`
Warnings []string `yaml:"warnings"`
}
Click to show internal directories.
Click to hide internal directories.