Set debconf configuration for postfix
[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 # Latest change: Sun Dec 16 21:52:23 CET 2007 [mika]
8 ################################################################################
9
10 set -u
11 set -e
12
13 HOSTNAME=''
14 [ -r /etc/grml/grml-live.conf ]  && . /etc/grml/grml-live.conf
15 [ -r /etc/grml/grml-live.local ] && . /etc/grml/grml-live.local
16 [ -n "$HOSTNAME" ] || HOSTNAME=grml
17 echo "$HOSTNAME" > $target/etc/hostname
18
19 if [ -r $target/etc/postfix/main.cf ] ; then
20   sed -i "s/^mydestination = .*/mydestination = $HOSTNAME, localhost, localhost.localdomain/" $target/etc/postfix/main.cf
21   sed -i "s/^myhostname = .*/myhostname = $HOSTNAME/" $target/etc/postfix/main.cf
22   echo "postfix postfix/mailname     string $HOSTNAME" | $ROOTCMD debconf-set-selections
23   echo "postfix postfix/destinations string ${HOSTNAME}, localhost.grml.org, localhost" \
24   | $ROOTCMD debconf-set-selections
25 fi
26
27 ## END OF FILE #################################################################
28 # vim:ft=sh expandtab ai tw=80 tabstop=4 shiftwidth=3