Your IP : 216.73.216.48


Current Path : /var/log/scripts/
Upload File :
Current File : //var/log/scripts/slocate-3.1-x86_64-4

#!/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/updatedb.conf.new

if ! grep ^slocate: etc/group 1> /dev/null 2> /dev/null ; then
  echo "slocate::21:" >> etc/group
  chown root.slocate usr/bin/slocate
  chown root.slocate var/lib/slocate
fi
( cd usr/bin ; rm -rf locate )
( cd usr/bin ; ln -sf slocate locate )
( cd usr/bin ; rm -rf updatedb )
( cd usr/bin ; ln -sf slocate updatedb )
( cd usr/man/man1 ; rm -rf locate.1.gz )
( cd usr/man/man1 ; ln -sf slocate.1.gz locate.1.gz )