summaryrefslogtreecommitdiffstats
path: root/libraries/libvirt/doinst.sh
blob: a906638af4dd90fb51b6f38f715e5fdd24500538 (plain)
#!/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/libvirt/libvirtd.conf.new
config etc/libvirt/qemu.conf.new
config etc/libvirt/qemu/networks/default.xml.new
config etc/logrotate.d/libvirtd.new
config etc/sasl2/libvirt.conf.new