diff options
author | Ted Trask <ttrask01@yahoo.com> | 2010-01-27 14:24:30 +0000 |
---|---|---|
committer | Ted Trask <ttrask01@yahoo.com> | 2010-01-27 14:24:30 +0000 |
commit | db5843ca6f02033ab0b2b7cf46ee8f6d5ced92fc (patch) | |
tree | 5f06a788b9652b54853e01d3da0f11b2e36c388d /main/acf-core/acf-core.post-upgrade | |
parent | 99c131bece30316203e857ba0eaef64e99b03a9d (diff) | |
download | aports-db5843ca6f02033ab0b2b7cf46ee8f6d5ced92fc.tar.bz2 aports-db5843ca6f02033ab0b2b7cf46ee8f6d5ced92fc.tar.xz |
main/acf-core: Added post-upgrade to use new acf.conf.
Diffstat (limited to 'main/acf-core/acf-core.post-upgrade')
-rw-r--r-- | main/acf-core/acf-core.post-upgrade | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/main/acf-core/acf-core.post-upgrade b/main/acf-core/acf-core.post-upgrade new file mode 100644 index 0000000000..1a54c0451e --- /dev/null +++ b/main/acf-core/acf-core.post-upgrade @@ -0,0 +1,16 @@ +#!/bin/sh + +new=$1 +old=$2 + +# if current is not older than 0.10.1 we exit. +if ! [ "$(apk version -t $old 0.10.1)" = "<" ]; then + exit 0 +fi + +if [ -e /etc/acf/acf.conf.apk-new ]; then + mv /etc/acf/acf.conf /etc/acf/acf.conf.apk-old + mv /etc/acf/acf.conf.apk-new /etc/acf/acf.conf +fi + +exit 0 |