Re: [systemd-devel] systemd fdo page formatting changed?

2013-05-20 Thread Zbigniew Jędrzejewski-Szmek
On Sun, May 19, 2013 at 08:13:07PM +0400, Andrey Borzenkov wrote: > According to web page last change is yesterday (18 May). It is quite > different from what I remember. To start with, screenshot is on the > left, not on the right. Then all lists are without line breaks that > makes it near to imp

Re: [systemd-devel] System units packaging and rpmlint

2013-05-20 Thread T.C. Hollingsworth
On Sat, May 18, 2013 at 2:44 PM, Michael Scherer wrote: > So I planned to warn if the unit are directly in /lib, but I know there > is some distribution that didn't choose this path yet. So when /usr is > not merged, what is the canonical location ( ie, for Opensuse, Mandriva, > since they are bot

Re: [systemd-devel] System units packaging and rpmlint

2013-05-20 Thread Mathieu Bridon
On Sun, 2013-05-19 at 11:21 +0200, Michael Scherer wrote: > Le samedi 18 mai 2013 à 23:50 -0700, David Strauss a écrit : > > On Sat, May 18, 2013 at 2:44 PM, Michael Scherer wrote: > > > - we should avoid as much as possible to use Type=forking when we can > > > avoid it. [... snip ...] > > That's

Re: [systemd-devel] [PATCH] [Fix] Do not handle SIGKILL since we can not

2013-05-20 Thread Yang Chengwei
On Mon, May 20, 2013 at 10:37:36AM -0700, Kok, Auke-jan H wrote: > On Mon, May 20, 2013 at 12:22 AM, Chengwei Yang > wrote: > > This is a minor fix because it's not a major issue, this fix just avoid > > to get EINVAL error from sigaction(2). > > > > There are two signals can not handled at user

Re: [systemd-devel] [PATCH] [Fix] Do not handle SIGKILL since we can not

2013-05-20 Thread Kok, Auke-jan H
On Mon, May 20, 2013 at 12:22 AM, Chengwei Yang wrote: > This is a minor fix because it's not a major issue, this fix just avoid > to get EINVAL error from sigaction(2). > > There are two signals can not handled at user space, SIGKILL and > SIGSTOP even we're PID 1, trying to handle these two sign

[systemd-devel] shell / systemd config files

2013-05-20 Thread James Buren
Files such as /etc/machine-info have an incompatibility with systemd in regards to how it writes and/or parses them. Take the following sample: PRETTY_HOSTNAME="\'\"\$\`\\" Systemd will translate this to: '"$`\ However, the shells bash and dash will translate this to: \'"$`\ So, it appears to b

[systemd-devel] [PATCH] systemctl: honor "--no-legend" in 'list-sockets'

2013-05-20 Thread Mantas Mikulėnas
--- src/systemctl/systemctl.c | 22 +- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/src/systemctl/systemctl.c b/src/systemctl/systemctl.c index 3cca861..e6bd855 100644 --- a/src/systemctl/systemctl.c +++ b/src/systemctl/systemctl.c @@ -655,11 +655,12 @@ static

[systemd-devel] [PATCH] [Fix] Do not handle SIGKILL since we can not

2013-05-20 Thread Chengwei Yang
This is a minor fix because it's not a major issue, this fix just avoid to get EINVAL error from sigaction(2). There are two signals can not handled at user space, SIGKILL and SIGSTOP even we're PID 1, trying to handle these two signals will get EINVAL error. There are two kinds of systemd instan