[systemd-devel] [PATCH v2 4/4] run: introduce timer support option

2014-10-30 Thread WaLyong Cho
Supported timer options --on-active=, --on-boot=, --on-startup=, --on-unit-active=, --on-unit-inactive=, --on-calendar=. Each options corresponding with OnActiveSec=, OnBootSec=, OnStartupSec=, OnUnitActiveSec=, OnUnitInactiveSec= of timer respectively. --- man/systemd-run.xml | 42

[systemd-devel] [PATCH v2 3/4] unit: add UnitMask enum and get unit scope(mask) api from property

2014-10-30 Thread WaLyong Cho
--- Makefile.am | 7 ++ src/shared/.gitignore| 1 + src/shared/unit-name.c | 22 src/shared/unit-name.h | 26 + src/shared/unit-property-scope.gperf | 202 +++ 5 files changed, 258

[systemd-devel] [PATCH v2 2/4] timer: timer can be a transient unit

2014-10-30 Thread WaLyong Cho
--- src/core/dbus-timer.c | 159 ++ src/core/dbus-timer.h | 3 + src/core/timer.c | 4 ++ 3 files changed, 166 insertions(+) diff --git a/src/core/dbus-timer.c b/src/core/dbus-timer.c index f1f8c54..e916f5a 100644 ---

[systemd-devel] [PATCH v2 1/4] bus: StartTransientUnit can have aux unit

2014-10-30 Thread WaLyong Cho
--- src/core/dbus-manager.c | 123 +--- 1 file changed, 105 insertions(+), 18 deletions(-) diff --git a/src/core/dbus-manager.c b/src/core/dbus-manager.c index c54abd3..bba4b27 100644 --- a/src/core/dbus-manager.c +++ b/src/core/dbus-manager.c @@

[systemd-devel] [PATCH] bus: use STR_IN_SET

2014-10-30 Thread WaLyong Cho
--- src/core/dbus-unit.c | 24 ++-- 1 file changed, 10 insertions(+), 14 deletions(-) diff --git a/src/core/dbus-unit.c b/src/core/dbus-unit.c index 9b13c6e..2d1862c 100644 --- a/src/core/dbus-unit.c +++ b/src/core/dbus-unit.c @@ -859,20 +859,16 @@ static int

[systemd-devel] [PATCH] hwdb: Ignore brightness keys on Dell Inspiron 1520 to avoid double events

2014-10-30 Thread Hans de Goede
On the Dell Inspiron 1520 both the atkbd and acpi-video input devices report an event for pressing the brightness up / down key-combos, resulting in user space seeing double events and increasing / decreasing the brightness 2 steps for each keypress. This hwdb snippet suppresses the atkbd events,

Re: [systemd-devel] [PATCH] bash-completion: fix systemctl isolate

2014-10-30 Thread Jan Synacek
Jan Synacek jsyna...@redhat.com writes: Jan Synacek (1): bash-completion: fix systemctl isolate I've just tested the latest systemd (commit 81333ec) and after the bash-completion patches, this patch seems obsolete and not needed anymore. -- Jan Synacek Software Engineer, Red Hat

Re: [systemd-devel] [PATCH] hwdb: Ignore brightness keys on Dell Inspiron 1520 to avoid double events

2014-10-30 Thread Martin Pitt
Hello Hans, Hans de Goede [2014-10-30 10:15 +0100]: On the Dell Inspiron 1520 both the atkbd and acpi-video input devices report an event for pressing the brightness up / down key-combos, resulting in user space seeing double events and increasing / decreasing the brightness 2 steps for each

Re: [systemd-devel] [PATCH] manager: do not print anything while passwords are being queried

2014-10-30 Thread Karel Zak
On Tue, Oct 28, 2014 at 03:28:32PM +0100, Lennart Poettering wrote: On Tue, 28.10.14 15:00, Zbigniew Jędrzejewski-Szmek (zbys...@in.waw.pl) wrote: On Mon, Oct 27, 2014 at 06:37:21PM +0100, Lennart Poettering wrote: On Sun, 26.10.14 05:37, Zbigniew Jędrzejewski-Szmek (zbys...@in.waw.pl)

