From 34191b6d6ef0dfe41b958ff5502d60c2e7aea603 Mon Sep 17 00:00:00 2001 From: Brian Waldon Date: Wed, 12 Mar 2014 17:50:38 -0700 Subject: [PATCH] fix(workspace): Create workspace dir with permissions 0755 --- cloudinit/workspace.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cloudinit/workspace.go b/cloudinit/workspace.go index c63d8c0..29e8df0 100644 --- a/cloudinit/workspace.go +++ b/cloudinit/workspace.go @@ -15,7 +15,7 @@ func PrepWorkspace(workspace string) error { return fmt.Errorf("%s is not a directory", workspace) } } else { - err = os.MkdirAll(workspace, 0644) + err = os.MkdirAll(workspace, 0755) if err != nil { return err } @@ -29,7 +29,7 @@ func PrepWorkspace(workspace string) error { return fmt.Errorf("%s is not a directory", scripts) } } else { - err = os.Mkdir(scripts, 0644) + err = os.Mkdir(scripts, 0755) if err != nil { return err }