File: usbcam.group

package info (click to toggle)
libgphoto2 2.4.14-2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 21,816 kB
  • sloc: ansic: 106,721; sh: 11,844; xml: 4,811; perl: 975; makefile: 600; yacc: 337; lex: 92; cpp: 22; sed: 16
file content (35 lines) | stat: -rwxr-xr-x 1,117 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/bin/bash
# $Id: usbcam.group 9931 2007-01-24 20:54:57Z marcusmeissner $
#
# /etc/hotplug/usb/usbcam
#
# Sets up newly plugged in USB camera so that only members of the 
# group

GROUP=camera

# can access it from user space. (Replace camera with the name of the
# group you want to have access to the cameras.)
#
# Note that for this script to work, you'll need all of the following:
# a) a line in the file /etc/hotplug/usermap that corresponds to the 
#    camera you are using. You can get the correct lines for all cameras 
#    supported by libgphoto2 by running
#              $ print-camera-list usb-usermap usbcam
# b) a group "camera" where all users allowed access to the
#    camera are listed
# c) a Linux kernel supporting hotplug and usbdevfs
# d) the hotplug package (http://linux-hotplug.sourceforge.net/)
#
# In the usermap file, the first field "usb module" should be named 
# "usbcam" like this script.
# 

[ -z "${DEVICE}" ] && DEVICE="${DEVNAME}"

if [ "${ACTION}" = "add" ] && [ -e "${DEVICE}" ]
then
    chmod o-rwx "${DEVICE}"
    chgrp "${GROUP}" "${DEVICE}"
    chmod g+rw "${DEVICE}"
fi