blob: d9a833072d596f2762e84dc04cab0f7794420b35 (
plain)
1
2
3
4
5
6
7
8
9
10
|
post_install() {
echo "You must agree to the following End-User License agreement,"
echo "or uninstall suitplay."
echo
cat /usr/share/licenses/suitplay/LICENSE
}
post_upgrade() {
post_install
}
|