mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
allow to set an orbit destination via env variable (#14658)
for #14657. Seems like we're not documenting any of the orbit flags.
This commit is contained in:
parent
cfd0260b36
commit
6c42287914
2 changed files with 4 additions and 2 deletions
1
orbit/changes/14657-log-flag
Normal file
1
orbit/changes/14657-log-flag
Normal file
|
|
@ -0,0 +1 @@
|
|||
* Allow to configure the orbit `--log-file` flag via an environment variable `ORBIT_LOG_FILE`.
|
||||
|
|
@ -144,8 +144,9 @@ func main() {
|
|||
Usage: "Get Orbit version",
|
||||
},
|
||||
&cli.StringFlag{
|
||||
Name: "log-file",
|
||||
Usage: "Log to this file path in addition to stderr",
|
||||
Name: "log-file",
|
||||
Usage: "Log to this file path in addition to stderr",
|
||||
EnvVars: []string{"ORBIT_LOG_FILE"},
|
||||
},
|
||||
&cli.BoolFlag{
|
||||
Name: "fleet-desktop",
|
||||
|
|
|
|||
Loading…
Reference in a new issue