Unifiy local config handling
[grml-live.git] / etc / grml / fai / config / scripts / GRMLBASE / 34-hosts
1 #!/bin/bash
2 # Filename:      ${GRML_FAI_CONFIG}/config/scripts/GRMLBASE/34-hosts
3 # Purpose:       configure /etc/hosts of live-system
4 # Authors:       grml-team (grml.org), (c) Michael Prokop <mika@grml.org>
5 # Bug-Reports:   see http://grml.org/bugs/
6 # License:       This file is licensed under the GPL v2 or any later version.
7 ################################################################################
8
9 set -u
10 set -e
11
12 HOSTNAME=''
13 [ -r /etc/grml/grml-live.conf ]  && . /etc/grml/grml-live.conf
14 [ -n "$GRML_LIVE_LOCAL_CONFIG" ] && . "$GRML_LIVE_LOCAL_CONFIG"
15 [ -n "$HOSTNAME" ] || HOSTNAME=grml
16
17 fcopy -v /etc/hosts
18
19 # replace $HOSTNAME with the real hostname:
20 sed -i "s/\$HOSTNAME/$HOSTNAME/" $target/etc/hosts
21
22 ## END OF FILE #################################################################
23 # vim:ft=sh expandtab ai tw=80 tabstop=4 shiftwidth=2