summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2021-07-01 21:37:23 +0200
committerChristian Poessinger <christian@poessinger.com>2021-07-01 21:38:06 +0200
commitc232fdc4c5464858818f1a83c35ed5d0b7fba15a (patch)
treebf2ed208d7535b7377caefe58533588c95ebcb5c /python
parent469e57398f3a9700fee210a94e57601f51466f43 (diff)
downloadvyos-1x-c232fdc4c5464858818f1a83c35ed5d0b7fba15a.tar.gz
vyos-1x-c232fdc4c5464858818f1a83c35ed5d0b7fba15a.zip
vyos.util: remove no longer needed copy_file helper method
The IPSec ceritifcate handling is now done by storing the CA key inside the running configuration.
Diffstat (limited to 'python')
-rw-r--r--python/vyos/util.py20
1 files changed, 0 insertions, 20 deletions
diff --git a/python/vyos/util.py b/python/vyos/util.py
index 65c9c2f45..586c79fff 100644
--- a/python/vyos/util.py
+++ b/python/vyos/util.py
@@ -221,26 +221,6 @@ 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)
- try:
- filename = os.path.basename(source)
- if not destination.endswith('/'):
- destination + '/'
- shutil.copyfile(source, destination + filename)
- except shutil.SameFileError:
- # We don't care if we copy the same file again
- pass
- chown(destination, user, group)
-
def read_json(fname, defaultonfailure=None):
"""
read and json decode the content of a file