blob: 843727f2e89cdd040fcd9a1d709970e40767bf48 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
show_message () {
cat <<-EOF
------
The CGI program has been installed to /usr/lib/kcaldav, and the
web root files and example configuration to /usr/share/kcaldav.
These need to be copied to suitable locations, possibly in a chroot
or separate container, and the HTTP server configured accordingly.
------
EOF
}
post_install() {
show_message
}
post_upgrade() {
show_message
}
|