* [PATCH] add ACL for color measurement devices
@ 2010-01-14 14:37 Frederic Crozat
2010-01-14 15:12 ` Marco d'Itri
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Frederic Crozat @ 2010-01-14 14:37 UTC (permalink / raw)
To: linux-hotplug
[-- Attachment #1: Type: text/plain, Size: 487 bytes --]
Hi,
sftp://fcrozat@kenobi/home/fcrozat/checkout/udev/0001-rules-udev-acl-add-color-measurement-devices.patch
as part of writing udev rules for Argyllcms supported color measurement
devices, it would be great if udev upstream could merge attached patch
which set ACL on such devices, when detected using Argyllcms own rules.
This is similar to what is done in gphoto2 and other packages and allows
to centralize ACL policy in udev own 70-acl.rules file.
--
Frederic Crozat
Mandriva
[-- Attachment #2: 0001-rules-udev-acl-add-color-measurement-devices.patch --]
[-- Type: text/plain, Size: 974 bytes --]
From 403687a4855f8098bdbc7ac72874630b83e11678 Mon Sep 17 00:00:00 2001
From: Frederic Crozat <fcrozat@mandriva.com>
Date: Thu, 14 Jan 2010 15:11:27 +0100
Subject: [PATCH] rules: udev-acl -add color measurement devices
---
extras/udev-acl/70-acl.rules | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/extras/udev-acl/70-acl.rules b/extras/udev-acl/70-acl.rules
index ab2984c..78e3eba 100644
--- a/extras/udev-acl/70-acl.rules
+++ b/extras/udev-acl/70-acl.rules
@@ -60,6 +60,9 @@ SUBSYSTEM=="input", ENV{ID_INPUT_JOYSTICK}=="?*", ENV{ACL_MANAGE}="1"
# smart phones
SUBSYSTEM=="usb", ATTR{idVendor}=="0bb4", ATTR{idProduct}=="0c02", ENV{ACL_MANAGE}="1"
+# color measurement devices
+ENV{COLOR_MEASUREMENT_DEVICE}=="*?", ENV{ACL_MANAGE}="1"
+
# apply ACL for all locally logged in users
LABEL="acl_apply", ENV{ACL_MANAGE}=="?*", TEST=="/var/run/ConsoleKit/database", \
RUN+="udev-acl --action=$env{ACTION} --device=$env{DEVNAME}"
--
1.6.6
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] add ACL for color measurement devices
2010-01-14 14:37 [PATCH] add ACL for color measurement devices Frederic Crozat
@ 2010-01-14 15:12 ` Marco d'Itri
2010-01-14 15:18 ` Kay Sievers
2010-01-14 17:22 ` Frederic Crozat
2 siblings, 0 replies; 4+ messages in thread
From: Marco d'Itri @ 2010-01-14 15:12 UTC (permalink / raw)
To: linux-hotplug
On Jan 14, Frederic Crozat <fcrozat@mandriva.com> wrote:
> as part of writing udev rules for Argyllcms supported color measurement
> devices, it would be great if udev upstream could merge attached patch
> which set ACL on such devices, when detected using Argyllcms own rules.
> This is similar to what is done in gphoto2 and other packages and allows
> to centralize ACL policy in udev own 70-acl.rules file.
I can't see the point. If the device is recognized by rules somewhere
else I see no benefits in setting $ACL_MANAGE in a different file.
--
ciao,
Marco
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] add ACL for color measurement devices
2010-01-14 14:37 [PATCH] add ACL for color measurement devices Frederic Crozat
2010-01-14 15:12 ` Marco d'Itri
@ 2010-01-14 15:18 ` Kay Sievers
2010-01-14 17:22 ` Frederic Crozat
2 siblings, 0 replies; 4+ messages in thread
From: Kay Sievers @ 2010-01-14 15:18 UTC (permalink / raw)
To: linux-hotplug
On Thu, Jan 14, 2010 at 15:37, Frederic Crozat <fcrozat@mandriva.com> wrote:
> sftp://fcrozat@kenobi/home/fcrozat/checkout/udev/0001-rules-udev-acl-add-color-measurement-devices.patch
> as part of writing udev rules for Argyllcms supported color measurement
> devices, it would be great if udev upstream could merge attached patch which
> set ACL on such devices, when detected using Argyllcms own rules. This is
> similar to what is done in gphoto2 and other packages and allows to
> centralize ACL policy in udev own 70-acl.rules file.
Applied.
Thanks,
Kay
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] add ACL for color measurement devices
2010-01-14 14:37 [PATCH] add ACL for color measurement devices Frederic Crozat
2010-01-14 15:12 ` Marco d'Itri
2010-01-14 15:18 ` Kay Sievers
@ 2010-01-14 17:22 ` Frederic Crozat
2 siblings, 0 replies; 4+ messages in thread
From: Frederic Crozat @ 2010-01-14 17:22 UTC (permalink / raw)
To: linux-hotplug
Le 14/01/2010 16:12, Marco d'Itri a écrit :
> On Jan 14, Frederic Crozat<fcrozat@mandriva.com> wrote:
>
>> as part of writing udev rules for Argyllcms supported color measurement
>> devices, it would be great if udev upstream could merge attached patch
>> which set ACL on such devices, when detected using Argyllcms own rules.
>> This is similar to what is done in gphoto2 and other packages and allows
>> to centralize ACL policy in udev own 70-acl.rules file.
> I can't see the point. If the device is recognized by rules somewhere
> else I see no benefits in setting $ACL_MANAGE in a different file.
Well, IIRC, it was discussed here some time ago, people arguying it was
better to "centralize" ACL in 70-acl.rules. This mecanism is already
used for gphoto, libsane, hplip and so on ;)
--
Frederic Crozat
Mandriva
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2010-01-14 17:22 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-01-14 14:37 [PATCH] add ACL for color measurement devices Frederic Crozat
2010-01-14 15:12 ` Marco d'Itri
2010-01-14 15:18 ` Kay Sievers
2010-01-14 17:22 ` Frederic Crozat
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).