blob: 33081b37c3f5139f62df52a91bf2fff0df212a67 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
all_off="$(tput sgr0)"
bold="${all_off}$(tput bold)"
yellow="${bold}$(tput setaf 3)"
blue="${bold}$(tput setaf 4)"
green="${bold}$(tput setaf 2)"
_instructions() {
printf "${yellow}==>${all_off} ${bold}ATENTION:${all_off}
${green}==>${all_off} To use qcma as normal user you have to add yourself into ${bold}vitamtp${all_off} group.\n"
}
post_install() {
_instructions
}
post_upgrade() {
post_install
}
|