summarylogtreecommitdiffstats
path: root/offpunk.install
blob: 80b302635f0b7fa242f8f979f1217b3dd0d04d46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# shellcheck shell=bash
# -*- sh -*-

post_install() {
  cat <<__EOT__
» The opnk command has been renamed to openk in 3.0. This is still
» available as a symlink, but it will be removed in a later
» release.
»
» If you have opted to install the Full-Text RSS Site Config,
» add the following line to your ~/.config/offpunk/offpunkrc:
»
»   set ftr_site_config /usr/share/ftr-site-config
__EOT__
}

post_upgrade() {
  post_install "$@"
}

# eof