Re: [systemd-devel] remote-fs ordering, iSCSI and _netdev

2014-10-30 Thread Karel Zak
On Tue, Oct 28, 2014 at 02:29:35AM +0100, Lennart Poettering wrote: On Mon, 27.10.14 14:10, Chris Leech (cle...@redhat.com) wrote: So for any mounts to remote block devices (unlike remote file system protocols which are detected by the fs name), unless there is an fstab entry at the time

[systemd-devel] [PATCH 0/5] Features and fixes for OnCalendar events

2014-10-30 Thread Daniele Medri
Following the previously submitted patches and the relative comments of our Bürgermeister, I renewed a bit my code and added something new after v217 tag. Could be better? Do it. Need some fixes? Fix it. Daniele Medri (5): - calendar: semesterly alias for semi-annually - man: reorganization of

[systemd-devel] [PATCH 4/5] constant for weekdays_bits

2014-10-30 Thread Daniele Medri
--- src/shared/calendarspec.c | 12 +++- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/src/shared/calendarspec.c b/src/shared/calendarspec.c index a937f8b..9b05f13 100644 --- a/src/shared/calendarspec.c +++ b/src/shared/calendarspec.c @@ -24,6 +24,8 @@ #include

[systemd-devel] [PATCH 5/5] calendar: parse months's names

2014-10-30 Thread Daniele Medri
--- man/systemd.time.xml | 9 +++ src/shared/calendarspec.c | 202 ++ src/shared/calendarspec.h | 1 + 3 files changed, 212 insertions(+) diff --git a/man/systemd.time.xml b/man/systemd.time.xml index 2ee5858..d108871 100644 ---

[systemd-devel] [PATCH 1/5] calendar: semesterly alias for semi-annually

2014-10-30 Thread Daniele Medri
--- man/systemd.time.xml | 4 ++-- src/shared/calendarspec.c| 3 ++- src/test/test-calendarspec.c | 1 + 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/man/systemd.time.xml b/man/systemd.time.xml index f35ccd7..2342684 100644 --- a/man/systemd.time.xml +++

[systemd-devel] [PATCH 2/5] man: reorganization of calendar specs

2014-10-30 Thread Daniele Medri
--- man/systemd.time.xml | 31 ++- 1 file changed, 14 insertions(+), 17 deletions(-) diff --git a/man/systemd.time.xml b/man/systemd.time.xml index 2342684..2ee5858 100644 --- a/man/systemd.time.xml +++ b/man/systemd.time.xml @@ -241,23 +241,20 @@

[systemd-devel] [PATCH 3/5] readability: cases sorted by time

2014-10-30 Thread Daniele Medri
--- src/shared/calendarspec.c | 50 +++ 1 file changed, 25 insertions(+), 25 deletions(-) diff --git a/src/shared/calendarspec.c b/src/shared/calendarspec.c index 3115bba..a937f8b 100644 --- a/src/shared/calendarspec.c +++ b/src/shared/calendarspec.c

[systemd-devel] systemctl user start Xorg

2014-10-30 Thread arnaud gaboury
Archlinux 3.16.3 systemd 216-3 startx at login prompt. No DM I am slowly trying to use systemctl --user facilities. Until now, I am able to start few basic user services. Now it is time to start Xorg as a user service, but I can't manage to do it. As documentation is currently very sparse, I

[systemd-devel] [PATCHv6] tmpfiles, man: Add xattr support to tmpfiles

2014-10-30 Thread Maciej Wereski
This patch makes it possible to set extended attributes on files created by tmpfiles. This can be especially used to set SMACK security labels on volatile files and directories. It is done by adding new line of type t. Such line should contain attributes in Argument field, using following format:

[systemd-devel] [PATCH v2] core: improve error message when machine id is missing

2014-10-30 Thread Jan Synacek
--- Changes in v2: - show long explanation only when errno == EROFS src/core/machine-id-setup.c | 9 - 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/core/machine-id-setup.c b/src/core/machine-id-setup.c index efb074f..2360904 100644 --- a/src/core/machine-id-setup.c

