Merge pull request #69 from pieterlange/feature/flip-known-hosts-default

Flip the known_hosts enforcement to true so the git hosts actually get verified.
This commit is contained in:
Tim Hockin 2017-09-18 11:18:01 -07:00 committed by GitHub
commit 267a78bfd4
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ var flPassword = flag.String("password", envString("GIT_SYNC_PASSWORD", ""),
var flSSH = flag.Bool("ssh", envBool("GIT_SYNC_SSH", false),
"use SSH for git operations")
var flSSHKnownHosts = flag.Bool("ssh-known-hosts", envBool("GIT_KNOWN_HOSTS", false),
var flSSHKnownHosts = flag.Bool("ssh-known-hosts", envBool("GIT_KNOWN_HOSTS", true),
"enable SSH known_hosts verification")
var log = newLoggerOrDie()