cmd/containerboot: fix TS_STATE_DIR environment variable

It's supposed to set `--statedir` rather than `--state` file.

Fixes #6634.

Signed-off-by: Anton Tolchanov <anton@tailscale.com>
This commit is contained in:
Anton Tolchanov
2022-12-06 13:31:50 +00:00
committed by Dave Anderson
parent 7048024e04
commit 5ff946a9e6
2 changed files with 2 additions and 2 deletions

View File

@@ -275,7 +275,7 @@ func tailscaledArgs(cfg *settings) []string {
case cfg.InKubernetes && cfg.KubeSecret != "":
args = append(args, "--state=kube:"+cfg.KubeSecret, "--statedir=/tmp")
case cfg.StateDir != "":
args = append(args, "--state="+cfg.StateDir)
args = append(args, "--statedir="+cfg.StateDir)
default:
args = append(args, "--state=mem:", "--statedir=/tmp")
}