cpupower.install 262 B

1234567891011121314
  1. #!/bin/sh
  2. # arg 1: the new package version
  3. # arg 2: the old package version
  4. post_upgrade() {
  5. if [ "$(vercmp $2 3.7-4)" -le 0 ]; then
  6. cat << EOF
  7. ===> cpupower startup config file moved to /etc/default/cpupower
  8. EOF
  9. fi
  10. }
  11. # vim:set ts=2 sw=2 ft=sh et: