Re: [systemd-devel] systemd hibernator generator does not function on default Fedora install

2016-05-14 Thread Andrei Borzenkov
15.05.2016 06:36, Chris Murphy пишет: > On Thu, May 12, 2016 at 12:38 PM, James Hogarth > wrote: >> >> On 2 May 2016 18:58, "James Hogarth" wrote: >>> >>> >>> On 24 Apr 2016 21:31, "poma" wrote: On 20.04.2016 22:42, Chris Murphy wrote: > On Wed, Apr 20, 2016 at 1:50 PM, Tobias Hun

Re: [systemd-devel] systemd hibernator generator does not function on default Fedora install

2016-05-14 Thread Chris Murphy
On Thu, May 12, 2016 at 12:38 PM, James Hogarth wrote: > > On 2 May 2016 18:58, "James Hogarth" wrote: >> >> >> On 24 Apr 2016 21:31, "poma" wrote: >> > >> > On 20.04.2016 22:42, Chris Murphy wrote: >> > > On Wed, Apr 20, 2016 at 1:50 PM, Tobias Hunger >> > > wrote: >> > >> > [...] >> > >> > >

[systemd-devel] SuccessExitStatus not correctly refelected in "systemctl status"

2016-05-14 Thread Reindl Harald
unit has "SuccessExitStatus=1" and correctly is not in failed-state but "systemctl status" is plain wrong: Process: 19572 ExecStart=/usr/share/spamassassin/sa-update.cron (code=exited, status=1/FAILURE) signature.asc Description: OpenPGP digital signature

Re: [systemd-devel] systemctl how to stop a service

2016-05-14 Thread Reindl Harald
Am 14.05.2016 um 10:55 schrieb liuxueping: The result of "ps aux" before sleep 5 shows: root 6698 0.0 0.0 0 0 ?Ds 08:45 0:00 [ntpd] After 5 seconds,there is no ntpd process in system. the stop status is 0,the execution of the stop command is successful,the PID of the

[systemd-devel] systemctl how to stop a service

2016-05-14 Thread liuxueping
Hi: I have a test in arm64,my test case try to start/stop a ntp service frequently,like that: #!/bin/bash i=0 while [ 1 ];do echo "$((i++))" systemctl restart ntpd & kill -9 $! sleep 10 systemctl stop ntpd echo "stop status:$?" systemctl start ntpd ps aux >> file sle