Re: [systemd-devel] [PATCH] missing: Correct and extend getrandom syscall defines

2014-10-30 Thread Lennart Poettering
On Wed, 29.10.14 21:02, Dave Reisner (d...@falconindy.com) wrote: On Wed, Oct 29, 2014 at 11:55:29PM +0100, Lennart Poettering wrote: On Wed, 29.10.14 14:29, Cristian Rodríguez (crrodrig...@opensuse.org) wrote: Add syscall numbers for 32 bit x86 and arm and Correct the system call

Re: [systemd-devel] [PATCH] missing: Correct and extend getrandom syscall defines

2014-10-30 Thread Dave Reisner
On Thu, Oct 30, 2014 at 12:39:53PM +0100, Lennart Poettering wrote: On Wed, 29.10.14 21:02, Dave Reisner (d...@falconindy.com) wrote: On Wed, Oct 29, 2014 at 11:55:29PM +0100, Lennart Poettering wrote: On Wed, 29.10.14 14:29, Cristian Rodríguez (crrodrig...@opensuse.org) wrote:

[systemd-devel] Switch root slowness

2014-10-30 Thread Jan Synáček
Hello, commit 539618a0ddc2dc7f0fbe28de2ae0e07b34c81e60 Author: Lennart Poettering lenn...@poettering.net Date: Wed Oct 29 17:06:32 2014 +0100 util: make use of the new getrandom() syscall if it is available when needing entropy Doesn't require an fd, and could be a bit faster, so

Re: [systemd-devel] Switch root slowness

2014-10-30 Thread Dave Reisner
On Thu, Oct 30, 2014 at 01:18:24PM +0100, Jan Synáček wrote: Hello, commit 539618a0ddc2dc7f0fbe28de2ae0e07b34c81e60 Author: Lennart Poettering lenn...@poettering.net Date: Wed Oct 29 17:06:32 2014 +0100 util: make use of the new getrandom() syscall if it is available when needing

Re: [systemd-devel] systemctl user start Xorg

2014-10-30 Thread poma
On 30.10.2014 12:20, arnaud gaboury wrote: ... Oct 30 10:42:02 hortensia systemd[850]: Started Xorg server at display :0. Oct 30 10:42:02 hortensia xinit[12191]: /usr/bin/Xorg.wrap: Only console users are allowed to run the X server Oct 30 10:42:17 hortensia systemd[850]: xorg.service: main

Re: [systemd-devel] [PATCH] sysusers: Preserve ownership and mode on /etc/passwd and friends

2014-10-30 Thread Zbigniew Jędrzejewski-Szmek
On Wed, Oct 29, 2014 at 05:27:28PM +, Colin Guthrie wrote: FWIW, I tested this now and it seems to have worked fine and properly preserved both mode and ownership of the files in question. OK to push this one? Yeah, looks reasonable. Zbyszek Colin Guthrie wrote on 29/10/14 14:34:

Re: [systemd-devel] Switch root slowness

2014-10-30 Thread Lennart Poettering
On Thu, 30.10.14 13:18, Jan Synáček (jsyna...@redhat.com) wrote: Hello, commit 539618a0ddc2dc7f0fbe28de2ae0e07b34c81e60 Author: Lennart Poettering lenn...@poettering.net Date: Wed Oct 29 17:06:32 2014 +0100 util: make use of the new getrandom() syscall if it is available when

Re: [systemd-devel] [PATCH] sysusers: Preserve ownership and mode on /etc/passwd and friends

2014-10-30 Thread Colin Guthrie
Zbigniew Jędrzejewski-Szmek wrote on 30/10/14 12:35: On Wed, Oct 29, 2014 at 05:27:28PM +, Colin Guthrie wrote: FWIW, I tested this now and it seems to have worked fine and properly preserved both mode and ownership of the files in question. OK to push this one? Yeah, looks reasonable.

Re: [systemd-devel] Switch root slowness

