systemd doesn't restart a service after crashes
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
| systemd |
Fix Released
|
Unknown
|
||
| systemd (Ubuntu) |
Medium
|
Unassigned | ||
| Xenial |
Medium
|
Dan Streetman | ||
| Bionic |
Medium
|
Dan Streetman | ||
| Disco |
Medium
|
Unassigned |
Bug Description
[impact]
when a service configured to restart crashes, under certain configurations, that service is not correctly restarted.
[test case]
see comment 8
[regression potential]
this changes the job mode of manager-triggered restarts to 'replace' any existing queued job(s), instead of failing if there are queued job(s). thus any regressions would occur when a service fails, that is configured to restart on failure.
[scope]
This is needed only for Xenial and Bionic.
this is fixed with commit 03ff2dc71ecb092
Fixed in Disco with the backported v240 patch from
https:/
[other info]
original description:
---
Affected versions of OS and systemd:
$ cat /etc/issue
Ubuntu 16.04.6 LTS \n \l
$ systemd --version
systemd 229
+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ -LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN
Affected packages:
systemd 229-4ubuntu21.22 and previous versions.
Expected behaviour you didn't see:
Scheduling restart of failed service.
A process crashed by sigabrt and didn't restart.
Description:
The bug was reported to a systemd upstream repository: https:/
The bug was fixed and accepted to the master branch: https:/
Action:
Include this patch to Ubuntu 16.04 and other version of Ubuntu which are supported.
tags: | added: systemd |
affects: | launchpad → systemd (Ubuntu) |
summary: |
- systemd dosn't restart a service after crashes + systemd doesn't restart a service after crashes |
description: | updated |
Vladimir Kononov (voldemark) wrote : | #2 |
Hello, everyone.
Here's a debdiff patch with a backport of upstream patch to xenial branch of systemd.
I've successfully built a modified source and deployed it to some xenial machines — it works as intended, failed service restart correctly, just as intended by Restart=always policy.
Before:
systemd[1]: vpp.service: Main process exited, code=dumped, status=6/ABRT
systemd[1]: Stopped vector packet processing engine.
systemd[1]: vpp.service: Unit entered failed state.
systemd[1]: vpp.service: Failed with result 'core-dump'.
systemd[1]: vpp.service: Service hold-off time over, scheduling restart.
systemd[1]: vpp.service: Failed to schedule restart job: Transaction is destructive.
systemd[1]: vpp.service: Unit entered failed state.
systemd[1]: vpp.service: Failed with result 'resources'.
After:
systemd[1]: vpp.service: Main process exited, code=dumped, status=6/ABRT
systemd[1]: Stopped vector packet processing engine.
systemd[1]: vpp.service: Unit entered failed state.
systemd[1]: vpp.service: Failed with result 'core-dump'.
systemd[1]: vpp.service: Service hold-off time over, scheduling restart.
systemd[1]: Stopped vector packet processing engine.
systemd[1]: Starting vector packet processing engine...
The attachment "debdiff for xenial systemd branch" seems to be a debdiff. The ubuntu-sponsors team has been subscribed to the bug report so that they can review and hopefully sponsor the debdiff. If the attachment isn't a patch, please remove the "patch" flag from the attachment, remove the "patch" tag, and if you are member of the ~ubuntu-sponsors, unsubscribe the team.
[This is an automated message performed by a Launchpad user owned by ~brian-murray, for any issue please contact him.]
tags: | added: patch |
tags: | added: rls-xx-incoming |
Mathew Hodson (mhodson) wrote : | #4 |
Fix is in v241 and later upstream
Changed in systemd (Ubuntu): | |
status: | Confirmed → Fix Committed |
Changed in systemd (Ubuntu): | |
importance: | Undecided → Medium |
Changed in systemd (Ubuntu Xenial): | |
importance: | Undecided → Medium |
Changed in systemd (Ubuntu Bionic): | |
importance: | Undecided → Medium |
tags: |
added: rls-x-incoming removed: rls-xx-incoming |
Changed in systemd (Ubuntu Disco): | |
status: | New → Fix Released |
tags: | added: next-ddstreet |
tags: |
added: bionic ddstreet xenial removed: next-ddstreet |
Changed in systemd (Ubuntu): | |
status: | Fix Committed → Fix Released |
Changed in systemd: | |
status: | Unknown → Fix Released |
Mathew Hodson (mhodson) wrote : | #5 |
Disco is currently marked Fix Released. Which version of the Ubuntu package was it fixed in?
Vladimir Kononov (voldemark) wrote : | #6 |
Mathew, I've just checked the ubuntu-disco branch of systemd — it looks like fix was backported in systemd=
Xenial and Bionic are still affected — any chance of a bugfix landing there?
Dan Streetman (ddstreet) wrote : | #7 |
@voldemark, the testcase given in https:/
tags: | removed: bionic ddstreet systemd xenial |
Changed in systemd (Ubuntu Disco): | |
status: | Fix Released → Incomplete |
Changed in systemd (Ubuntu Bionic): | |
status: | New → Incomplete |
Changed in systemd (Ubuntu Xenial): | |
status: | New → Incomplete |
Changed in systemd (Ubuntu Disco): | |
importance: | Undecided → Medium |
Vladimir Kononov (voldemark) wrote : | #8 |
Here is a minimal example, courtesy of bl33pbl0p from the github issue. I've double-checked it and it is valid test case for this issue:
$ systemctl cat foo
# /etc/systemd/
[Unit]
PartOf=bar.service
[Service]
ExecStart=
RestartSec=0s
Restart=always
$ systemctl cat bar
# /etc/systemd/
[Unit]
BindsTo=foo.service
#Same with or without After=, the window is very small to make a difference.
After=foo.service
[Service]
ExecStart=
$ sudo systemctl status foo bar
● foo.service
Loaded: loaded (/etc/systemd/
Active: active (running) since Wed 2020-02-12 11:38:30 MSK; 36s ago
Main PID: 1614 (sleep)
Tasks: 1
Memory: 172.0K
CPU: 1ms
CGroup: /system.
└─1614 /bin/sleep infinity
Feb 12 11:38:30 pono-mac systemd[1]: Started foo.service.
● bar.service
Loaded: loaded (/etc/systemd/
Active: active (running) since Wed 2020-02-12 11:38:30 MSK; 36s ago
Main PID: 1625 (sleep)
Tasks: 1
Memory: 188.0K
CPU: 972us
CGroup: /system.
└─1625 /bin/sleep infinity
Feb 12 11:38:30 pono-mac systemd[1]: Started bar.service.
$ sudo kill -6 1614
$ sudo systemctl status foo bar
● foo.service
Loaded: loaded (/etc/systemd/
Active: failed (Result: resources) since Wed 2020-02-12 11:39:24 MSK; 2s ago
Process: 1614 ExecStart=
Main PID: 1614 (code=killed, signal=ABRT)
Feb 12 11:39:24 pono-mac systemd[1]: foo.service: Unit entered failed state.
Feb 12 11:39:24 pono-mac systemd[1]: foo.service: Failed with result 'signal'.
Feb 12 11:39:24 pono-mac systemd[1]: foo.service: Service has no hold-off time, scheduling restart.
Feb 12 11:39:24 pono-mac systemd[1]: foo.service: Failed to schedule restart job: Transaction is destructive.
Feb 12 11:39:24 pono-mac systemd[1]: foo.service: Unit entered failed state.
Feb 12 11:39:24 pono-mac systemd[1]: foo.service: Failed with result 'resources'.
● bar.service
Loaded: loaded (/etc/systemd/
Active: inactive (dead) since Wed 2020-02-12 11:39:24 MSK; 2s ago
Process: 1625 ExecStart=
Main PID: 1625 (code=killed, signal=TERM)
Feb 12 11:38:30 pono-mac systemd[1]: Started bar.service.
Feb 12 11:39:24 pono-mac systemd[1]: Stopping bar.service...
Feb 12 11:39:24 pono-mac systemd[1]: Stopped bar.service.
Dan Streetman (ddstreet) wrote : | #9 |
@voldemark, very sorry it seems when I made comment 7 I must have missed your comment 6, so I was unclear on why this was marked as affecting Disco.
I've reproduced and will queue the patch for Bionic.
Changed in systemd (Ubuntu Disco): | |
status: | Incomplete → Fix Released |
Changed in systemd (Ubuntu Bionic): | |
assignee: | nobody → Dan Streetman (ddstreet) |
Changed in systemd (Ubuntu Xenial): | |
assignee: | nobody → Dan Streetman (ddstreet) |
status: | Incomplete → In Progress |
Changed in systemd (Ubuntu Bionic): | |
status: | Incomplete → In Progress |
description: | updated |
description: | updated |
Dan Streetman (ddstreet) wrote : | #10 |
@voldemark can you test with the systemd for Xenial and/or Bionic from this ppa to make sure it's working for you:
Vladimir Kononov (voldemark) wrote : | #11 |
Thank you, Dan.
The PPA build indeed fixes the test case in #8, for Xenial at the very least. Sending SIGABRT to foo.service's process now causes services to restart, just as intended. Here are the logs from the very same Xenial machine, as in #8:
$ sudo apt install systemd=
<...>
$ sudo systemctl daemon-reexec
$ sudo systemctl status foo bar
● foo.service
Loaded: loaded (/etc/systemd/
Active: active (running) since Thu 2020-02-13 11:04:06 MSK; 5min ago
Main PID: 4753 (sleep)
CGroup: /system.
└─4753 /bin/sleep infinity
Feb 13 11:04:06 pono-mac systemd[1]: Started foo.service.
● bar.service
Loaded: loaded (/etc/systemd/
Active: active (running) since Thu 2020-02-13 11:04:06 MSK; 5min ago
Main PID: 4759 (sleep)
CGroup: /system.
└─4759 /bin/sleep infinity
Feb 13 11:04:06 pono-mac systemd[1]: Started bar.service.
$ sudo kill -6 4753
$ sudo systemctl status foo bar
● foo.service
Loaded: loaded (/etc/systemd/
Active: active (running) since Thu 2020-02-13 11:12:05 MSK; 2s ago
Main PID: 11122 (sleep)
Tasks: 1
Memory: 200.0K
CPU: 1ms
CGroup: /system.
└─11122 /bin/sleep infinity
Feb 13 11:12:05 pono-mac systemd[1]: Stopped foo.service.
Feb 13 11:12:05 pono-mac systemd[1]: Started foo.service.
● bar.service
Loaded: loaded (/etc/systemd/
Active: active (running) since Thu 2020-02-13 11:12:05 MSK; 2s ago
Main PID: 11123 (sleep)
Tasks: 1
Memory: 224.0K
CPU: 1ms
CGroup: /system.
└─11123 /bin/sleep infinity
Feb 13 11:12:05 pono-mac systemd[1]: Started bar.service.
I'll test it with Bionic in a few hours.
Vladimir Kononov (voldemark) wrote : | #12 |
For Bionic the problem also seems to fixed in systemd=
foo and bar service files are exactly the same as in #8
Restart fails with systemd=
pono@systemd-
DISTRIB_ID=Ubuntu
DISTRIB_
DISTRIB_
DISTRIB_
pono@systemd-
ii systemd 237-3ubuntu10.38 amd64 system and service manager
pono@systemd-
● foo.service
Loaded: loaded (/etc/systemd/
Active: active (running) since Mon 2020-02-17 08:29:49 UTC; 7s ago
Main PID: 11403 (sleep)
Tasks: 1 (limit: 1129)
CGroup: /system.
└─11403 /bin/sleep infinity
Feb 17 08:29:49 systemd-bionic-test systemd[1]: Started foo.service.
● bar.service
Loaded: loaded (/etc/systemd/
Active: active (running) since Mon 2020-02-17 08:29:49 UTC; 7s ago
Main PID: 11404 (sleep)
Tasks: 1 (limit: 1129)
CGroup: /system.
└─11404 /bin/sleep infinity
Feb 17 08:29:49 systemd-bionic-test systemd[1]: Started bar.service.
pono@systemd-
pono@systemd-
● foo.service
Loaded: loaded (/etc/systemd/
Active: failed (Result: signal) since Mon 2020-02-17 08:30:23 UTC; 3s ago
Process: 11403 ExecStart=
Main PID: 11403 (code=killed, signal=ABRT)
Feb 17 08:30:23 systemd-bionic-test systemd[1]: foo.service: Main process exited, code=killed, status=6/ABRT
Feb 17 08:30:23 systemd-bionic-test systemd[1]: foo.service: Failed with result 'signal'.
Feb 17 08:30:23 systemd-bionic-test systemd[1]: foo.service: Service has no hold-off time, scheduling restart.
Feb 17 08:30:23 systemd-bionic-test systemd[1]: foo.service: Failed to schedule restart job: Transaction is destructive.
Feb 17 08:30:23 systemd-bionic-test systemd[1]: foo.service: Failed with result 'signal'.
● bar.service
Loaded: loaded (/etc/systemd/
Active: inactive (dead) since Mon 2020-02-17 08:30:23 UTC; 3s ago
Process: 11404 ExecStart=
Main PID: 11404 (code=killed, signal=TERM)
Feb 17 08:29:49 systemd-bionic-test systemd[1]: Started bar.service.
Feb 17 08:30:23 systemd-bionic-test systemd[1]: Stopping bar.service...
Feb 17 08:30:23 systemd-bionic-test systemd[1]: Stopped bar.service.
Restart works fine with 237-3ubuntu10.
pono@systemd-
<...>
pono@systemd-
pono@systemd-
● foo.service
Loaded: loaded (/etc/systemd/
Active: active (running) since Mon 2020-02-17 08:31:41 UTC; 11min ago
Main PID: 11752 (sleep)
Tasks: 1 (limit: 1129)
CGroup: /system.slice/...
Vladimir Kononov (voldemark) wrote : | #13 |
Dan, is there any chance of this fix landing to xenial-proposed and bionic-proposed?
Thanks.
Dan Streetman (ddstreet) wrote : | #14 |
> Dan, is there any chance of this fix landing to xenial-proposed and bionic-proposed?
this is in my queue and i'm planning to gather patches for some other systemd bugs in my list starting next week.
https:/
https:/
Vladimir Kononov (voldemark) wrote : | #15 |
Thank you, Dan, that is great news.
description: | updated |
Hello Eugene, or anyone else affected,
Accepted systemd into bionic-proposed. The package will build now and be available at https:/
Please help us by testing this new package. See https:/
If this package fixes the bug for you, please add a comment to this bug, mentioning the version of the package you tested, what testing has been performed on the package and change the tag from verification-
Further information regarding the verification process can be found at https:/
N.B. The updated package will be released to -updates after the bug(s) fixed by this package have been verified and the package has been in -proposed for a minimum of 7 days.
Changed in systemd (Ubuntu Bionic): | |
status: | In Progress → Fix Committed |
tags: | added: verification-needed verification-needed-bionic |
Ubuntu SRU Bot (ubuntu-sru-bot) wrote : Autopkgtest regression report (systemd/237-3ubuntu10.40) | #17 |
All autopkgtests for the newly accepted systemd (237-3ubuntu10.40) for bionic have finished running.
The following regressions have been reported in tests triggered by the package:
gvfs/1.
prometheus-
systemd/
umockdev/0.11.1-1 (armhf)
linux-hwe-
kde4libs/
util-linux/unknown (armhf)
nftables/unknown (armhf)
linux-raspi2-
netplan.
openssh/
Please visit the excuses page listed below and investigate the failures, proceeding afterwards as per the StableReleaseUp
https:/
[1] https:/
Thank you!
Hello Eugene, or anyone else affected,
Accepted systemd into xenial-proposed. The package will build now and be available at https:/
Please help us by testing this new package. See https:/
If this package fixes the bug for you, please add a comment to this bug, mentioning the version of the package you tested, what testing has been performed on the package and change the tag from verification-
Further information regarding the verification process can be found at https:/
N.B. The updated package will be released to -updates after the bug(s) fixed by this package have been verified and the package has been in -proposed for a minimum of 7 days.
Changed in systemd (Ubuntu Xenial): | |
status: | In Progress → Fix Committed |
tags: | added: verification-needed-xenial |
Ubuntu SRU Bot (ubuntu-sru-bot) wrote : Autopkgtest regression report (systemd/229-4ubuntu21.28) | #19 |
All autopkgtests for the newly accepted systemd (229-4ubuntu21.28) for xenial have finished running.
The following regressions have been reported in tests triggered by the package:
udisks2/
multipath-
nplan/0.32~16.04.7 (amd64)
Please visit the excuses page listed below and investigate the failures, proceeding afterwards as per the StableReleaseUp
https:/
[1] https:/
Thank you!
Dan Streetman (ddstreet) wrote : | #20 |
bionic:
ubuntu@
ii systemd 237-3ubuntu10.39 amd64 system and service manager
ubuntu@
# /etc/systemd/
[Unit]
PartOf=bar.service
[Service]
ExecStart=
RestartSec=0s
Restart=always
ubuntu@
# /etc/systemd/
[Unit]
BindsTo=foo.service
#Same with or without After=, the window is very small to make a difference.
After=foo.service
[Service]
ExecStart=
ubuntu@
ubuntu@
ubuntu@
● foo.service
Loaded: loaded (/etc/systemd/
Active: active (running) since Wed 2020-05-06 11:20:31 UTC; 4s ago
Main PID: 8560 (sleep)
Tasks: 1 (limit: 4702)
CGroup: /system.
└─8560 /bin/sleep infinity
May 06 11:20:31 lp1839290-b systemd[1]: Started foo.service.
● bar.service
Loaded: loaded (/etc/systemd/
Active: active (running) since Wed 2020-05-06 11:20:33 UTC; 3s ago
Main PID: 8570 (sleep)
Tasks: 1 (limit: 4702)
CGroup: /system.
└─8570 /bin/sleep infinity
May 06 11:20:33 lp1839290-b systemd[1]: Started bar.service.
ubuntu@
ubuntu@
● foo.service
Loaded: loaded (/etc/systemd/
Active: failed (Result: core-dump) since Wed 2020-05-06 11:21:08 UTC; 1s ago
Process: 8560 ExecStart=
Main PID: 8560 (code=dumped, signal=ABRT)
May 06 11:21:08 lp1839290-b systemd[1]: foo.service: Service has no hold-off time, scheduling restart.
May 06 11:21:08 lp1839290-b systemd[1]: foo.service: Failed to schedule restart job: Transaction is destructive.
May 06 11:21:08 lp1839290-b systemd[1]: foo.service: Failed with result 'core-dump'.
● bar.service
Loaded: loaded (/etc/systemd/
Active: inactive (dead) since Wed 2020-05-06 11:21:08 UTC; 1s ago
Process: 8570 ExecStart=
Main PID: 8570 (code=killed, signal=TERM)
May 06 11:20:33 lp1839290-b systemd[1]: Started bar.service.
May 06 11:21:08 lp1839290-b systemd[1]: Stopping bar.service...
May 06 11:21:08 lp1839290-b systemd[1]: Stopped bar.service.
ubuntu@
ii systemd 237-3ubuntu10.40 amd64 system and service manager
ubuntu@
ubuntu@
ubuntu@
● foo.service
Loaded: loaded (/etc/systemd/
Active: active (running) since Wed 2020-05-06 11:24:57 UTC; 10s ago
Main PID: 1256 (sleep)
Tasks: 1 (limit: 4702)
CGroup: /system.
└─1256 /bin/sleep infinity
May 06 11:24:57 lp1839290-b systemd[1]: Started foo.service.
● bar.serv...
tags: |
added: verification-done-bionic removed: verification-needed-bionic |
Dan Streetman (ddstreet) wrote : | #21 |
xenial:
ubuntu@
ii systemd 229-4ubuntu21.27 amd64 system and service manager
ubuntu@
# /etc/systemd/
# /etc/systemd/
[Unit]
PartOf=bar.service
[Service]
ExecStart=
RestartSec=0s
Restart=always
ubuntu@
# /etc/systemd/
# /etc/systemd/
[Unit]
BindsTo=foo.service
#Same with or without After=, the window is very small to make a difference.
After=foo.service
[Service]
ExecStart=
ubuntu@
ubuntu@
ubuntu@
● foo.service
Loaded: loaded (/etc/systemd/
Active: active (running) since Wed 2020-05-06 11:28:14 UTC; 5s ago
Main PID: 1268 (sleep)
Tasks: 1
Memory: 80.0K
CPU: 1ms
CGroup: /system.
└─1268 /bin/sleep infinity
May 06 11:28:14 lp1839290-x systemd[1]: Started foo.service.
● bar.service
Loaded: loaded (/etc/systemd/
Active: active (running) since Wed 2020-05-06 11:28:17 UTC; 3s ago
Main PID: 1273 (sleep)
Tasks: 1
Memory: 84.0K
CPU: 1ms
CGroup: /system.
└─1273 /bin/sleep infinity
May 06 11:28:17 lp1839290-x systemd[1]: Started bar.service.
ubuntu@
ubuntu@
● foo.service
Loaded: loaded (/etc/systemd/
Active: failed (Result: resources) since Wed 2020-05-06 11:28:29 UTC; 929ms ago
Process: 1268 ExecStart=
Main PID: 1268 (code=dumped, signal=ABRT)
May 06 11:28:29 lp1839290-x systemd[1]: foo.service: Unit entered failed state.
May 06 11:28:29 lp1839290-x systemd[1]: foo.service: Failed with result 'core-dump'.
May 06 11:28:29 lp1839290-x systemd[1]: foo.service: Service has no hold-off time, scheduling restart.
May 06 11:28:29 lp1839290-x systemd[1]: foo.service: Failed to schedule restart job: Transaction is destructive.
May 06 11:28:29 lp1839290-x systemd[1]: foo.service: Unit entered failed state.
May 06 11:28:29 lp1839290-x systemd[1]: foo.service: Failed with result 'resources'.
● bar.service
Loaded: loaded (/etc/systemd/
Active: inactive (dead) since Wed 2020-05-06 11:28:29 UTC; 931ms ago
Process: 1273 ExecStart=
Main PID: 1273 (code=killed, signal=TERM)
May 06 11:28:17 lp1839290-x systemd[1]: Started bar.service.
May 06 11:28:29 lp1839290-x systemd[1]: Stopping bar.service...
May 06 11:28:29 lp1839290-x systemd[1]: Stopped bar.service.
ubuntu@
ii systemd 229-4ubuntu21.28 amd64 system and service manager
ubuntu@
ubuntu@
ubuntu@
● foo.service
Loa...
tags: |
added: verification-done verification-done-xenial removed: verification-needed verification-needed-xenial |
Launchpad Janitor (janitor) wrote : | #22 |
This bug was fixed in the package systemd - 237-3ubuntu10.40
---------------
systemd (237-3ubuntu10.40) bionic; urgency=medium
* d/t/logind: skip if nonexistent /sys/power/state (LP: #1862657)
* d/p/lp1839290-
- when restarting service after failure, replace existing queued jobs
(LP: #1839290)
* d/p/lp1867421-
- fix resolution of IntelliMouse (LP: #1867421)
* d/p/lp1858412-
- allow vacuuming journal 'root' dir (LP: #1858412)
* d/p/lp1862232/
d/p/
d/p/
d/p/
d/p/
d/p/
d/p/
- do not fail network setup if hostname is not valid (LP: #1862232)
* d/t/systemd-fsckd: Skip test on arm64 (LP: #1870194)
* d/p/lp1870589-
- fix test-seccomp failure (LP: #1870589)
* d/rules: use meson --print-errorlogs instead of cat testlog
- (LP: #1870811)
* d/p/lp1776654-
- sync journal before reading from it (LP: #1776654)
* d/p/lp1837914-
- do not crash if NULL passted to journal destructor (LP: #1837914)
* d/e/initramfs-
- Follow symlinks when finding link files to copy into initramfs
(LP: #1868892)
-- Dan Streetman <email address hidden> Mon, 20 Apr 2020 10:12:49 -0400
Changed in systemd (Ubuntu Bionic): | |
status: | Fix Committed → Fix Released |
The verification of the Stable Release Update for systemd has completed successfully and the package is now being released to -updates. Subsequently, the Ubuntu Stable Release Updates Team is being unsubscribed and will not receive messages about this bug report. In the event that you encounter a regression using the package from -updates please report a new bug using ubuntu-bug and tag the bug report regression-update so we can easily find any regressions.
Launchpad Janitor (janitor) wrote : | #24 |
This bug was fixed in the package systemd - 229-4ubuntu21.28
---------------
systemd (229-4ubuntu21.28) xenial; urgency=medium
* d/t/logind: skip if nonexistent /sys/power/state (LP: #1862657)
* d/p/lp1839290-
- when restarting service after failure, replace existing queued jobs
(LP: #1839290)
* d/t/storage:
- fix buggy test (LP: #1831459)
- without scsi_debug, skip test (LP: #1847816)
* d/p/lp1867421-
- fix resolution of IntelliMouse (LP: #1867421)
* d/p/lp1858412-
- allow vacuuming journal 'root' dir (LP: #1858412)
* d/p/lp1862232-
- do not let invalid hostname break dhcpv4 (LP: #1862232)
* d/t/systemd-fsckd: Skip test on arm64 (LP: #1870194)
* d/p/lp1837914-
- do not crash if NULL passted to journal destructor (LP: #1837914)
* d/e/initramfs-
- Follow symlinks when finding link files to copy into initramfs
(LP: #1868892)
-- Dan Streetman <email address hidden> Mon, 20 Apr 2020 10:17:40 -0400
Changed in systemd (Ubuntu Xenial): | |
status: | Fix Committed → Fix Released |
Status changed to 'Confirmed' because the bug affects multiple users.