blob: a372aa9de3564944a0af2e9c6f1c1dff6b9b5007 (
plain)
1
2
3
4
5
6
7
8
9
10
|
post_install() {
echo -e "
Please make sure, your user is in the \"optical\" group.
Use 'id' to check your group membership and check the group
membership for '/dev/sr0' as well"
}
post_upgrade() {
post_install
}
|