Your IP : 216.73.216.48


Current Path : /hdd/hdd11/log/scripts/
Upload File :
Current File : /hdd/hdd11/log/scripts/lm_sensors-3.4.0-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...
}
config etc/sensors3.conf.new
( cd usr/man/man5 ; rm -rf sensors3.conf.5.gz )
( cd usr/man/man5 ; ln -sf sensors.conf.5.gz sensors3.conf.5.gz )
( cd usr/lib64 ; rm -rf libsensors.so.4 )
( cd usr/lib64 ; ln -sf libsensors.so.4.4.0 libsensors.so.4 )
( cd usr/lib64 ; rm -rf libsensors.so )
( cd usr/lib64 ; ln -sf libsensors.so.4 libsensors.so )