Re: [systemd-devel] [PATCH] pager: remove --no-init setting from LESS options

2014-02-10 Thread Andrey Borzenkov
On Tue, Feb 11, 2014 at 9:15 AM, Mantas Mikulėnas wrote: > On Feb 11, 2014 7:02 AM, "Jason A. Donenfeld" wrote: >> >> I use konsole. It has a nice feature that when the scrollbars have been >> disabled -- like in the case of a full-console app like vim or less -- >> it makes the mouse wheel send

Re: [systemd-devel] [PATCH] pager: remove --no-init setting from LESS options

2014-02-10 Thread Mantas Mikulėnas
On Feb 11, 2014 7:02 AM, "Jason A. Donenfeld" wrote: > > I use konsole. It has a nice feature that when the scrollbars have been > disabled -- like in the case of a full-console app like vim or less -- > it makes the mouse wheel send up and down key strokes, so that > scrolling happens. It's reall

[systemd-devel] [PATCH] pager: remove --no-init setting from LESS options

2014-02-10 Thread Jason A. Donenfeld
I use konsole. It has a nice feature that when the scrollbars have been disabled -- like in the case of a full-console app like vim or less -- it makes the mouse wheel send up and down key strokes, so that scrolling happens. It's really nice. I open up less, and then I can scroll through it using t

Re: [systemd-devel] [PATCH] sd-bus: export sd_bus_call{, _async, _async_cancel}

2014-02-10 Thread Zbigniew Jędrzejewski-Szmek
On Mon, Feb 10, 2014 at 04:46:22PM +0100, David Herrmann wrote: > The .sym file somehow lacks these declarations, so add these. > You have to > run "make clean" to make sure the sym-test runs fine afterwards. That's a bit surprising. test-libsystemd-sym has test-libsystemd-sym.c in sources, which

Re: [systemd-devel] [PATCH] 60-persistent-storage.rules: add NVMe disks and partitions

2014-02-10 Thread Kay Sievers
On Mon, Feb 10, 2014 at 5:01 PM, wrote: > Although NVMe PCIe SSD are not named sd*, they can be queried with > scsi_id and handled equally. > +# NVMe > +KERNEL=="nvme?n?", ENV{ID_SERIAL}!="?*", IMPORT{program}="scsi_id --export > --whitelisted -d $devnode", ENV{ID_BUS}="scsi" nvme?n? seems wr

Re: [systemd-devel] [PATCH] sd-bus: export sd_bus_call{, _async, _async_cancel}

2014-02-10 Thread David Herrmann
Hi On Mon, Feb 10, 2014 at 4:46 PM, David Herrmann wrote: > The .sym file somehow lacks these declarations, so add these. You have to > run "make clean" to make sure the sym-test runs fine afterwards. > --- > Hi > > No idea whether these were intentionally left out. If not, I can push this > pat

Re: [systemd-devel] systemd-networkd + VLANs problems

2014-02-10 Thread Tom Gundersen
On Sat, Feb 8, 2014 at 8:39 AM, Oleksii Shevchuk wrote: > So, I try to use VLANs feature introduced to systemd-networkd/git two > weeks ago (54abf461d6b10dc270c4bb2aeac65f240ff1c5cd). > > I want to have next layout: > > Links: > > 1. Eth > 1.1 Vlan1 > 1.2 Vlan2 (Ring1) > 2. Bridge (Ring0) > 2.1 Vl

[systemd-devel] [PATCH] 60-persistent-storage.rules: add NVMe disks and partitions

2014-02-10 Thread harald
From: Harald Hoyer Although NVMe PCIe SSD are not named sd*, they can be queried with scsi_id and handled equally. --- rules/60-persistent-storage.rules | 5 + 1 file changed, 5 insertions(+) diff --git a/rules/60-persistent-storage.rules b/rules/60-persistent-storage.rules index 154ffd9..

[systemd-devel] [BUG] sd-bus: ObjectManager.InterfacesAdded() and fdo.DBus interfaces

2014-02-10 Thread David Herrmann
Hi I stumbled over this when trying to use the ObjectManager interface with sd-bus. Whenever I add new objects, I'm supposed to advertise them with all supported interfaces. However, sd-bus implements the org.freedesktop.DBus.XY interfaces internally so I cannot add vtables for it. This means, sd_

[systemd-devel] [PATCH] sd-bus: export sd_bus_call{, _async, _async_cancel}

2014-02-10 Thread David Herrmann
The .sym file somehow lacks these declarations, so add these. You have to run "make clean" to make sure the sym-test runs fine afterwards. --- Hi No idea whether these were intentionally left out. If not, I can push this patch myself. A short ACK/NACK is enough. Thanks David src/libsystemd/libs

Re: [systemd-devel] [PATCH v2 0/7] logind: close races on user and session states

2014-02-10 Thread Djalal Harouni
On Sat, Feb 08, 2014 at 05:00:57PM +0100, Djalal Harouni wrote: > On Sat, Feb 08, 2014 at 12:39:25AM +0100, Zbigniew Jędrzejewski-Szmek wrote: > > On Thu, Feb 06, 2014 at 09:37:13PM +0100, Djalal Harouni wrote: > > > Summary: > > > Currently logind will not clear sessions on logout. The bug is conf

Re: [systemd-devel] [PATCH] fstab-generator: Create fsck-root symlink with correct path

2014-02-10 Thread Tom Gundersen
On Sun, Feb 9, 2014 at 1:07 PM, Colin Guthrie wrote: > > > Not sure if this should really check for /etc... units, but other generators > e.g. the rc-local doesn't do that so I presume it's OK like this. > Looks good to me like this. Applied. Thanks! Cheers, Tom

Re: [systemd-devel] [PATCH] nspawn: require /etc/os-release only for init

2014-02-10 Thread Tom Gundersen
On Sun, Feb 9, 2014 at 10:49 AM, Vincent Batts wrote: > /etc/os-release is expected for the case for booting a full system, and > need not be required for thin container execution. Applied manually, so please verify that it is as expected. Thanks for the patch! Cheers, Tom > src/nspawn/nspawn

[systemd-devel] [PATCH 2/2] build-sys: add check-includes build target and script

2014-02-10 Thread Karel Zak
--- Makefile.am | 8 tools/check-includes.pl | 23 +++ 2 files changed, 31 insertions(+) create mode 100755 tools/check-includes.pl diff --git a/Makefile.am b/Makefile.am index e3c1145..09a827b 100644 --- a/Makefile.am +++ b/Makefile.am @@ -4937,6 +4937,

[systemd-devel] [PATCH 1/2] build-sys: move python helpers to tools directory

2014-02-10 Thread Karel Zak
Note that make-man-rules.py is missing in EXTRA_DIST=, this patch fixes this mistake too. --- Makefile.am | 13 +- make-directive-index.py | 320 -- make-man-index.py | 136 -- make-man-rules.py