2014-10-30 Thread Cristian Rodríguez
El 30/10/14 a las #4, Lennart Poettering escribió: In absence of that we can just fallback to /dev/urandom on EAGAIN I guess, and always pass GRND_NONBLOCK. Before you made this commit, I had a local patch that did exactly that..currently this is the best solution. I suggest to give up on

Re: [systemd-devel] [PATCH] missing: Correct and extend getrandom syscall defines

2014-10-30 Thread Lennart Poettering
On Thu, 30.10.14 07:57, Dave Reisner (d...@falconindy.com) wrote: On Thu, Oct 30, 2014 at 12:39:53PM +0100, Lennart Poettering wrote: On Wed, 29.10.14 21:02, Dave Reisner (d...@falconindy.com) wrote: On Wed, Oct 29, 2014 at 11:55:29PM +0100, Lennart Poettering wrote: On Wed, 29.10.14

Re: [systemd-devel] Switch root slowness

2014-10-30 Thread Jan Synacek
Dave Reisner d...@falconindy.com writes: On Thu, Oct 30, 2014 at 01:18:24PM +0100, Jan Synáček wrote: Hello, commit 539618a0ddc2dc7f0fbe28de2ae0e07b34c81e60 Author: Lennart Poettering lenn...@poettering.net Date: Wed Oct 29 17:06:32 2014 +0100 util: make use of the new getrandom()

Re: [systemd-devel] Switch root slowness

2014-10-30 Thread Lennart Poettering
On Thu, 30.10.14 14:35, Lennart Poettering (lenn...@poettering.net) wrote: On Thu, 30.10.14 13:18, Jan Synáček (jsyna...@redhat.com) wrote: Hello, commit 539618a0ddc2dc7f0fbe28de2ae0e07b34c81e60 Author: Lennart Poettering lenn...@poettering.net Date: Wed Oct 29 17:06:32 2014 +0100

[systemd-devel] [PATCH v3] Bootchart: use /proc/pid/mountinfo for root bdev

