Re: [systemd-devel] [PATCH] Drop the udev firmware loader

2014-05-31 Thread Lennart Poettering
On Sun, 01.06.14 09:10, Samuli Suominen (ssuomi...@gentoo.org) wrote: > > Also note that at that point we intend to move udev onto kdbus as > > transport, and get rid of the userspace-to-userspace netlink-based > > tranport udev used so far. Unless the systemd-haters prepare another > > kdbus user

Re: [systemd-devel] [PATCH v5 12/14] autoconf: xen: enable explicit preference option for xenstored preference

2014-05-31 Thread Lennart Poettering
On Fri, 30.05.14 01:29, Luis R. Rodriguez (mcg...@suse.com) wrote: > I'm cc'ing a few security folks as I'd appreciate review on the ideas here, > in particular that of a launcher idea on system to replace alternatives on the > ExecStart= line of a systemd service unit file, alternative ideas are

Re: [systemd-devel] [PATCH] Drop the udev firmware loader

2014-05-31 Thread Samuli Suominen
On 01/06/14 08:45, Lennart Poettering wrote: > On Fri, 30.05.14 04:32, Michael Biebl (mbi...@gmail.com) wrote: > >> 2014-05-30 4:26 GMT+02:00 Greg KH : >> >>> You update systemd but you don't update the kernel? How does that make >>> any sense? >> There might be very valid reasons why you need to

Re: [systemd-devel] [PATCH] udev-builtin-keyboard: do tell on which device EVIOCSKEYCODE failed.

2014-05-31 Thread Lennart Poettering
On Fri, 30.05.14 13:16, Cristian Rodríguez (crrodrig...@opensuse.org) wrote: Applied! Thanks! > I am getting > > "Error calling EVIOCSKEYCODE (scan code 0xc022d, key code 418): Invalid > argument", the error message does not tell on which specific device the > problem is, add that info. > --- >

Re: [systemd-devel] [PATCH] tty-ask-password-agent: Do tell what directory we failed to open

2014-05-31 Thread Lennart Poettering
On Thu, 29.05.14 14:17, Cristian Rodríguez (crrodrig...@opensuse.org) wrote: Applied! THanks! > --- > src/tty-ask-password-agent/tty-ask-password-agent.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/src/tty-ask-password-agent/tty-ask-password-agent.c > b/src/tty-ask

Re: [systemd-devel] [PATCH] hostnamectl: correct IDs for remote hosts

2014-05-31 Thread Lennart Poettering
On Sat, 31.05.14 18:21, Rico Sagner (sag...@b1-systems.de) wrote: Heya! I think that the two ids would probably be better exposed by PID 1 istelf, instead of hostnamed. It's a bit difficult to come up with a rule which props should be exposed from hostnamed and which ones from PID1, but I think t

Re: [systemd-devel] [PATCH] journald: collect process data from socket data

2014-05-31 Thread Lennart Poettering
On Fri, 30.05.14 12:45, Piotr Wilczek (p.wilc...@samsung.com) wrote: > This patch adds posibility for journal to get process data from > socket data (if available) instead of from procfs. > > Additionally a new procinfo structure is added to store all process > data in single place. This data inc

Re: [systemd-devel] [PATCH] Drop the udev firmware loader

2014-05-31 Thread Lennart Poettering
On Fri, 30.05.14 04:32, Michael Biebl (mbi...@gmail.com) wrote: > > 2014-05-30 4:26 GMT+02:00 Greg KH : > > > You update systemd but you don't update the kernel? How does that make > > any sense? > > There might be very valid reasons why you need to stick with the old > kernel. As said, one ex

Re: [systemd-devel] systemd-213 fails to compile without kmod, no way to fix it using ./configure options

2014-05-31 Thread Lennart Poettering
On Sat, 31.05.14 19:43, Samuli Suominen (ssuomi...@gentoo.org) wrote: > > > On 31/05/14 17:10, Samuli Suominen wrote: > > On 31/05/14 14:14, Samuli Suominen wrote: > >> 1. "libsystemd_network_la_SOURCES =" in Makefile.am includes > >> "src/libsystemd-network/network-internal.h" > >> and there is

Re: [systemd-devel] systemd-213 fails to compile without kmod, no way to fix it using ./configure options

2014-05-31 Thread Lennart Poettering
On Sun, 01.06.14 06:23, Kay Sievers (k...@vrfy.org) wrote: > On Sat, May 31, 2014 at 7:45 PM, Cristian Rodríguez > wrote: > > El 31/05/14 13:00, Samuli Suominen escribió: > >> A proper git formatted patch for inclusion. > > > > IN my opinion, we should just make KMOD a mandatory dependency, drop

Re: [systemd-devel] [PATCH 2/2] journald: Add UDP syslog listener

