mirror of
https://github.com/parchlinux/calamares.git
synced 2025-02-24 19:05:46 -05:00
copy resolvconf as link
This commit is contained in:
parent
5241e25ae8
commit
a888156deb
1 changed files with 2 additions and 2 deletions
|
@ -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…
Add table
Reference in a new issue