[systemd-devel] [PATCH] Hook more properties for transient units

2015-09-10 Thread Gabriel de Perthuis
systemd-run can now launch units with PrivateTmp, PrivateDevices, PrivateNetwork, NoNewPrivileges set. --- src/core/dbus-execute.c | 54 ++--- src/shared/bus-util.c | 3 ++- 2 files changed, 22 insertions(+), 35 deletions(-) diff --git

[systemd-devel] [PATCH v2] bootchart: ship a configuration that will boot without sysvinit compat

2014-12-28 Thread Gabriel de Perthuis
bootchart defaults to chaining to /sbin/init, which is sensible, but in a pure systemd environment (without systemd-sysvinit) will make the machine unbootable. Change the default through /etc/systemd/bootchart.conf. Keep the /sbin/init default in the source code, in case some users rely on that.

[systemd-devel] [PATCH] bootchart: ship a configuration that will boot without sysvinit compat

2014-12-27 Thread Gabriel de Perthuis
bootchart defaults to chaining to /sbin/init, which is sensible, but in a pure systemd environment (without systemd-sysvinit) will make the machine unbootable. Change the default through /etc/systemd/bootchart.conf. Keep the /sbin/init default in the source code, in case some users rely on that.

[systemd-devel] [PATCH] blkid: Warn when rejecting a superblock with a bad csum

2014-12-12 Thread Gabriel de Perthuis
Bump libblkid requirement from 2.20 to 2.24. util-linux 2.25 is actually required since fdbbad981cc5da8bb4ed7e9b6646e7a114745ec5 --- configure.ac | 2 +- src/udev/udev-builtin-blkid.c | 13 - 2 files changed, 13 insertions(+), 2 deletions(-) diff --git

Re: [systemd-devel] [HEADSUP] What to backport?

2013-09-13 Thread Gabriel de Perthuis
-- You need to pull the notes from the git repo using a command like the following: $ git fetch fetch origin refs/notes/*:refs/notes/* I added an alias to my ~/.gitconfig for this: [alias] pullnotes = fetch origin refs/notes/*:refs/notes/* That way I can

[systemd-devel] [PATCH] systemd-analyze: Show critical chains for listed units

2013-06-11 Thread Gabriel de Perthuis
--- src/analyze/systemd-analyze.c | 18 -- 1 file changed, 12 insertions(+), 6 deletions(-) Nb: it might be even better to show the critical chain of a fictive unit that would depend on everything in argv, but that's more complicated to implement. diff --git