2014-05-31 Thread Lennart Poettering
On Wed, 28.05.14 22:30, Lubomir Rintel (lkund...@v3.sk) wrote: > This is fairly simple, yet useful with netconsole. Remote socket address is > not > used to obtain hostname, it would be easy to fake it via UDP anyway, which is > probably not desirable. If clients wish, they should identify themse

Re: [systemd-devel] systemd-213 fails to compile without kmod, no way to fix it using ./configure options

2014-05-31 Thread Kay Sievers
On Sat, May 31, 2014 at 7:45 PM, Cristian Rodríguez wrote: > El 31/05/14 13:00, Samuli Suominen escribió: >> A proper git formatted patch for inclusion. > > IN my opinion, we should just make KMOD a mandatory dependency, drop all > ifdefs, error out if not found. Sound fine to me, it really is a

[systemd-devel] [PATCH v4 1/2] Move handling of sysv initscripts to a generator

2014-05-31 Thread Thomas H.P. Andersen
From: Thomas Hindoe Paaboel Andersen Reuses logic from service.c and the rc-local generator. Note that this drops reading of chkconfig entirely. It also drops reading runlevels from the LSB headers. The runlevels were only used to check for runlevels outside of the normal 1-5 range and then add

[systemd-devel] [PATCH v4 2/2] Remove sysv parser from service.c

2014-05-31 Thread Thomas H.P. Andersen
From: Thomas Hindoe Paaboel Andersen Parsing sysv files was moved to the sysv-generator in the previous commit. This patch removes the sysv parsing from serivce.c. To avoid introducing an extra compat option in .service fies for identifying sysv services we instead add a check if the SourcePath

[systemd-devel] [PATCH v4 0/2] Move initscript parsing to a generator

2014-05-31 Thread Thomas H.P. Andersen
From: Thomas Hindoe Paaboel Andersen Compared to the previous version this one generates a .service file for all initscripts in the sysvinit path that have execute permission. After that it will adjust the before/after/wants/conflicts based on the rc.d's. The patches have a few warts that I cons

[systemd-devel] [PATCH] tests: do not use systemctl status --failed

2014-05-31 Thread Ronny Chevalier
since v212 calling systemctl status without arguments will show a overall system state --- test/TEST-01-BASIC/test.sh | 2 +- test/TEST-02-CRYPTSETUP/test.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/TEST-01-BASIC/test.sh b/test/TEST-01-BASIC/test.sh index 84

[systemd-devel] [PATCH] connection: pin the subjective cred for KDBUS_POLICY_OWN

2014-05-31 Thread Djalal Harouni
Make sure that the credentials of the connection at creation time will last so the kdbus_policy_check_own_access() will work as expected. Signed-off-by: Djalal Harouni --- connection.c | 7 +-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/connection.c b/connection.c index e8

Re: [systemd-devel] systemd-213 fails to compile without kmod, no way to fix it using ./configure options

2014-05-31 Thread Samuli Suominen
On 31/05/14 20:45, Cristian Rodríguez wrote: > El 31/05/14 13:00, Samuli Suominen escribió: >> A proper git formatted patch for inclusion. > IN my opinion, we should just make KMOD a mandatory dependency, drop all > ifdefs, error out if not found. > > > I don't see why, people use CONFIG_MODULES=

Re: [systemd-devel] systemd-213 fails to compile without kmod, no way to fix it using ./configure options

2014-05-31 Thread Cristian Rodríguez
El 31/05/14 13:00, Samuli Suominen escribió: > A proper git formatted patch for inclusion. IN my opinion, we should just make KMOD a mandatory dependency, drop all ifdefs, error out if not found. -- Cristian "I don't know the key to success, but the key to failure is trying to please everybody

Re: [systemd-devel] systemd-213 fails to compile without kmod, no way to fix it using ./configure options

2014-05-31 Thread Samuli Suominen
A proper git formatted patch for inclusion. >From 9be13cce871d1d7275acee8bcb106cd2f9e909b7 Mon Sep 17 00:00:00 2001 From: Mike Gilbert Date: Sat, 31 May 2014 19:58:47 +0300 Subject: [PATCH] Fix building with --disable-kmod --disable-networkd when kmod is not installed. --- src/libsystemd-netwo

Re: [systemd-devel] systemd-213 fails to compile without kmod, no way to fix it using ./configure options

2014-05-31 Thread Samuli Suominen
On 31/05/14 17:10, Samuli Suominen wrote: > On 31/05/14 14:14, Samuli Suominen wrote: >> 1. "libsystemd_network_la_SOURCES =" in Makefile.am includes >> "src/libsystemd-network/network-internal.h" >> and there is no anykind of #ifdef -logic behind it >> >> 2. "src/libsystemd-network/network-intern

[systemd-devel] [PATCH] hostnamectl: correct IDs for remote hosts

