diff options
| author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2020-08-24 18:44:51 +0200 | 
|---|---|---|
| committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2020-08-24 18:44:51 +0200 | 
| commit | ad38bc6ecb80ddeb562841b33258dd53659b1da6 (patch) | |
| tree | e02e9c3ff760554fd87f70df0e18b88594091a48 /tools/openbsd/attach | |
| parent | 9c23ed018d72eed2554f4f9cff1ae6e6bb0cd479 (diff) | |
New upstream version 1.0.31upstream/1.0.31
Diffstat (limited to 'tools/openbsd/attach')
| -rwxr-xr-x | tools/openbsd/attach | 15 | 
1 files changed, 7 insertions, 8 deletions
| diff --git a/tools/openbsd/attach b/tools/openbsd/attach index b6c98c8..16ce31f 100755 --- a/tools/openbsd/attach +++ b/tools/openbsd/attach @@ -5,16 +5,15 @@ DEVNAME=$2  case $DEVCLASS in  0) -	# generic devices  	case "$DEVNAME" in  	ugen*) -		BUSNAME=`usbdevs -v -d | egrep "Controller|$DEVNAME\$" | grep -B 1 ugen0$ | head -n 1 | sed -e 's,Controller ,,' -e 's,:$,,' ` -		echo $BUSNAME >  /var/run/${DEVNAME}.bus -		# probably our scanner -		chgrp usb /dev/"$DEVNAME".* -		chgrp usb /dev/"$BUSNAME" +		BUSNAME=$(usbdevs -vv | egrep "Controller|$DEVNAME\$" | grep -B 1 "$DEVNAME\$" | awk -F'[ :]' '/^Controller/ { print $2 }') +		echo $BUSNAME > /var/run/${DEVNAME}.bus +		chown _cups:_saned /dev/${DEVNAME}.* && +			chmod 660 /dev/${DEVNAME}.* +		chown _cups:_saned $BUSNAME && +			chmod 660 $BUSNAME  		;;  	esac - -        ;; +	;;  esac | 
