fix type and add fixme

Signed-off-by: Nico Schottelius <nico@brief.schottelius.org>
remotes/origin/2.0
Nico Schottelius 13 years ago
parent e05c5e699c
commit 612fb4cb7b
  1. 2
      lib/cdist/exec/local.py
  2. 1
      lib/cdist/exec/remote.py

@ -61,7 +61,7 @@ class Local(object):
self.log = logging.getLogger(self.target_host)
# Setup file permissions using umask
os.umask(0o700)
os.umask(0o077)
def create_directories(self):
self.mkdir(self.out_path)

@ -108,6 +108,7 @@ class Remote(object):
# Always call umask before actual call to ensure proper file permissions
cmd.append("umask 077;")
# FIXME: replace this by -o SendEnv name -o SendEnv name ... to ssh?
# can't pass environment to remote side, so prepend command with
# variable declarations
if env:

Loading…
Cancel
Save