Remove all bashisms; drop grml-muttng
[grml-scripts-core.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 ################################################################################
8
9 PATH="/bin:/usr/bin:/sbin:/usr/sbin"
10 LANG=C
11 LC_ALL=C
12
13 if [ "$(id -ru)" != "0" ] ; then
14    echo Error: become root before starting $0 >& 2
15    exit 100
16 fi
17
18 dpkg-reconfigure postfix
19
20 ## END OF FILE #################################################################