2014-10-30 Thread Timofey Titovets
Good time of day, list. I have try to fix Fixme in svg.c: /* FIXME: this works only in the simple case */ By default function try to get only root=/dev/* I also attach patch. Thanks. v2: Rewrited with use fstab_node_to_udev_node() and canonicalize_file_name() functions. v3: Rewrited

Re: [systemd-devel] starting Oracle with systemd

2014-10-30 Thread Lennart Poettering
On Tue, 28.10.14 15:08, Fisher, Charles J. (Top Echelon) (charles.fis...@alcoa.com) wrote: Is this the best way to start Oracle? [root@localhost system]# cat oracle-foo.service [Unit] Description=oracle db - foo After=syslog.target The After=syslog.target line is unnecessary these days.

Re: [systemd-devel] [PATCH v2] core: improve error message when machine id is missing

2014-10-30 Thread Lennart Poettering
On Thu, 30.10.14 12:36, Jan Synacek (jsyna...@redhat.com) wrote: --- Changes in v2: - show long explanation only when errno == EROFS src/core/machine-id-setup.c | 9 - 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/core/machine-id-setup.c

Re: [systemd-devel] starting Oracle with systemd

2014-10-30 Thread Fisher, Charles J. (Top Echelon)
On Tue, 28.10.14 15:08, Fisher, Charles J. (Top Echelon) (charles.fis...@alcoa.com) wrote: Is this the best way to start Oracle? [Service] Environment=ORACLE_SID=foo ORACLE_HOME=/home/oracle/Ora12c/db ExecStart=/bin/ksh -c 'print connect / as sysdba \n startup \n quit |

Re: [systemd-devel] starting Oracle with systemd

2014-10-30 Thread Andrei Borzenkov
В Thu, 30 Oct 2014 13:29:10 -0400 Fisher, Charles J. (Top Echelon) charles.fis...@alcoa.com пишет: On Tue, 28.10.14 15:08, Fisher, Charles J. (Top Echelon) (charles.fis...@alcoa.com) wrote: Is this the best way to start Oracle? [Service] Environment=ORACLE_SID=foo

[systemd-devel] Service not restarting after Condition failed

2014-10-30 Thread D.S. Ljungmark
Hi we have a service set to: ConditionFileNotEmpty= and Restart=Always This combination would (in my feebled mind) cause the service to restart once the Condition was fulfilled, but that doesn't seem to be the case. Is there a way I can get a service to restart even after it has been set as

Re: [systemd-devel] starting Oracle with systemd

2014-10-30 Thread Fisher, Charles J. (Top Echelon)
-Original Message- From: systemd-devel [mailto:systemd-devel-boun...@lists.freedesktop.org] On Behalf Of Andrei Borzenkov Even in this case behavior is wrong. Currently stopping listener does not affect existing database connections. Killing all client processes on listener stop will

Re: [systemd-devel] starting Oracle with systemd

2014-10-30 Thread Lennart Poettering
On Thu, 30.10.14 13:29, Fisher, Charles J. (Top Echelon) (charles.fis...@alcoa.com) wrote: This looks quite suspicious as you spawn a shell and keep it running. It's fine to run shells and then finally exec the real binary, replacing the shell process, but keeping the shell around would tell

[systemd-devel] [PATCH] sd-dhcp-client: clean up raw socket sd_event_source when creating new UDP socket

2014-10-30 Thread Dan Williams
The raw socket sd_event_source used for DHCP server solicitations was simply dropped on the floor when creating the new UDP socket after a lease has been acquired. Clean it up properly so we're not still listening and responding to events on it. --- src/libsystemd-network/sd-dhcp-client.c | 3

Re: [systemd-devel] starting Oracle with systemd

2014-10-30 Thread Fisher, Charles J. (Top Echelon)
-Original Message- From: Lennart Poettering [mailto:lenn...@poettering.net] If you run those instances in separate cgroups? what's that supposed to mean? We do not expose cgroups as concept in systemd. Are you accessing cgroupfs directly? I have no idea how Oracle works, and the

Re: [systemd-devel] 'systemctl poweroff' no longer shuts down system -- instead, reboots ?

2014-10-30 Thread grantksupport
exec of systemctl poweroff causes, as reported, a reboot/restart but, exec of systemctl --force poweroff otoh, does shut down the machine, though not gracefully ___ systemd-devel mailing list systemd-devel@lists.freedesktop.org

Re: [systemd-devel] starting Oracle with systemd

2014-10-30 Thread Andrei Borzenkov
В Thu, 30 Oct 2014 20:06:55 +0100 Lennart Poettering lenn...@poettering.net пишет: I have no idea how Oracle works, and the above it too cryptic to fully understand what point you are trying to make. Can you eloborate on this for somebody who doesn't know a thing about Oracle? Oracle

Re: [systemd-devel] starting Oracle with systemd

2014-10-30 Thread Andrew Barnes
On 31 Oct, 2014 6:35 AM, Andrei Borzenkov arvidj...@gmail.com wrote: В Thu, 30 Oct 2014 20:06:55 +0100 Lennart Poettering lenn...@poettering.net пишет: I have no idea how Oracle works, and the above it too cryptic to fully understand what point you are trying to make. Can you eloborate

[systemd-devel] [PATCH 1/4] shared: add missing includes

2014-10-30 Thread Ronny Chevalier
--- src/shared/copy.h| 3 +++ src/shared/locale-util.h | 4 2 files changed, 7 insertions(+) diff --git a/src/shared/copy.h b/src/shared/copy.h index 0bf2598..6b93107 100644 --- a/src/shared/copy.h +++ b/src/shared/copy.h @@ -21,6 +21,9 @@ along with systemd; If not, see

[systemd-devel] [PATCH 3/4] tests: add missing entry for LocalVariable to test-tables

2014-10-30 Thread Ronny Chevalier
--- src/test/test-tables.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/test/test-tables.c b/src/test/test-tables.c index 907958e..2138442 100644 --- a/src/test/test-tables.c +++ b/src/test/test-tables.c @@ -48,6 +48,7 @@ #include link-config.h #include bus-policy.h #include

[systemd-devel] [PATCH 2/4] tests: add test-locale-util

2014-10-30 Thread Ronny Chevalier
--- .gitignore | 1 + Makefile.am | 9 ++- src/test/test-locale-util.c | 59 + 3 files changed, 68 insertions(+), 1 deletion(-) create mode 100644 src/test/test-locale-util.c diff --git a/.gitignore b/.gitignore

[systemd-devel] [PATCH 4/4] tests: add test-copy

2014-10-30 Thread Ronny Chevalier
--- .gitignore | 1 + Makefile.am | 9 +++- src/test/test-copy.c | 115 +++ 3 files changed, 124 insertions(+), 1 deletion(-) create mode 100644 src/test/test-copy.c diff --git a/.gitignore b/.gitignore index

[systemd-devel] [PATCH] shared: fix typo

2014-10-30 Thread Ronny Chevalier
--- src/shared/capability.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/shared/capability.c b/src/shared/capability.c index d2b9013..0226542 100644 --- a/src/shared/capability.c +++ b/src/shared/capability.c @@ -228,7 +228,7 @@ int drop_privileges(uid_t uid, gid_t

[systemd-devel] [PATCH] tests: add tests for strv.c

2014-10-30 Thread Ronny Chevalier
add tests for: - strv_find_startswith - strv_push_prepend - strv_consume_prepend --- src/test/test-strv.c | 39 +++ 1 file changed, 39 insertions(+) diff --git a/src/test/test-strv.c b/src/test/test-strv.c index bbfe306..915fa46 100644 ---

[systemd-devel] [PATCH] tests: add tests for fileio.c

2014-10-30 Thread Ronny Chevalier
add tests for the following functions: - write_string_file_no_create - load_env_file_pairs --- src/test/test-fileio.c | 63 ++ 1 file changed, 63 insertions(+) diff --git a/src/test/test-fileio.c b/src/test/test-fileio.c index 7e7b4ac..a713abd

Re: [systemd-devel] remote-fs ordering, iSCSI and _netdev

2014-10-30 Thread Chris Leech
On Thu, Oct 30, 2014 at 12:10:16PM +0100, Karel Zak wrote: On Tue, Oct 28, 2014 at 02:29:35AM +0100, Lennart Poettering wrote: On Mon, 27.10.14 14:10, Chris Leech (cle...@redhat.com) wrote: So for any mounts to remote block devices (unlike remote file system protocols which are

Re: [systemd-devel] [PATCH] sd-dhcp-client: clean up raw socket sd_event_source when creating new UDP socket

2014-10-30 Thread Tom Gundersen
On Thu, Oct 30, 2014 at 11:03 PM, Dave Reisner d...@falconindy.com wrote: On Thu, Oct 30, 2014 at 09:39:40PM +0100, Tom Gundersen wrote: Applied. Thanks! Does this address: https://bugs.freedesktop.org/show_bug.cgi?id=84661 ?? Yes, it should, closed bug now. Cheers, Tom

Re: [systemd-devel] remote-fs ordering, iSCSI and _netdev

2014-10-30 Thread Chris Leech
On Tue, Oct 28, 2014 at 06:41:32AM +0300, Andrei Borzenkov wrote: В Mon, 27 Oct 2014 14:10:47 -0700 Chris Leech cle...@redhat.com пишет: But there are two cases that are problematic, adding entries to fstab at runtime and manually mounting without adding to fstab (while still using the

Re: [systemd-devel] remote-fs ordering, iSCSI and _netdev

2014-10-30 Thread Chris Leech
On Tue, Oct 28, 2014 at 01:57:06AM +0100, Zbigniew Jędrzejewski-Szmek wrote: On Mon, Oct 27, 2014 at 02:10:47PM -0700, Chris Leech wrote: ... If there's no matching mount unit from fstab-generator, one gets created dynamically when the fs is mounted by monitoring /proc/self/mountinfo.

Re: [systemd-devel] [PATCH v3] Bootchart: use /proc/pid/mountinfo for root bdev

2014-10-30 Thread Zbigniew Jędrzejewski-Szmek
On Thu, Oct 30, 2014 at 05:45:53PM +0300, Timofey Titovets wrote: Good time of day, list. I have try to fix Fixme in svg.c: /* FIXME: this works only in the simple case */ By default function try to get only root=/dev/* I also attach patch. Thanks. v2: Rewrited with use

[systemd-devel] [PATCH] shared/install: avoid prematurely rejecting missing units

2014-10-30 Thread Dave Reisner
f7101b7368df copied some logic to prevent enabling masked units, but also added a check which causes attempts to enable templated units to fail. Since we know the logic beyond this check will properly handle units which truly do not exist, we can rely on the unit file state comparison to suffice

Re: [systemd-devel] [PATCH] sd-dhcp-client: clean up raw socket sd_event_source when creating new UDP socket

2014-10-30 Thread Dave Reisner
On Thu, Oct 30, 2014 at 09:39:40PM +0100, Tom Gundersen wrote: Applied. Thanks! But not pushed? On Thu, Oct 30, 2014 at 8:23 PM, Dan Williams d...@redhat.com wrote: The raw socket sd_event_source used for DHCP server solicitations was simply dropped on the floor when creating the new UDP

Re: [systemd-devel] remote-fs ordering, iSCSI and _netdev

2014-10-30 Thread Zbigniew Jędrzejewski-Szmek
On Thu, Oct 30, 2014 at 03:09:25PM -0700, Chris Leech wrote: On Tue, Oct 28, 2014 at 01:57:06AM +0100, Zbigniew Jędrzejewski-Szmek wrote: On Mon, Oct 27, 2014 at 02:10:47PM -0700, Chris Leech wrote: ... If there's no matching mount unit from fstab-generator, one gets created

Re: [systemd-devel] [PATCH] shared/install: avoid prematurely rejecting missing units

2014-10-30 Thread Zbigniew Jędrzejewski-Szmek
On Thu, Oct 30, 2014 at 08:28:14PM -0400, Dave Reisner wrote: f7101b7368df copied some logic to prevent enabling masked units, but also added a check which causes attempts to enable templated units to fail. Since we know the logic beyond this check will properly handle units which truly do not

Re: [systemd-devel] starting Oracle with systemd

2014-10-30 Thread Andrei Borzenkov
В Fri, 31 Oct 2014 08:11:54 +1100 Andrew Barnes barnes...@gmail.com пишет: On 31 Oct, 2014 6:35 AM, Andrei Borzenkov arvidj...@gmail.com wrote: В Thu, 30 Oct 2014 20:06:55 +0100 Lennart Poettering lenn...@poettering.net пишет: I have no idea how Oracle works, and the above it too

Re: [systemd-devel] remote-fs ordering, iSCSI and _netdev

2014-10-30 Thread Andrei Borzenkov
В Fri, 31 Oct 2014 01:53:26 +0100 Zbigniew Jędrzejewski-Szmek zbys...@in.waw.pl пишет: On Thu, Oct 30, 2014 at 03:09:25PM -0700, Chris Leech wrote: On Tue, Oct 28, 2014 at 01:57:06AM +0100, Zbigniew Jędrzejewski-Szmek wrote: On Mon, Oct 27, 2014 at 02:10:47PM -0700, Chris Leech wrote:

Re: [systemd-devel] remote-fs ordering, iSCSI and _netdev

2014-10-30 Thread Andrei Borzenkov
В Thu, 30 Oct 2014 15:15:03 -0700 Chris Leech cle...@redhat.com пишет: On Tue, Oct 28, 2014 at 06:41:32AM +0300, Andrei Borzenkov wrote: В Mon, 27 Oct 2014 14:10:47 -0700 Chris Leech cle...@redhat.com пишет: But there are two cases that are problematic, adding entries to fstab at

Re: [systemd-devel] [PATCH v3] Bootchart: use /proc/pid/mountinfo for root bdev

2014-10-30 Thread Timofey Titovets
2014-10-31 3:06 GMT+03:00 Zbigniew Jędrzejewski-Szmek zbys...@in.waw.pl: On Thu, Oct 30, 2014 at 05:45:53PM +0300, Timofey Titovets wrote: Good time of day, list. I have try to fix Fixme in svg.c: /* FIXME: this works only in the simple case */ By default function try to get only root=/dev/*