Re: [systemd-devel] Automatic Reboot Protocol [SOLVED]

2013-05-30 Thread Kok, Auke-jan H
On Thu, May 30, 2013 at 9:34 PM, wrote: > Simple "at" did the trick from nightjanitor.sh > > echo "systemctl start reboot.target" | at now + 3 min > > If a more purist systemd method exists, I'd love to see it. You can likely create a timer unit, and start that once... Auke __

Re: [systemd-devel] Automatic Reboot Protocol [SOLVED]

2013-05-30 Thread systemdkiosk
Simple "at" did the trick from nightjanitor.sh echo "systemctl start reboot.target" | at now + 3 min If a more purist systemd method exists, I'd love to see it. footnote: "at" install for Arch Linux, pkg not present by default, your distro may be similar $ sudo pacman -S at $ sudo systemctl

Re: [systemd-devel] [PATCH] core: read "debug" from kernel commandline and set log level and target

2013-05-30 Thread Zbigniew Jędrzejewski-Szmek
On Wed, May 29, 2013 at 02:09:56PM +0200, Lukas Nykryn wrote: > --- > TODO| 3 --- > man/kernel-command-line.xml | 12 > man/systemd.xml | 16 > src/core/main.c | 4 > 4 files changed, 32 insertions(+), 3 deletion

Re: [systemd-devel] [PATCH] systemctl: add commands set-default and get-default

2013-05-30 Thread Zbigniew Jędrzejewski-Szmek
On Tue, May 28, 2013 at 11:05:48AM +0200, Vaclav Pavlin wrote: > From: Václav Pavlín > > systemctl set-default NAME links the default.target to the given unit, > get-default prints out the path to the currently set default target. Applied, with the following tweaks: - changed get-default to prin

Re: [systemd-devel] [PATCH] systemctl: add command set-log-level

2013-05-30 Thread Zbigniew Jędrzejewski-Szmek
On Wed, May 29, 2013 at 04:08:11PM +0200, Vaclav Pavlin wrote: > From: Václav Pavlín > > Command changes current log level > --- > man/systemctl.xml | 8 > src/systemctl/systemctl.c | 48 > +++ > 2 files changed, 56 insertions(+) >

[systemd-devel] [PATCH v2] journalctl: Add support for showing messages from a previous boot

2013-05-30 Thread Jan Janssen
The format to specify the boot ID is inspired by git's ^n syntax and it even allows to look into the future. Unfortunately, to get a chronological list of boot IDs, we need search through the journal. sd_journal_enumerate_unique() doesn't help us here, because order of returned values is undefined

Re: [systemd-devel] Build option to disable systemd-tmpfiles services

2013-05-30 Thread Tom Gundersen
On Thu, May 30, 2013 at 9:28 AM, Umut Tezduyar wrote: > Our embedded system doesn't utilize systemd-tmpfiles services. We have the > option of masking all systemd-tmpfiles related units but I was wondering if > project would be open accepting a patch to disable systemd-tmpfiles during > build time

[systemd-devel] Build option to disable systemd-tmpfiles services

2013-05-30 Thread Umut Tezduyar
Hi, Our embedded system doesn't utilize systemd-tmpfiles services. We have the option of masking all systemd-tmpfiles related units but I was wondering if project would be open accepting a patch to disable systemd-tmpfiles during build time. Thanks ___