blob: 1923928933726f955e55bed1bd3df74edbe1a808 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# arg 1: the new package version
post_install() {
echo ">>> If you wish to use SSL, please install pyopenssl."
echo ">>> "
echo ">>> To configure:"
echo ">>> Copy /etc/hellanzb.conf.sample to either /etc/hellanzb.conf or"
echo ">>> ~/.config/hellanzb.conf and edit."
echo ">>> "
echo ">>> To run:"
echo ">>> Run /usr/bin/hellanzb.py or use the rc script /etc/rc.d/hellanzb."
echo ">>> If using the rc script, make sure to edit /etc/conf.d/hellanzb."
}
post_upgrade() {
post_install
}
op=$1
shift
$op $*
|