blob: 97c4a6e5e1d168e77f4a6883e5f2e279baeff301 (
plain)
1
2
3
4
5
6
7
|
post_install() {
getent group qb64 &> /dev/null || groupadd qb64
chgrp -R qb64 /opt/qb64/internal
echo 'To use qb64, you must be a member of the qb64 group.'
echo "Run \`usermod $(logname) -a -G qb64`` to add your user to the group,"
echo 'then log out and log back in.'
}
|