summaryrefslogtreecommitdiff
path: root/system/xfsudo/doinst.sh
diff options
context:
space:
mode:
authorAaditya Bagga <aaditya_gnulinux@zoho.com>2015-05-10 14:34:13 +0530
committerWilly Sudiarto Raharjo <willysr@slackbuilds.org>2015-05-17 01:59:21 +0700
commit3f9eb644112bb08af8418a2c99c16b8876d29bcd (patch)
tree31d91922a7a9fb789faa36a271c4aa5458936faf /system/xfsudo/doinst.sh
parentf4f9ff58130d8bfe40c76b61cd13f9ca53d1fe01 (diff)
downloadslackbuilds-3f9eb644112bb08af8418a2c99c16b8876d29bcd.tar.gz
system/xfsudo: Updated for version 0.6.1.
Diffstat (limited to 'system/xfsudo/doinst.sh')
-rw-r--r--system/xfsudo/doinst.sh14
1 files changed, 0 insertions, 14 deletions
diff --git a/system/xfsudo/doinst.sh b/system/xfsudo/doinst.sh
deleted file mode 100644
index de85fd01cc..0000000000
--- a/system/xfsudo/doinst.sh
+++ /dev/null
@@ -1,14 +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...
-}
-
-config etc/xfsudo.conf.new