summarylogtreecommitdiffstats
path: root/accel-ppp.install
blob: 2a4cfdd0347933fc3cef1f220ac00ffaa645fd9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# vim:set ts=2 sw=2 et:

# 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 "For more information, see the /usr/share/doc/accel-ppp/README";
}
 
post_upgrade() {
  echo
  note "For more information, see the /usr/share/doc/accel-ppp/README"
}