repo.or.cz
/
aur-mirror.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
updated on Fri Jan 13 04:01:25 UTC 2012
[aur-mirror.git]
/
ashd
/
ashd.install
blob
02ebc1aafa10e0b6e3fad8258ddecfbcd3ac0892
1
## arg 1: the new package version
2
## arg 2: the old package version
3
pre_upgrade() {
4
if (( $(vercmp $2 0.7) == 0 )); then
5
cat << EOM
6
Configuration files are back in /etc/ashd/.
7
EOM
8
elif (( $(vercmp $2 0.7) < 0 )); then
9
cat << EOM
10
The /etc/conf.d/ashd.conf syntax has changed.
11
EOM
12
fi
13
}
14