diff options
author | Márcio Alexandre Silva Delgado <coadde@lavabit.com> | 2013-01-27 11:49:47 -0200 |
---|---|---|
committer | Márcio Alexandre Silva Delgado <coadde@lavabit.com> | 2013-01-27 11:49:47 -0200 |
commit | 387a6ac962ce6a21ccb27fa2cc494ea6e3d2b8cd (patch) | |
tree | e0ac407d773af321071153aa5c0138235cc1f25e /libre/linux-libre-tools/cpupower.install | |
parent | b6fba38485fbddb58ea021c9b532e7fea84404b1 (diff) | |
parent | a98a7931923d702e17d7db3de4dd40cdcfb26885 (diff) |
Merge ssh://parabolagnulinux.org:1863/srv/git/abslibre
Diffstat (limited to 'libre/linux-libre-tools/cpupower.install')
-rw-r--r-- | libre/linux-libre-tools/cpupower.install | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/libre/linux-libre-tools/cpupower.install b/libre/linux-libre-tools/cpupower.install new file mode 100644 index 000000000..10e07ae52 --- /dev/null +++ b/libre/linux-libre-tools/cpupower.install @@ -0,0 +1,13 @@ +#!/bin/sh + +# arg 1: the new package version +# arg 2: the old package version +post_upgrade() { + if [ "$(vercmp $2 3.7-4)" -le 0 ]; then + cat << EOF +===> cpupower startup config file moved to /etc/default/cpupower +EOF + fi +} + +# vim:set ts=2 sw=2 ft=sh et: |