Re: [systemd-devel] Add User to group video

2015-05-07 Thread Mantas Mikulėnas
On Thu, May 7, 2015 at 12:30 PM, Martin Vogt mvo...@gmail.com wrote: Hello, I try to give any user rw permissions on /dev/nvidia*. Usually this is done by adding the user to group video, but here the group is configured on NIS and I cannot change it. AFAIK, secondary groups are merged

[systemd-devel] Dependency on timers.target

2015-05-07 Thread Bas van Dijk
Hello, I have a systemd timer (sensors-logger.timer) which requires another service (carbonCache.service) to be active: [Unit] Requires=carbonCache.service After=carbonCache.service Description=Log hardware sensors to graphite. [Timer] OnCalendar=*-*-* *:*:00 I noticed the

Re: [systemd-devel] Add User to group video

2015-05-07 Thread Simon McVittie
On 07/05/15 10:30, Martin Vogt wrote: I try to give any user rw permissions on /dev/nvidia*. Usually this is done by adding the user to group video, but here the group is configured on NIS and I cannot change it. On a modern Linux system you should instead be able to tag those devices as

Re: [systemd-devel] [PATCH] udev: Restore udevadm settle timeout

2015-05-07 Thread Harald Hoyer
On 20.04.2015 10:33, David Herrmann wrote: Hi On Sat, Apr 11, 2015 at 9:38 PM, Nir Soffer nir...@gmail.com wrote: On Sat, Apr 11, 2015 at 1:36 PM, David Herrmann dh.herrm...@gmail.com wrote: @@ -139,6 +142,9 @@ static int adm_settle(struct udev *udev, int argc, char *argv[]) {

Re: [systemd-devel] [PATCH] udev: Restore udevadm settle timeout

2015-05-07 Thread David Herrmann
Hi On Thu, May 7, 2015 at 10:53 AM, Harald Hoyer harald.ho...@gmail.com wrote: On 20.04.2015 10:33, David Herrmann wrote: Hi On Sat, Apr 11, 2015 at 9:38 PM, Nir Soffer nir...@gmail.com wrote: On Sat, Apr 11, 2015 at 1:36 PM, David Herrmann dh.herrm...@gmail.com wrote: @@ -139,6 +142,9 @@

[systemd-devel] Add User to group video

2015-05-07 Thread Martin Vogt
Hello, I try to give any user rw permissions on /dev/nvidia*. Usually this is done by adding the user to group video, but here the group is configured on NIS and I cannot change it. So my idea was, to add every user to group video during login. (Or change the permissions to 666 on /dev/nvidia*)

Re: [systemd-devel] [PATCH 0/5] systemd-importd - support for pulling from V2 Dkr registries

2015-05-07 Thread Daurnimator
On 8 May 2015 at 01:46, Pavel Odvody podv...@redhat.com wrote: - To access the V2 registry we need to send a special User-Agent docker/1.6.0 Is this really required? Can we request they change something server side? ___ systemd-devel mailing list

[systemd-devel] [PATCH 4/5] import/pull: Tag replaced with reference

2015-05-07 Thread Pavel Odvody
Signed-off-by: Pavel Odvody podv...@redhat.com --- src/import/pull.c | 28 +--- 1 file changed, 17 insertions(+), 11 deletions(-) diff --git a/src/import/pull.c b/src/import/pull.c index ef7b035..8054612 100644 --- a/src/import/pull.c +++ b/src/import/pull.c @@ -227,7

[systemd-devel] [PATCH 0/5] systemd-importd - support for pulling from V2 Dkr registries

2015-05-07 Thread Pavel Odvody
Hi, the attached series of patches add support for pulling from V2 docker registries, so let me break down first what happened to the format since V1 - Image is now defined by a JSON manifest - contains fields like name, tag, schemaVersion ... - and fsLayers - which is an array of sha256

[systemd-devel] [PATCH 3/5] test/test-json: Tests for the JSON parser and the tokenizer bugfix

2015-05-07 Thread Pavel Odvody
Signed-off-by: Pavel Odvody podv...@redhat.com --- src/test/test-json.c | 16 1 file changed, 16 insertions(+) diff --git a/src/test/test-json.c b/src/test/test-json.c index 24dc700..745eeb0 100644 --- a/src/test/test-json.c +++ b/src/test/test-json.c @@ -72,6 +72,17 @@ static

[systemd-devel] [PATCH 1/5] shared/import-util: tag renamed to reference to support v2 pull by digest

2015-05-07 Thread Pavel Odvody
Signed-off-by: Pavel Odvody podv...@redhat.com --- src/shared/import-util.c | 19 +++ src/shared/import-util.h | 1 + 2 files changed, 20 insertions(+) diff --git a/src/shared/import-util.c b/src/shared/import-util.c index 660d92a..f2fb6d0 100644 --- a/src/shared/import-util.c

[systemd-devel] [PATCH 2/5] shared/json: JSON parser + number tokenizer bugfix

2015-05-07 Thread Pavel Odvody
Signed-off-by: Pavel Odvody podv...@redhat.com --- src/shared/json.c | 437 -- src/shared/json.h | 36 + 2 files changed, 463 insertions(+), 10 deletions(-) diff --git a/src/shared/json.c b/src/shared/json.c index 45c8ece..00d5fce 100644

Re: [systemd-devel] [PATCH 5/5] import/pull-dkr: V2 Image specification + manifest support

2015-05-07 Thread Reverend Homer
07.05.2015 18:47, Pavel Odvody пишет: Signed-off-by: Pavel Odvody podv...@redhat.com --- src/import/pull-dkr.c | 531 -- src/import/pull-dkr.h | 48 - 2 files changed, 518 insertions(+), 61 deletions(-) diff --git

Re: [systemd-devel] [PATCH 5/5] import/pull-dkr: V2 Image specification + manifest support

2015-05-07 Thread Pavel Odvody
On Thu, 2015-05-07 at 18:58 +0300, Reverend Homer wrote: 07.05.2015 18:47, Pavel Odvody пишет: Signed-off-by: Pavel Odvody podv...@redhat.com --- src/import/pull-dkr.c | 531 -- src/import/pull-dkr.h | 48 - 2 files changed,

[systemd-devel] [PATCH 5/5] import/pull-dkr: V2 Image specification + manifest support

2015-05-07 Thread Pavel Odvody
Signed-off-by: Pavel Odvody podv...@redhat.com --- src/import/pull-dkr.c | 531 -- src/import/pull-dkr.h | 48 - 2 files changed, 518 insertions(+), 61 deletions(-) diff --git a/src/import/pull-dkr.c b/src/import/pull-dkr.c index

[systemd-devel] No hackfest at Linux Plumbers Conference

2015-05-07 Thread Lennart Poettering
Heya! I have been asked recently whether there'll be a systemd hackfest at the Linux Plumbers Conference in Seattle this year. I have talked to some of the other core systemd hackers about this today, and all of them indicated they do not intend to attend this year's LPC. (I myself will not

Re: [systemd-devel] Add User to group video

2015-05-07 Thread Lennart Poettering
On Thu, 07.05.15 11:30, Martin Vogt (mvo...@gmail.com) wrote: Hello, I try to give any user rw permissions on /dev/nvidia*. Usually this is done by adding the user to group video, but here the group is configured on NIS and I cannot change it. Please note that with systemd/udev we do not

Re: [systemd-devel] Add User to group video

2015-05-07 Thread Martin Vogt
On Thu, May 7, 2015 at 11:44 AM, Simon McVittie simon.mcvit...@collabora.co.uk wrote: On 07/05/15 10:30, Martin Vogt wrote: I try to give any user rw permissions on /dev/nvidia*. Usually this is done by adding the user to group video, but here the group is configured on NIS and I cannot