From fcd608cd6d9585daf5542462eb964b8ad5e91ba8 Mon Sep 17 00:00:00 2001 From: Rohith Date: Tue, 5 Jul 2016 18:16:43 +0100 Subject: [PATCH] - changing the file permissions on the secrets --- formats.go | 2 +- main.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/formats.go b/formats.go index a45e120..1689e03 100644 --- a/formats.go +++ b/formats.go @@ -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) } diff --git a/main.go b/main.go index be8868b..c4b97d8 100644 --- a/main.go +++ b/main.go @@ -26,7 +26,7 @@ import ( const ( Prog = "vault-sidekick" - Version = "v0.1.0" + Version = "v0.1.1" ) func main() {