Merge pull request #21 from UKHomeOffice/file_permissions

- changing the file permissions on the secrets
This commit is contained in:
Rohith 2016-07-05 18:17:16 +01:00 committed by GitHub
commit b67a1f0b2e
2 changed files with 2 additions and 2 deletions

View file

@ -165,5 +165,5 @@ func writeFile(filename string, content []byte) error {
}
glog.V(3).Infof("saving the file: %s", filename)
return ioutil.WriteFile(filename, content, 0660)
return ioutil.WriteFile(filename, content, 0664)
}

View file

@ -26,7 +26,7 @@ import (
const (
Prog = "vault-sidekick"
Version = "v0.1.0"
Version = "v0.1.1"
)
func main() {