blob: 084395bd9c8cee3779ff2fbcdd38ab49ab6d4b77 (
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
|
post_install() {
/bin/cat << ENDOFMESSAGE
>>
>> Please read the README in /usr/share/conkyforecast/
>> for pointers concerning configuration.
>>
>> As of 2.21, Conkyforecast provides support for
>> Weather Underground as well. Since Weather.com
>> have removed developer support [sic], you will
>> only be able to continue using their services
>> if you have your own login credentials. If that
>> is not the case, using the Weather Underground
>> script is recommended.
ENDOFMESSAGE
}
post_upgrade() {
post_install
}
op=$1
shift
$op $*
|