summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2021-06-26 09:17:52 +0200
committerChristian Poessinger <christian@poessinger.com>2021-06-26 09:17:55 +0200
commit5303ec39f6f08ccf06f56ff6d5166fc572b2c735 (patch)
tree32a56b3339309972a2d91147b08b867712dd013c /python
parent8108ca69e7d877f2af37bfce8c05a6054ed32775 (diff)
downloadvyos-1x-5303ec39f6f08ccf06f56ff6d5166fc572b2c735.tar.gz
vyos-1x-5303ec39f6f08ccf06f56ff6d5166fc572b2c735.zip
vyos.util: add new helper copy_file()
Copy a file from A -> B but also support adjusting Bs file permissions and creation of Bs base directory if required.
Diffstat (limited to 'python')
-rw-r--r--python/vyos/util.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/python/vyos/util.py b/python/vyos/util.py
index 7fea6cdc6..c318d58de 100644
--- a/python/vyos/util.py
+++ b/python/vyos/util.py
@@ -221,6 +221,19 @@ def write_file(fname, data, defaultonfailure=None, user=None, group=None):
return defaultonfailure
raise e
+def copy_file(source, destination, mkdstdir=False, user=None, group=None):
+ """
+ Copy file from source to destination. Can optionally create the destination
+ dir if it does not exist. Can optionally change the dir and file ownership.
+ """
+ import shutil
+ if mkdstdir:
+ dirname = os.path.dirname(destination)
+ if not os.path.isdir(dirname):
+ makedir(dirname, user, group)
+
+ shutil.copyfile(source, destination)
+ chown(destination, user, group)
def read_json(fname, defaultonfailure=None):
"""