X-Git-Url: http://git.grml.org/?p=grml-live.git;a=blobdiff_plain;f=etc%2Fgrml%2Ffai%2Fconfig%2Fscripts%2FGRML%2F34-hosts;h=4e9c513f732f199fc78d124737b212f9543efc72;hp=d3ae45b69d6061625255a296c222ead342cc6ea0;hb=46e327ee238f7a1b11ec7c6895a0b4b87be9fbbe;hpb=b20d1f05dab564fbab2bea7118b3201421d411e7 diff --git a/etc/grml/fai/config/scripts/GRML/34-hosts b/etc/grml/fai/config/scripts/GRML/34-hosts index d3ae45b..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,17 +14,9 @@ HOSTNAME='' [ -r /etc/grml/grml-live.conf ] && . /etc/grml/grml-live.conf [ -n "$HOSTNAME" ] || HOSTNAME=grml -# FIXME: use /etc/grml/fai/... as base -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