merged grml-quickconfig nonblocking branch
[grml-scripts.git] / usr_sbin / grml-postfix
1 #!/bin/sh
2 # Filename:      grml-postfix
3 # Purpose:       wrapper script to configure postfix
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.
7 # Latest change: Thu Apr 27 18:26:46 CEST 2006 [mika]
8 ################################################################################
9
10 PATH="/bin:/usr/bin:/sbin:/usr/sbin"
11 LANG=C
12 LC_ALL=C
13
14 if [ $UID != 0 ] ; then
15    echo Error: become root before starting $0 >& 2
16    exit 100
17 fi
18
19 dpkg-reconfigure postfix
20
21 ## END OF FILE #################################################################