blob: 34173bc2e45b6a54bc5331b5c360d9f4ed959a83 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
post_install() {
echo "vtigercrm-customerportal: Please read /srv/http/vtigercrm/portal/INSTALLATION.txt before attempting to use the customer portal"
}
post_upgrade() {
post_install $1
}
op=$1
shift
$op $*
|