Re: [systemd-devel] Restoring systemd-ui?

2025-01-02 Thread Ben Boeckel
On Thu, Jan 02, 2025 at 15:05:52 +0100, Lennart Poettering wrote: > So I don't think I am the right person to maintain/review that stuff > anyore (haven't done UI stuff in a decade). But if you already prepped > those patches, and think you can invest a bit of time every now and > then to maintain

Re: [systemd-devel] Restoring systemd-ui?

2024-12-23 Thread Ben Boeckel
On Thu, Dec 05, 2024 at 08:11:50 +0100, Ben Boeckel wrote: > At $DAYJOB, we started migrating to 2FA for VPN which has caused me to > look at how I can get the system service to provoke my user session to > ask me a prompt for the password. Of course, systemd has a solution for

[systemd-devel] Restoring systemd-ui?

2024-12-04 Thread Ben Boeckel
Hi, At $DAYJOB, we started migrating to 2FA for VPN which has caused me to look at how I can get the system service to provoke my user session to ask me a prompt for the password. Of course, systemd has a solution for it that: https://systemd.io/PASSWORD_AGENTS/ which I *can* use, but I need

Re: [systemd-devel] Users and system namespaces

2014-01-24 Thread Ben Boeckel
On Fri, Jan 24, 2014 at 11:07:18 +0100, Lennart Poettering wrote: > On Thu, 23.01.14 13:54, Ben Boeckel (maths...@gmail.com) wrote: > > As I mused on LWN[1] recently, I was wondering whether it was possible > > to have user units be able to hook into namespaces (namely the > >

Re: [systemd-devel] Users and system namespaces

2014-01-23 Thread Ben Boeckel
On Thu, Jan 23, 2014 at 13:21:30 -0800, David Timothy Strauss wrote: > I think the intention for your needs (a lot of namespace sharing for a > family of services) would be to run another systemd in a namespece > using something like systemd-nspawn, libvirt-lxc, LXC, a user session, > or similar. B

Re: [systemd-devel] Users and system namespaces

2014-01-23 Thread Ben Boeckel
On Thu, Jan 23, 2014 at 11:43:52 -0800, David Timothy Strauss wrote: > To join a namespace, you'll need a file descriptor for the namespace > so you can run setns() [1]. It's possible to share a file descriptor > by keeping it open while forking (which is how socket activation > works) or passing i

[systemd-devel] Users and system namespaces

2014-01-23 Thread Ben Boeckel
Hi, As I mused on LWN[1] recently, I was wondering whether it was possible to have user units be able to hook into namespaces (namely the PrivateNetwork= and PrivateTmp= from systemd.exec(5) and more if other namespacing options are added in the future). I'm assuming that is not possible now to u

Re: [systemd-devel] [PATCH 0/6] Add 'lock' action for hardware buttons

2012-10-28 Thread Ben Boeckel
On Sun, Oct 28, 2012 at 12:29:36 +0100, Lennart Poettering wrote: > On Sat, 27.10.12 03:08, Ben Boeckel (maths...@gmail.com) wrote: > > I was surprised to find that my laptops were suspending when the lid was > > closed after updating to Fedora 18 since I find it a misf

Re: [systemd-devel] [PATCH 5/6] NEWS: add a note

2012-10-27 Thread Ben Boeckel
On Sat, Oct 27, 2012 at 23:37:23 +0200, Lennart Poettering wrote: > Uh? 195 is already released, this stuff should not be added to the > CHANGES list for 195, but put into a new section for 196. Sorry about that, I'm used to bumping the release in the configuration files right after a release so t

[systemd-devel] [PATCH 6/6] NEWS: fix a typo

2012-10-27 Thread Ben Boeckel
--- NEWS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NEWS b/NEWS index da0b329..01c7362 100644 --- a/NEWS +++ b/NEWS @@ -62,7 +62,7 @@ CHANGES WITH 195: "reload" verb, and only then make this available as "systemctl reload". -* "systemctl sta

[systemd-devel] [PATCH 5/6] NEWS: add a note

2012-10-27 Thread Ben Boeckel
Pitt, Michael Olbrich, Michael Stapelberg, Michal Schmidt, Sebastian Ott, Thomas Bächler, Umut Tezduyar, Will Woods, Wulf C. Krueger, Zbigniew -Jędrzejewski-Szmek, Сковорода Никита Андреевич +Jędrzejewski-Szmek, Сковорода Никита Андреевич, Ben Boeckel CHANGES WIT

[systemd-devel] [PATCH 4/6] logind: add inhibit support for a system-wide lock

2012-10-27 Thread Ben Boeckel
--- src/login/logind-dbus.c| 7 --- src/login/logind-inhibit.c | 6 +- src/login/logind-inhibit.h | 3 ++- src/login/org.freedesktop.login1.policy.in | 10 ++ 4 files changed, 21 insertions(+), 5 deletions(-) diff --git a/src/

[systemd-devel] [PATCH 3/6] dbus: add a signal before locking the system

2012-10-27 Thread Ben Boeckel
--- src/login/logind-dbus.c | 6 +- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/login/logind-dbus.c b/src/login/logind-dbus.c index a7647e3..5417e3b 100644 --- a/src/login/logind-dbus.c +++ b/src/login/logind-dbus.c @@ -197,6 +197,9 @@ " \n"

[systemd-devel] [PATCH 2/6] logind: add lock action for button triggers

2012-10-27 Thread Ben Boeckel
--- man/logind.conf.xml | 5 +++-- src/login/logind-button.c | 9 ++--- src/login/logind-button.h | 1 + 3 files changed, 10 insertions(+), 5 deletions(-) diff --git a/man/logind.conf.xml b/man/logind.conf.xml index 3d83d2c..10ea9e8 100644 --- a/man/logind.conf.xml +++ b/man/logind.conf

[systemd-devel] [PATCH 1/6] units: add target for locking all active sessions

2012-10-27 Thread Ben Boeckel
--- Makefile.am | 3 +++ man/systemd.special.xml | 8 units/.gitignore | 1 + units/lock.target | 14 ++ units/systemd-lock.service.in | 17 + 5 files changed, 43 insertions(+) create mode 100644 units/lock.t

[systemd-devel] [PATCH 0/6] Add 'lock' action for hardware buttons

2012-10-27 Thread Ben Boeckel
ave my setup available to test. Feedback greatly appreciated. --Ben (I'm not subscribed to the list) Ben Boeckel (6): units: add target for locking all active sessions logind: add lock action for button triggers dbus: add a signal before locking the system logind: add inhibit support f