aboutsummaryrefslogtreecommitdiff
path: root/system/fuse/doinst.sh
diff options
context:
space:
mode:
authorHeinz Wiesinger <pprkut@slackbuilds.org>2010-05-11 20:31:01 +0200
committerHeinz Wiesinger <pprkut@slackbuilds.org>2010-05-11 20:31:01 +0200
commita9075ab42b4063ee720ee3be203bf642a6dad556 (patch)
tree40231eecbc277d58bb48d4231f7853de792c643e /system/fuse/doinst.sh
parente0a9f99c7adbe54925233c3f8de42b8988db507d (diff)
system/fuse: Removed from 12.1 repository
Diffstat (limited to 'system/fuse/doinst.sh')
-rw-r--r--system/fuse/doinst.sh24
1 files changed, 0 insertions, 24 deletions
diff --git a/system/fuse/doinst.sh b/system/fuse/doinst.sh
deleted file mode 100644
index cbb9562449bbc..0000000000000
--- a/system/fuse/doinst.sh
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/bin/sh
-
-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...
-}
-
-# Keep same perms on rc.fuse.new:
-if [ -e etc/rc.d/rc.fuse ]; then
- cp -a etc/rc.d/rc.fuse etc/rc.d/rc.fuse.new.incoming
- cat etc/rc.d/rc.fuse.new > etc/rc.d/rc.fuse.new.incoming
- mv etc/rc.d/rc.fuse.new.incoming etc/rc.d/rc.fuse.new
-fi
-
-config etc/rc.d/rc.fuse.new
-