summarylogtreecommitdiffstats
path: root/readme.install
blob: 3842eeec21628a4d0a074fc6f383c7c0b1444201 (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
36
37
38
39
40
41
42
post_install() {
	echo '--------------------------------------------------------------------------'
	echo ' See the manpage for usage and setup: man modprobed-db'
	echo '--------------------------------------------------------------------------'
}

post_remove() {
	echo '-----------------------------------------------------------------------'
	echo ' Remember to remove the entry in your crontab if you made one!'
	echo '-----------------------------------------------------------------------'
}

# $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
}