| Current Path : /hdd/hdd11/log/scripts/ |
| Current File : /hdd/hdd11/log/scripts/gamin-0.1.10-x86_64-5 |
#!/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...
}
config etc/gamin/gaminrc.new
( cd usr/lib64 ; rm -rf libfam.so.0 )
( cd usr/lib64 ; ln -sf libfam.so.0.0.0 libfam.so.0 )
( cd usr/lib64 ; rm -rf libgamin-1.so.0 )
( cd usr/lib64 ; ln -sf libgamin-1.so.0.1.10 libgamin-1.so.0 )
( cd usr/lib64 ; rm -rf libfam.so )
( cd usr/lib64 ; ln -sf libfam.so.0.0.0 libfam.so )
( cd usr/lib64 ; rm -rf libgamin-1.so )
( cd usr/lib64 ; ln -sf libgamin-1.so.0.1.10 libgamin-1.so )