summaryrefslogtreecommitdiffstats
path: root/system/mlterm/doinst.sh
diff options
context:
space:
mode:
author Robby Workman2011-03-14 23:20:15 +0100
committer Robby Workman2011-03-14 23:20:15 +0100
commitece7295200485bd7748880dd7aeb30e6f3f6f3cd (patch)
treeea2ccfb95b4250c3095b39712800b288d35344bc /system/mlterm/doinst.sh
parentcd089a04d78c959584d7a6720d84ca55ad614c0c (diff)
downloadslackbuilds-ece7295200485bd7748880dd7aeb30e6f3f6f3cd.tar.gz
system/mlterm: Removed (unmaintained)
Reference: http://lists.slackbuilds.org/pipermail/slackbuilds-users/2010-November/006660.html Signed-off-by: Heinz Wiesinger <pprkut@slackbuilds.org> Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'system/mlterm/doinst.sh')
-rw-r--r--system/mlterm/doinst.sh13
1 files changed, 0 insertions, 13 deletions
diff --git a/system/mlterm/doinst.sh b/system/mlterm/doinst.sh
deleted file mode 100644
index 19a6ff6ac8..0000000000
--- a/system/mlterm/doinst.sh
+++ /dev/null
@@ -1,13 +0,0 @@
-config() {
- NEW="$1"
- OLD="$(dirname $NEW)/$(basename $NEW .new)"
- # If there's no config file by that name, mv it over:
- if [ ! -r $OLD ]; then
- mv $NEW $OLD
- elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then
- # toss the redundant copy
- rm $NEW
- fi
- # Otherwise, we leave the .new copy for the admin to consider...
-}
-