Split grml-scripts into grml-scripts and grml-scripts-core
[grml-scripts-core.git] / usr_sbin / grml-postfix
diff --git a/usr_sbin/grml-postfix b/usr_sbin/grml-postfix
deleted file mode 100755 (executable)
index f93e736..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/bin/sh
-# Filename:      grml-postfix
-# Purpose:       wrapper script to configure postfix
-# Authors:       grml-team (grml.org), (c) Michael Prokop <mika@grml.org>
-# Bug-Reports:   see http://grml.org/bugs/
-# License:       This file is licensed under the GPL v2.
-################################################################################
-
-PATH="/bin:/usr/bin:/sbin:/usr/sbin"
-LANG=C
-LC_ALL=C
-
-if [ "$(id -ru)" != "0" ] ; then
-   echo Error: become root before starting $0 >& 2
-   exit 100
-fi
-
-dpkg-reconfigure postfix
-
-## END OF FILE #################################################################