X-Git-Url: http://git.grml.org/?a=blobdiff_plain;f=etc%2Fgrml%2Ffai%2Fconfig%2Fscripts%2FGRML%2F34-hosts;h=4e9c513f732f199fc78d124737b212f9543efc72;hb=848aacd341724969418da66ab72948a3d0bb42f2;hp=3d30bba4d7955ba5cb0322137f8d96c9e10b2290;hpb=cfd32a33aab0d28608bba9e34c65b2a1967be9b7;p=grml-live-grml.git diff --git a/etc/grml/fai/config/scripts/GRML/34-hosts b/etc/grml/fai/config/scripts/GRML/34-hosts index 3d30bba..4e9c513 100755 --- a/etc/grml/fai/config/scripts/GRML/34-hosts +++ b/etc/grml/fai/config/scripts/GRML/34-hosts @@ -1,4 +1,12 @@ #!/bin/sh +# Filename: /etc/grml/fai/config/scripts/GRML/34-hosts +# Purpose: configure /etc/hosts of live-system +# Authors: grml-team (grml.org), (c) Michael Prokop +# Bug-Reports: see http://grml.org/bugs/ +# License: This file is licensed under the GPL v2 or any later version. +# Latest change: Sun Sep 16 23:10:46 CEST 2007 [mika] +################################################################################ + set -u set -e @@ -6,16 +14,9 @@ HOSTNAME='' [ -r /etc/grml/grml-live.conf ] && . /etc/grml/grml-live.conf [ -n "$HOSTNAME" ] || HOSTNAME=grml -cat > "$target"/etc/hosts << EOF -127.0.0.1 $HOSTNAME localhost - -# The following lines are desirable for IPv6 capable hosts -# (added automatically by netbase upgrade) +if [ -r /etc/grml/fai/files/etc/hosts ] ; then + cp /etc/grml/fai/files/etc/hosts $target/etc/hosts +fi -::1 ip6-localhost ip6-loopback $HOSTNAME -fe00::0 ip6-localnet -ff00::0 ip6-mcastprefix -ff02::1 ip6-allnodes -ff02::2 ip6-allrouters -ff02::3 ip6-allhosts -EOF +## END OF FILE ################################################################# +# vim:ft=sh expandtab ai tw=80 tabstop=4 shiftwidth=3