Drop Latest change lines, add initial support for Debian/squeeze
[grml-live.git] / etc / grml / fai / config / scripts / GRMLBASE / 05-hostname
1 #!/bin/sh
2 # Filename:      /etc/grml/fai/config/scripts/GRMLBASE/05-hostname
3 # Purpose:       set hostname 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 [ -r /etc/grml/grml-live.local ] && . /etc/grml/grml-live.local
15 [ -n "$HOSTNAME" ] || HOSTNAME=grml
16 echo "$HOSTNAME" > $target/etc/hostname
17
18 if [ -r $target/etc/postfix/main.cf ] ; then
19   sed -i "s/^mydestination = .*/mydestination = $HOSTNAME, localhost, localhost.localdomain/" $target/etc/postfix/main.cf
20   sed -i "s/^myhostname = .*/myhostname = $HOSTNAME/" $target/etc/postfix/main.cf
21   echo "postfix postfix/mailname     string $HOSTNAME" | $ROOTCMD debconf-set-selections
22   echo "postfix postfix/destinations string ${HOSTNAME}, localhost.grml.org, localhost" \
23   | $ROOTCMD debconf-set-selections
24 fi
25
26 ## END OF FILE #################################################################
27 # vim:ft=sh expandtab ai tw=80 tabstop=4 shiftwidth=3