X-Git-Url: https://git.grml.org/?a=blobdiff_plain;f=etc%2Fgrml%2Ffai%2Fconfig%2Fscripts%2FGRML%2F34-hosts;h=4e9c513f732f199fc78d124737b212f9543efc72;hb=46e327ee238f7a1b11ec7c6895a0b4b87be9fbbe;hp=63b1409ecff183dc9b6fb21284ee215398887fd3;hpb=229a51dfda4d619c47fb4b0ff94d4d952f61e62a;p=grml-live.git diff --git a/etc/grml/fai/config/scripts/GRML/34-hosts b/etc/grml/fai/config/scripts/GRML/34-hosts index 63b1409..4e9c513 100755 --- a/etc/grml/fai/config/scripts/GRML/34-hosts +++ b/etc/grml/fai/config/scripts/GRML/34-hosts @@ -1,17 +1,22 @@ #!/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 -cat > "$target"/etc/hosts << EOF -127.0.0.1 grml localhost +HOSTNAME='' +[ -r /etc/grml/grml-live.conf ] && . /etc/grml/grml-live.conf +[ -n "$HOSTNAME" ] || HOSTNAME=grml -# 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 grml -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