summaryrefslogtreecommitdiff
path: root/testing/brltty/brltty.install
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@kiwwwi.com.ar>2012-04-11 10:58:03 -0300
committerNicolás Reynolds <fauno@kiwwwi.com.ar>2012-04-11 10:58:03 -0300
commit650d60fc202a0e359c563e780daed98215ea4bd1 (patch)
tree878025adaa13f36ca6256cf397623648b690d608 /testing/brltty/brltty.install
parentc07ca5cb71d277e9f2fd5c7b94cf8a0021bdfab5 (diff)
removed useless dirs
Diffstat (limited to 'testing/brltty/brltty.install')
-rw-r--r--testing/brltty/brltty.install20
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
-}