diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2014-10-06 14:00:40 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2014-10-06 14:00:40 +0200 |
commit | 6e9c41a892ed0e0da326e0278b3221ce3f5713b8 (patch) | |
tree | 2e301d871bbeeb44aa57ff9cc070fcf3be484487 /tools/openbsd/detach |
Initial import of sane-backends version 1.0.24-1.2
Diffstat (limited to 'tools/openbsd/detach')
-rwxr-xr-x | tools/openbsd/detach | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/tools/openbsd/detach b/tools/openbsd/detach new file mode 100755 index 0000000..a5c209c --- /dev/null +++ b/tools/openbsd/detach @@ -0,0 +1,22 @@ +#!/bin/sh + +DEVCLASS=$1 +DEVNAME=$2 + +case $DEVCLASS in +0) + # generic devices + case "$DEVNAME" in + ugen*) + BUSNAME=`cat /var/run/${DEVNAME}.bus` + rm -f /var/run/${DEVNAME}.bus + # probably our scanner + chgrp wheel /dev/"$DEVNAME".* + if [ x$BUSNAME != x ] ; then + chgrp wheel /dev/"$BUSNAME" + fi + ;; + esac + + ;; +esac |