From ff561a974149df972edc4e5094a736cee5e3ec3d Mon Sep 17 00:00:00 2001 From: steve Date: Thu, 15 Jun 2006 22:52:52 +0000 Subject: [PATCH] 2006-06-15 22:52:52 by steve Patch from Sven Hartge to avoid copying /etc/hosts - which is already setup in 50-setup-hostname. --- hooks/debian/60-copy-host-files | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hooks/debian/60-copy-host-files b/hooks/debian/60-copy-host-files index 0423eb4..21c9e8a 100755 --- a/hooks/debian/60-copy-host-files +++ b/hooks/debian/60-copy-host-files @@ -32,8 +32,8 @@ die "Prefix is missing /etc : $prefix" unless ( -d $prefix . "/etc" ); # # Copy some files literally. # -my @files = ( "/etc/hosts", - "/etc/resolv.conf", +my @files = ( + "/etc/resolv.conf", ); foreach my $file ( @files )