diff options
Diffstat (limited to 'testing/brltty/brltty.install')
-rw-r--r-- | testing/brltty/brltty.install | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/testing/brltty/brltty.install b/testing/brltty/brltty.install deleted file mode 100644 index 952ae58ff..000000000 --- a/testing/brltty/brltty.install +++ /dev/null @@ -1,20 +0,0 @@ -post_install () { - getent group brlapi &>/dev/null || groupadd -r brlapi - if [ ! -e /etc/brlapi.key ]; then - mcookie >/etc/brlapi.key - chmod 0640 /etc/brlapi.key - chgrp brlapi /etc/brlapi.key - echo "Please add your user to the brlapi group." - fi -} - -post_upgrade () { - post_install -} - -post_remove () { - getent group brlapi >/dev/null 2>&1 && groupdel brlapi - if [ -e /etc/brlapi.key ]; then - rm -f /etc/brlapi.key - fi -} |