From c232fdc4c5464858818f1a83c35ed5d0b7fba15a Mon Sep 17 00:00:00 2001 From: Christian Poessinger Date: Thu, 1 Jul 2021 21:37:23 +0200 Subject: 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. --- python/vyos/util.py | 20 -------------------- 1 file changed, 20 deletions(-) (limited to 'python') 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 -- cgit v1.2.3