diff options
| author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2020-08-24 18:45:55 +0200 | 
|---|---|---|
| committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2020-08-24 18:45:55 +0200 | 
| commit | a77bc1fcbdf83cfdac9570c0a0ac886b5534c90f (patch) | |
| tree | d839746371ecb8ed64ac81d2e37c11fcd25a00ac /tools/openbsd | |
| parent | 787fb1d54ec9ee5fb941ae897fb201feb9cb2fd1 (diff) | |
| parent | 2b3e02411ecc09e7d41741b5587655c9b2f955b7 (diff) | |
Merge branch 'feature/upstream' into develop
Diffstat (limited to 'tools/openbsd')
| -rwxr-xr-x | tools/openbsd/attach | 15 | ||||
| -rwxr-xr-x | tools/openbsd/detach | 17 | 
2 files changed, 15 insertions, 17 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 diff --git a/tools/openbsd/detach b/tools/openbsd/detach index a5c209c..8566e51 100755 --- a/tools/openbsd/detach +++ b/tools/openbsd/detach @@ -5,18 +5,17 @@ DEVNAME=$2  case $DEVCLASS in  0) -	# generic devices  	case "$DEVNAME" in  	ugen*) -		BUSNAME=`cat /var/run/${DEVNAME}.bus` +		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 +		chown root:wheel /dev/${DEVNAME}.* && +			chmod 600 /dev/${DEVNAME}.* +		test -n "$BUSNAME" && { +			chown root:wheel $BUSNAME && +				chmod 600 $BUSNAME +		}  		;;  	esac - -        ;; +	;;  esac | 
