doinst.sh 719 B

1234567891011121314151617181920212223242526
  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. # Keep same perms on rc.dictd.new:
  14. if [ -e etc/rc.d/rc.dictd ]; then
  15. cp -a etc/rc.d/rc.dictd etc/rc.d/rc.dictd.new.incoming
  16. cat etc/rc.d/rc.dictd.new > etc/rc.d/rc.dictd.new.incoming
  17. mv etc/rc.d/rc.dictd.new.incoming etc/rc.d/rc.dictd.new
  18. fi
  19. config etc/rc.d/rc.dictd.new
  20. config etc/dictd/dict.conf.new
  21. config etc/dictd/dictd.conf.new
  22. config etc/dictd/db.list.new