blob: 1913419012ac2d0ffe2e1b8808a26ddc55ff8d5b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# $1: The new package version
# $2: The old package version
post_upgrade() {
if [ $(vercmp $2 1.8) -lt 0 ]; then
echo '----------------------------------------------------------------------'
echo ' WARNING:'
echo
echo 'You MUST modify ANY and ALL calls to /usr/bin/modprobed-db to'
echo 'include the "store" switch.'
echo 'For example, in the root user crontab, /etc/rc.local.shutdown, etc.'
echo
echo 'In other words: --> /usr/bin/modprobed-db store <--'
echo
echo 'The default action in version 2.0 is to display the help file!'
echo 'Inaction on your part here will cause NO action to be taken by'
echo 'the software!'
echo
echo 'You have been warned!'
echo '----------------------------------------------------------------------'
fi
if [ $(vercmp $2 2.23) -lt 0 ]; then
echo '--> A minor name change has occurred which requires your attention.'
echo '--> Underscores have been replaced with hyphens:'
echo '--> modprobed_db --> modprobed-db'
echo '-->'
echo '--> Make sure you update your crontab accordingly.'
fi
if [ $(vercmp $2 2.33) -lt 0 ]; then
echo '--> The system service and timer have been deprecated in favor of user flavors.'
echo '--> See the manpage of modprobed for details.'
fi
}
|