9 lines
162 B
Text
9 lines
162 B
Text
post_install() {
|
|
echo '==> Make sure to add your user to the video group.'
|
|
}
|
|
|
|
post_upgrade() {
|
|
if [ "$(vercmp "$2" '1.2-3')" -lt 0 ]; then
|
|
post_install
|
|
fi
|
|
}
|