summarylogtreecommitdiffstats
path: root/install
blob: 97302f093f33fa1e7ceba5e86c8ffc84b50c7cfc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Colors
note() {
    printf "${BLUE}==>${ALL_OFF}${BOLD} NOTE:${ALL_OFF} ${1}\n"
}

ALL_OFF="$(tput sgr0)"
BOLD="$(tput bold)"
BLUE="${BOLD}$(tput setaf 4)"
GREEN="${BOLD}$(tput setaf 2)"

post_install() {

    echo
    note "Select the correct path to your JAVA_HOME in /etc/conf.d/bgbilling
          Create database: mysql < dump.sql"
}

post_upgrade() {

    echo
    note "Select the correct path to your JAVA_HOME in /etc/conf.d/bgbilling"
}