summaryrefslogtreecommitdiff
path: root/src/op_mode/image_installer.py
diff options
context:
space:
mode:
authorJohn Estabrook <jestabro@vyos.io>2023-12-31 20:45:58 -0600
committerJohn Estabrook <jestabro@vyos.io>2023-12-31 22:49:40 -0600
commit9f66b9ccfa25f56c209d90a0ad5ad779f3963bee (patch)
tree0d528b1d33419490154c5a193ad34832dda86965 /src/op_mode/image_installer.py
parent22d5b2bab254668dd0fe8c543fb1bd0edcbead18 (diff)
downloadvyos-1x-9f66b9ccfa25f56c209d90a0ad5ad779f3963bee.tar.gz
vyos-1x-9f66b9ccfa25f56c209d90a0ad5ad779f3963bee.zip
image-tools: T5883: preserve file owner in /config on add system update
Diffstat (limited to 'src/op_mode/image_installer.py')
-rwxr-xr-xsrc/op_mode/image_installer.py11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/op_mode/image_installer.py b/src/op_mode/image_installer.py
index 529b388c8..d418af355 100755
--- a/src/op_mode/image_installer.py
+++ b/src/op_mode/image_installer.py
@@ -257,6 +257,15 @@ def search_previous_installation(disks: list[str]) -> None:
disk.partition_umount(image_drive)
+def copy_preserve_owner(src: str, dst: str, *, follow_symlinks=True):
+ if not Path(src).is_file():
+ return
+ if Path(dst).is_dir():
+ dst = Path(dst).joinpath(Path(src).name)
+ st = Path(src).stat()
+ copy(src, dst, follow_symlinks=follow_symlinks)
+ chown(dst, user=st.st_uid)
+
def copy_previous_installation_data(target_dir: str) -> None:
if Path('/mnt/config').exists():
@@ -812,7 +821,7 @@ def add_image(image_path: str, vrf: str = None, username: str = '',
chown(target_config_dir, group='vyattacfg')
chmod_2775(target_config_dir)
copytree('/opt/vyatta/etc/config/', target_config_dir,
- dirs_exist_ok=True)
+ copy_function=copy_preserve_owner, dirs_exist_ok=True)
else:
Path(target_config_dir).mkdir(parents=True)
chown(target_config_dir, group='vyattacfg')