Your IP : 216.73.216.48


Current Path : /hdd/hdd11/log/scripts/
Upload File :
Current File : /hdd/hdd11/log/scripts/fuse-2.9.5-x86_64-1

#!/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

( cd lib64 ; rm -rf libulockmgr.so )
( cd lib64 ; ln -sf libulockmgr.so.1.0.1 libulockmgr.so )
( cd lib64 ; rm -rf libfuse.so )
( cd lib64 ; ln -sf libfuse.so.2.9.4 libfuse.so )
( cd lib64 ; rm -rf libfuse.so.2 )
( cd lib64 ; ln -sf libfuse.so.2.9.4 libfuse.so.2 )
( cd lib64 ; rm -rf libulockmgr.so.1 )
( cd lib64 ; ln -sf libulockmgr.so.1.0.1 libulockmgr.so.1 )