# arg 1:  the new package version
pre_install() {
  echo "ATTENTION UDEV:"
  echo "----------"
  echo "udev >=098 rules syntax has changed, please update your own rules."
  echo "udev >=099 Added persistent network and CD/DVD Symlink generator rules."
  echo "Please read the instructions carefully before reboot."
  echo "They are located in /etc/udev/readme-udev-arch.txt"
  echo "----------"
}

post_install() {
  sbin/migrate-udev `pwd`
}

# arg 1:  the new package version
# arg 2:  the old package version
pre_upgrade() {
  pre_install $1
}

post_upgrade() {
  /bin/true
}

# arg 1:  the old package version
pre_remove() {
  /bin/true
}

# arg 1:  the old package version
post_remove() {
  /bin/true
}

op=$1
shift
$op $*
