summaryrefslogtreecommitdiff
path: root/cloudinit/atomic_helper.py
diff options
context:
space:
mode:
authorScott Moser <smoser@brickies.net>2016-08-19 13:58:52 -0400
committerScott Moser <smoser@brickies.net>2016-08-22 12:58:33 -0400
commit685ffd49561bb92971f6b76e4690b86d7d6ecc0f (patch)
tree7f71a18d816476359435baeaa9334a95ffba1df1 /cloudinit/atomic_helper.py
parent1f8b37e0d80534d2055ee2e888f5a7e36c4b98b4 (diff)
downloadvyos-cloud-init-685ffd49561bb92971f6b76e4690b86d7d6ecc0f.tar.gz
vyos-cloud-init-685ffd49561bb92971f6b76e4690b86d7d6ecc0f.zip
Minor cleanups to atomic_helper and add unit tests.
Change atomic_helper.write_file to have same same signature as write_file. Add some simple unit tests for atomic_helper.
Diffstat (limited to 'cloudinit/atomic_helper.py')
-rw-r--r--cloudinit/atomic_helper.py20
1 files changed, 13 insertions, 7 deletions
diff --git a/cloudinit/atomic_helper.py b/cloudinit/atomic_helper.py
index 15319f71..a3cfd942 100644
--- a/cloudinit/atomic_helper.py
+++ b/cloudinit/atomic_helper.py
@@ -5,21 +5,27 @@ import json
import os
import tempfile
+_DEF_PERMS = 0o644
-def atomic_write_file(path, content, mode='w'):
+
+def write_file(filename, content, mode=_DEF_PERMS, omode="wb"):
+ # open filename in mode 'omode', write content, set permissions to 'mode'
tf = None
try:
- tf = tempfile.NamedTemporaryFile(dir=os.path.dirname(path),
- delete=False, mode=mode)
+ tf = tempfile.NamedTemporaryFile(dir=os.path.dirname(filename),
+ delete=False, mode=omode)
tf.write(content)
tf.close()
- os.rename(tf.name, path)
+ os.chmod(tf.name, mode)
+ os.rename(tf.name, filename)
except Exception as e:
if tf is not None:
os.unlink(tf.name)
raise e
-def atomic_write_json(path, data):
- return atomic_write_file(path, json.dumps(data, indent=1,
- sort_keys=True) + "\n")
+def write_json(filename, data, mode=_DEF_PERMS):
+ # dump json representation of data to file filename.
+ return write_file(
+ filename, json.dumps(data, indent=1, sort_keys=True) + "\n",
+ omode="w", mode=mode)