blob: 4dc02332934934140fdb650e921525cee60dd517 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
post_install () {
[ ! -e /etc/brlapi.key ] && brltty-genkey
echo "Please add your user to the brlapi group."
}
post_upgrade () {
post_install
}
post_remove() {
[ -e /etc/brlapi.key ] && rm -v /etc/brlapi.key
}
|