blob: d6edc0e4c8b47cdf9d89d27031aa9a4eb77dbf84 (
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
|
# arg 1: the new package version
post_install() {
cat << EOM
If you want to use ddclient with dhcpcd, cron or pppd,
see /etc/ddclient/samples for further instructions.
If you have ddclient in the DAEMONS array of /etc/rc.conf:
- Change /etc/conf.d/ddclient according to your needs.
- This setting OVERRIDES any setting in
/etc/ddclient/ddclient.conf
EOM
}
# arg 1: the new package version
# arg 2: the old package version
post_upgrade() {
if [ -f /etc/ddclient/ddclient.cache ]; then
echo -n "Moving ddclient.cache from /etc/ddclient/ to /var/cache/ddclient/."
mv /etc/ddclient/ddclient.cache /var/cache/ddclient/
echo " (done)"
fi
if [ "$(vercmp $2 3.7.3-2)" -lt 0 ]; then
cat << EOM
If you have ddclient in the DAEMONS array of /etc/rc.conf:
- Change /etc/conf.d/ddclient according to your needs.
- This setting OVERRIDES any setting in
/etc/ddclient/ddclient.conf
EOM
fi
}
op=$1
shift
$op $*
|