diff options
Diffstat (limited to 'helpers/lh_chroot_resolv')
-rwxr-xr-x | helpers/lh_chroot_resolv | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/helpers/lh_chroot_resolv b/helpers/lh_chroot_resolv index bc53c6847..36a1a1bb6 100755 --- a/helpers/lh_chroot_resolv +++ b/helpers/lh_chroot_resolv @@ -49,9 +49,9 @@ case "${1}" in # Creating lock file Create_lockfile .lock - if [ -f chroot/etc/resolv.conf ] + if [ -e chroot/etc/resolv.conf ] then - # Save resolv file + # Save resolv file or symlink mv chroot/etc/resolv.conf chroot/etc/resolv.conf.orig fi @@ -74,9 +74,9 @@ case "${1}" in # Creating lock file Create_lockfile .lock - if [ -f chroot/etc/resolv.conf.orig ] + if [ -e chroot/etc/resolv.conf.orig ] then - # Restoring resolv file + # Restoring resolv file or symlink mv chroot/etc/resolv.conf.orig chroot/etc/resolv.conf else # Truncating resolv file |