chore(constants): remove and move constant paths

- Remove unused paths
- Move paths to inline constants if used only once
This commit is contained in:
Quentin McGaw
2022-01-29 15:34:59 +00:00
parent 5603e25542
commit c73369e11c
8 changed files with 22 additions and 33 deletions

View File

@@ -30,7 +30,7 @@ func start(ctx context.Context, starter command.Starter, version string, flags [
return nil, nil, nil, fmt.Errorf("%w: %s", ErrVersionUnknown, version)
}
args := []string{"--config", constants.OpenVPNConf}
args := []string{"--config", configPath}
args = append(args, flags...)
cmd := exec.CommandContext(ctx, bin, args...)
cmd.SysProcAttr = &syscall.SysProcAttr{Setpgid: true}