From: Michael Prokop Date: Sun, 16 Dec 2007 23:51:23 +0000 (+0100) Subject: Set debconf configuration for postfix X-Git-Tag: 0.0.14~27 X-Git-Url: https://git.grml.org/?p=grml-live.git;a=commitdiff_plain;h=b4621ca3d7831fbdafb6e4b4fd03f129a45d0771 Set debconf configuration for postfix --- diff --git a/debian/changelog b/debian/changelog index 0c5106a..14a8c4e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +grml-live (0.0.14) unstable; urgency=low + + * Set debconf configuration for postfix via + /etc/grml/fai/config/scripts/GRMLBASE/05-hostname + + -- Michael Prokop Mon, 17 Dec 2007 00:51:05 +0100 + grml-live (0.0.13) unstable; urgency=low * New option '-b' for "build-only". diff --git a/etc/grml/fai/config/scripts/GRMLBASE/05-hostname b/etc/grml/fai/config/scripts/GRMLBASE/05-hostname index d286920..05afd85 100755 --- a/etc/grml/fai/config/scripts/GRMLBASE/05-hostname +++ b/etc/grml/fai/config/scripts/GRMLBASE/05-hostname @@ -19,6 +19,9 @@ echo "$HOSTNAME" > $target/etc/hostname if [ -r $target/etc/postfix/main.cf ] ; then sed -i "s/^mydestination = .*/mydestination = $HOSTNAME, localhost, localhost.localdomain/" $target/etc/postfix/main.cf sed -i "s/^myhostname = .*/myhostname = $HOSTNAME/" $target/etc/postfix/main.cf + echo "postfix postfix/mailname string $HOSTNAME" | $ROOTCMD debconf-set-selections + echo "postfix postfix/destinations string ${HOSTNAME}, localhost.grml.org, localhost" \ + | $ROOTCMD debconf-set-selections fi ## END OF FILE #################################################################