doinst.sh 718 B

1234567891011121314151617181920212223242526272829
  1. config() {
  2. NEW="$1"
  3. OLD="$(dirname $NEW)/$(basename $NEW .new)"
  4. # If there's no config file by that name, mv it over:
  5. if [ ! -r $OLD ]; then
  6. mv $NEW $OLD
  7. elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then
  8. # toss the redundant copy
  9. rm $NEW
  10. fi
  11. # Otherwise, we leave the .new copy for the admin to consider...
  12. }
  13. preserve_perms() {
  14. NEW="$1"
  15. OLD="$(dirname $NEW)/$(basename $NEW .new)"
  16. if [ -e $OLD ]; then
  17. cp -a $OLD ${NEW}.incoming
  18. cat $NEW > ${NEW}.incoming
  19. mv ${NEW}.incoming $NEW
  20. fi
  21. config $NEW
  22. }
  23. preserve_perms etc/rc.d/rc.ices-cc.new
  24. config etc/ices-cc.conf.new
  25. config etc/modules/ices.py.new
  26. config etc/modules/ices.pm.new
  27. config etc/modules/ices.sh.new