Re: [systemd-devel] How to delete device units presented in systemd-analyze plot.

2013-08-12 Thread Hoyer, Marko (ADITG/SW2)
Hi Tony, to the green box and the comment about insmod: - Did you compile the kernel module or the whole kernel on your own? Maybe you missed stripping the kernel modules. Unstripped kernel modules can be pretty large and hence might need a long time to load depending on the storage connected.

[systemd-devel] User journal corrupted or uncleanly shut down, renaming and replacing

2013-08-12 Thread Pedro Francisco
Hi, Systemd complains frequently about corrupted journal. Do note: I don't have the default mount options. $ dmesg |grep corrupte [ 51.766346] systemd-journald[181]: File /var/log/journal/06fde5edd4974fa9a343215f093f5aae/user-42.journal corrupted or uncleanly shut down, renaming and replacing.

Re: [systemd-devel] User journal corrupted or uncleanly shut down, renaming and replacing

2013-08-12 Thread Frederick Grose
On Mon, Aug 12, 2013 at 9:58 AM, Pedro Francisco wrote: > Hi, > Systemd complains frequently about corrupted journal. Do note: I don't > have the default mount options. > > $ dmesg |grep corrupte > [ 51.766346] systemd-journald[181]: File > /var/log/journal/06fde5edd4974fa9a343215f093f5aae/user-

[systemd-devel] stop+start of nspawn scope aborts: 's->state == SCOPE_DEAD'

2013-08-12 Thread Marti Raudsepp
Hi list, I hit a bug today in the "scope" unit support. Reproducible like this: systemd-nspawn -bD /srv/subarch systemctl stop machine-subarch.scope systemctl start machine-subarch.scope I wasn't sure whether "start" would do anything or not so I gave it a shot, but it turned out to crash the ho

[systemd-devel] [PATCH] zsh_completion: Correctly display journal fields

2013-08-12 Thread William Giokas
--- shell-completion/zsh/_journalctl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell-completion/zsh/_journalctl b/shell-completion/zsh/_journalctl index 61983d5..32708f5 100644 --- a/shell-completion/zsh/_journalctl +++ b/shell-completion/zsh/_journalctl @@ -19,7 +19,7 @@

[systemd-devel] [PATCH v2] zsh_completion: Correctly display journal fields

2013-08-12 Thread William Giokas
--- Just a slightly edited version that functions MUCH nicer. Now, on top of putting in the equals sign, when you type in: journalctl _EXE= it automagically calles _journal_fields with _EXE as an argument. Same with every other value you could put in there. Some examples: wgiokas@wst420:~ % j

[systemd-devel] [PATCH] zsh_completion: Move helper function to autoload

2013-08-12 Thread William Giokas
_hosts_or_user_at_host was used by 6 different completions, and previously was in all 6 of those files. I moved it out to its own file, _sd_hosts_or_user_at_host. This will be autoloaded for use in other completion functions. It also allows external completions to use this function by simply callin

[systemd-devel] [PATCH] [RFC] Make reboot to support additional command

2013-08-12 Thread WaLyong Cho
From: WaLyong Cho reboot syscall can be performed with additional argument. In some of system, this functionality can be useful to ask next boot mode to bootloader. --- src/systemctl/systemctl.c | 28 +++- 1 file changed, 23 insertions(+), 5 deletions(-) diff --git a/s

[systemd-devel] [PATCH] systemd.unit(5): clarify the Description= contents

2013-08-12 Thread Michael Stapelberg
Hi, Lennart, as discussed during DebConf earlier today, this patch clarifies what should go into the Description= field. Please merge it :). -- Best regards, Michael>From fef7d55294b3b407eb6513a31f4087ff84a1f20e Mon Sep 17 00:00:00 2001 From: Michael Stapelberg Date: Mon, 12 Aug 2013 21:56:52 +

[systemd-devel] brightness in tmpfiles.d

2013-08-12 Thread Christian Hesse
Hello everybody, I have a file /etc/tmpfiles.d/brightness.conf containing this line: w /sys/class/backlight/acpi_video0/brightness - - - - 10 This used to set the brightness on boot, but broke lately. The path is correct, so I assume this is a race condition. Any chance to get this work again? -

Re: [systemd-devel] brightness in tmpfiles.d

2013-08-12 Thread Mantas Mikulėnas
On Mon, Aug 12, 2013 at 11:40 PM, Christian Hesse wrote: > Hello everybody, > > I have a file /etc/tmpfiles.d/brightness.conf containing this line: > > w /sys/class/backlight/acpi_video0/brightness - - - - 10 > > This used to set the brightness on boot, but broke lately. The path is > correct, so

Re: [systemd-devel] brightness in tmpfiles.d

2013-08-12 Thread Kay Sievers
On Mon, Aug 12, 2013 at 11:27 PM, Mantas Mikulėnas wrote: > On Mon, Aug 12, 2013 at 11:40 PM, Christian Hesse wrote: >> Hello everybody, >> >> I have a file /etc/tmpfiles.d/brightness.conf containing this line: >> >> w /sys/class/backlight/acpi_video0/brightness - - - - 10 >> >> This used to set

Re: [systemd-devel] brightness in tmpfiles.d

2013-08-12 Thread Mantas Mikulėnas
On Tue, Aug 13, 2013 at 12:54 AM, Kay Sievers wrote: > Remembering brightness sounds pretty useful for everyone. In the > longer run, it should probably be handled like ALSA restore for the > sound volume, with a service that writes it to /var/lib and reads it > from there ... I guess this is har

[systemd-devel] Hackfest at Linux Plumbers Conference?

2013-08-12 Thread David Strauss
Are there any plans? -- David Strauss | da...@davidstrauss.net | +1 512 577 5827 [mobile] ___ systemd-devel mailing list systemd-devel@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/systemd-devel

[systemd-devel] [PATCH 1/2] zsh_completion: Allow specifying multiple arguments

2013-08-12 Thread William Giokas
Some of the options in systemd can take multiple arguments, such as systemctl's --type option. Previously, you would only be able to complete a single type after the -t, but now zsh will continue to complete the types, separating them by commas. systemd-inhibit's --what command has colon (:), and

[systemd-devel] [PATCH 2/2] zsh_completion: machinectl properties can be stacked

2013-08-12 Thread William Giokas
--- shell-completion/zsh/_machinectl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell-completion/zsh/_machinectl b/shell-completion/zsh/_machinectl index aa568e5..abdf46f 100644 --- a/shell-completion/zsh/_machinectl +++ b/shell-completion/zsh/_machinectl @@ -35,7 +35,7 @@