Re: [systemd-devel] encrypted swap

2013-03-02 Thread Stefan G. Weichinger
Am 01.03.2013 19:39, schrieb Lennart Poettering: Can you provide the log where this happens? Boot with systemd.log_level=debug and provide us with the journalctl output around where this problem happens. I put up the output of journalctl -b here:

Re: [systemd-devel] [PATCH] core: reuse the same /tmp, /var/tmp and inaccessible dir

2013-03-02 Thread Michal Sekletar
On Mar 1, 2013, at 3:16 PM, Lennart Poettering lenn...@poettering.net wrote: On Wed, 20.02.13 14:50, Michal Sekletar (msekl...@redhat.com) wrote: All Execs within the service, will get mounted the same /tmp and /var/tmp directories, if service is configured with PrivateTmp=yes. Temporary

Re: [systemd-devel] [PATCH 3/5] tpmfiles: add missing parenthesis

2013-03-02 Thread Michal Sekletar
On Mar 1, 2013, at 10:35 PM, Zbigniew Jędrzejewski-Szmek zbys...@in.waw.pl wrote: Hi Zbigniew, On Fri, Mar 01, 2013 at 06:29:59PM +0100, Lukas Nykryn wrote: --- src/tmpfiles/tmpfiles.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tmpfiles/tmpfiles.c

Re: [systemd-devel] [PATCH 3/5] tpmfiles: add missing parenthesis

2013-03-02 Thread Carlos Silva
On Sat, Mar 2, 2013 at 1:46 PM, Michal Sekletar sekleta...@gmail.comwrote: -if (!i-type == IGNORE_DIRECTORY_PATH || !streq(dent-d_name, p)) { +if (!(i-type == IGNORE_DIRECTORY_PATH || !streq(dent-d_name, p))) { After the change we have:

Re: [systemd-devel] [PATCH 3/5] tpmfiles: add missing parenthesis

2013-03-02 Thread Michal Sekletar
Hi Carlos, I shouldn't use word Agreed, because it seems that it caused some confusion. On Mar 2, 2013, at 3:55 PM, Carlos Silva r3...@r3pek.org wrote: On Sat, Mar 2, 2013 at 1:46 PM, Michal Sekletar sekleta...@gmail.com wrote: -if (!i-type == IGNORE_DIRECTORY_PATH ||

Re: [systemd-devel] [PATCH] bash-completion: split completions and move to new location

2013-03-02 Thread Michael Biebl
2013/3/2 Michael Biebl mbi...@gmail.com: I decided to split up the large completion file instead of using symlinks. The duplication is minimal and by splitting up, the files become much more readable and we only need to actually install those bits which are enabled via --config. One odd thing