Merge pull request #1692 from edupals/copy_link_resolvconf

[networkcfg] copy resolvconf as link
main
Adriaan de Groot 4 years ago committed by GitHub
commit ce5b5c6734
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -59,7 +59,7 @@ def run():
continue
try:
shutil.copy(source_network, target_network)
shutil.copy(source_network, target_network, follow_symlinks=False)
except FileNotFoundError:
libcalamares.utils.debug(
"Can't copy network configuration files in "
@ -80,7 +80,7 @@ def run():
)
try:
shutil.copy(source_resolv, target_resolv)
shutil.copy(source_resolv, target_resolv, follow_symlinks=False)
except Exception as err:
libcalamares.utils.debug(
"Can't copy resolv.conf from {}: {}".format(source_resolv, err)

Loading…
Cancel
Save