mirror of https://github.com/k3s-io/k3s
Fix bug when using tailscale config by file
Signed-off-by: Manuel Buil <mbuil@suse.com>pull/10212/head
parent
4e53a32306
commit
86ad488227
|
@ -90,16 +90,16 @@ func Run(ctx *cli.Context) error {
|
|||
contextCtx := signals.SetupSignalContext()
|
||||
|
||||
go cmds.WriteCoverage(contextCtx)
|
||||
if cmds.AgentConfig.VPNAuthFile != "" {
|
||||
cmds.AgentConfig.VPNAuth, err = util.ReadFile(cmds.AgentConfig.VPNAuthFile)
|
||||
if cfg.VPNAuthFile != "" {
|
||||
cfg.VPNAuth, err = util.ReadFile(cfg.VPNAuthFile)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
}
|
||||
|
||||
// Starts the VPN in the agent if config was set up
|
||||
if cmds.AgentConfig.VPNAuth != "" {
|
||||
err := vpn.StartVPN(cmds.AgentConfig.VPNAuth)
|
||||
if cfg.VPNAuth != "" {
|
||||
err := vpn.StartVPN(cfg.VPNAuth)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue