blob: 943826f434e7caaabf214f33c2b1a89572ace671 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
post_install () {
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
}
|