mirror of
https://github.com/morgan9e/systemd
synced 2026-04-14 08:25:20 +09:00
core: close watchdog device if watchdog device is unspecified now
If a watchdog device was specified previously, and unspecified later and PID1 is reloaded, then we need to close the device.
This commit is contained in:
@@ -2118,11 +2118,9 @@ static int initialize_runtime(
|
||||
write_container_id();
|
||||
}
|
||||
|
||||
if (arg_watchdog_device) {
|
||||
r = watchdog_set_device(arg_watchdog_device);
|
||||
if (r < 0)
|
||||
log_warning_errno(r, "Failed to set watchdog device to %s, ignoring: %m", arg_watchdog_device);
|
||||
}
|
||||
r = watchdog_set_device(arg_watchdog_device);
|
||||
if (r < 0)
|
||||
log_warning_errno(r, "Failed to set watchdog device to %s, ignoring: %m", arg_watchdog_device);
|
||||
} else {
|
||||
_cleanup_free_ char *p = NULL;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user