summarylogtreecommitdiffstats
path: root/aria-ng-deploy.install
blob: fd7a5f5bbb9c409892245d705318a1c8ec0014c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# color
all_off="$(tput sgr0)"
bold="${all_off}$(tput bold)"
blue="${bold}$(tput setaf 4)"
yellow="${bold}$(tput setaf 3)"

note() {
    printf "${blue}==>${yellow} NOTE:${bold} $1${all_off}\n"
}

post_install(){
        note "you should copy /usr/share/aria-ng-deploy to your web directory"
}

post_upgrade(){
        post_install
}