2014-05-31 Thread Rico Sagner
If hostnamectl is used with the --host option it does not show the correct machine and boot IDs of the remote host. The IDs are read by hostnamectl locally instead of querying dbus on the remote host. This patch makes systemd-hostnamed offer the IDs via dbus and hostnamectl retrieve it this way.

Re: [systemd-devel] Archlinux setup WLAN-Problems

2014-05-31 Thread Mantas Mikulėnas
rc.conf had many things, some of them not belonging to the boot scripts. It used to list active netcfg profiles once, later got simplified to configuring one Ethernet interface (before sysvinit was removed entirely). Was a rather bad place for wireless settings though – after all, WiFi networks can

Re: [systemd-devel] Archlinux setup WLAN-Problems

2014-05-31 Thread Leonid Isaev
On Sat, 31 May 2014 17:27:11 +0200 Lucas Thieme wrote: > configurated correct in/etc/rc.conf, and I thought, systemd replaced it. Yes, more than a year ago... Anyway, this is a wrong mailing list for your question. Go to bbs.archlinux.org and ask on the forums. -- Leonid Isaev GPG fingerprints

Re: [systemd-devel] Archlinux setup WLAN-Problems

2014-05-31 Thread Lucas Thieme
I found a guide for network problems at the german arch wiki. They say, if your device has no inet IP in the "IP addr" menu, it's not configurated correct in/etc/rc.conf, and I thought, systemd replaced it. Gesendet mit AquaMail für Android http://www.aqua-mail.com Am 31. Mai 2014 17:13:01 sc

Re: [systemd-devel] Archlinux setup WLAN-Problems

2014-05-31 Thread Greg KH
On Sat, May 31, 2014 at 04:30:00PM +0200, Lucas Thieme wrote: > Hey guys, > > I just began setting up arch linux. Now I have some Errors while setting up > the W-LAN. There are various errors. I think it may be caused by the systemd > driver configuration. Is here someone who can help me? Given t

[systemd-devel] Archlinux setup WLAN-Problems

2014-05-31 Thread Lucas Thieme
Hey guys, I just began setting up arch linux. Now I have some Errors while setting up the W-LAN. There are various errors. I think it may be caused by the systemd driver configuration. Is here someone who can help me? Greetz. Lucas. Gesendet mit AquaMail für Android http://www.aqua-mail.com

Re: [systemd-devel] systemd-213 fails to compile without kmod, no way to fix it using ./configure options

2014-05-31 Thread Samuli Suominen
On 31/05/14 14:14, Samuli Suominen wrote: > 1. "libsystemd_network_la_SOURCES =" in Makefile.am includes > "src/libsystemd-network/network-internal.h" > and there is no anykind of #ifdef -logic behind it > > 2. "src/libsystemd-network/network-internal.h" has #include > and there is no anykind of

Re: [systemd-devel] [PATCH v3 0/2] Move initscript parsing to a generator

2014-05-31 Thread Thomas H.P. Andersen
On Sat, May 31, 2014 at 11:34 AM, Tom Gundersen wrote: > > On 31 May 2014 08:39, "Thomas H.P. Andersen" wrote: >> >> This needs some more work. Currently only initscripts linked from the rc?d >> dirs are generated. We of course need to generate them all and have a way to >> run the generator afte

Re: [systemd-devel] [PATCH] [RFC] Move handling of sysv initscripts to a generator

2014-05-31 Thread Andrey Borzenkov
В Thu, 29 May 2014 16:11:25 +0200 "Thomas H.P. Andersen" пишет: > What about the "SysVStartPriority=" option set in native .service's? Is there any non-trivial use case for it? The only usage I have seen was in rc.local emulation and right now none of services installed here defines it. > The

[systemd-devel] systemd-213 fails to compile without kmod, no way to fix it using ./configure options

2014-05-31 Thread Samuli Suominen
1. "libsystemd_network_la_SOURCES =" in Makefile.am includes "src/libsystemd-network/network-internal.h" and there is no anykind of #ifdef -logic behind it 2. "src/libsystemd-network/network-internal.h" has #include and there is no anykind of #ifdef -logic behind it so kmod is hardcoded dependen

Re: [systemd-devel] [PATCH v3 0/2] Move initscript parsing to a generator

2014-05-31 Thread Tom Gundersen
On 31 May 2014 08:39, "Thomas H.P. Andersen" wrote: > > This needs some more work. Currently only initscripts linked from the rc?d dirs are generated. We of course need to generate them all and have a way to run the generator after a new initscript is installed. > > Or do we want to run it just in

Re: [systemd-devel] [PATCH v3 0/2] Move initscript parsing to a generator

2014-05-31 Thread Thomas H.P. Andersen
This needs some more work. Currently only initscripts linked from the rc?d dirs are generated. We of course need to generate them all and have a way to run the generator after a new initscript is installed. Or do we want to run it just in time instead? On May 30, 2014 3:28 PM, "Thomas H.P. Anders