strip() vault password file

This commit is contained in:
Jakub Paweł Głazik 2014-03-25 16:10:33 +01:00
parent 08ba18668b
commit 6b53ac8a9a

View file

@ -128,7 +128,7 @@ class Cli(object):
this_path = os.path.expanduser(options.vault_password_file)
try:
f = open(this_path, "rb")
tmp_vault_pass=f.read()
tmp_vault_pass=f.read().strip()
f.close()
except (OSError, IOError), e:
raise errors.AnsibleError("Could not read %s: %s" % (this_path, e))