Drop grml-mutt, grml-slrn + accordingly grml-config-user
[grml-scripts.git] / usr_bin / grml-config-user
diff --git a/usr_bin/grml-config-user b/usr_bin/grml-config-user
deleted file mode 100755 (executable)
index 6882a31..0000000
+++ /dev/null
@@ -1,45 +0,0 @@
-#!/bin/sh
-# Filename:      grml-config-user
-# Purpose:       interface for configuring userland software on grml system
-# Authors:       grml-team (grml.org), (c) Nico Golde <nico@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=${PATH:-'/bin/:/sbin/:/usr/bin:/usr/sbin'}
-
-# set up some variables
-DIALOG=$(which dialog)
-PN=$(basename $0)
-
-allover() {
-MENU=$($DIALOG --stdout --clear --title "$PN" --menu \
-"Configure userland tools." 0 0 0 \
-"grml-mutt" "Configure the mutt MUA" \
-"grml-slrn" "Configure the slrn newsreader" \
-"exit" "Exit this program")
-
-retval=$?
-
-case $retval in
-  0)
-        if [ "$MENU" = "grml-mutt" ]; then
-          exec grml-mutt
-        fi
-        if [ "$MENU" = "grml-slrn" ]; then
-          exec grml-slrn
-        fi
-        if [ "$MENU" = "exit" ]; then
-          exit
-        fi
-        ;;
-  1)
-        echo "Cancel pressed.";;
-  255)
-        echo "ESC pressed.";;
-esac
-}
-
-allover
-
-## END OF FILE #################################################################