mirror of
https://github.com/systemd/systemd-stable.git
synced 2025-02-05 21:57:27 +03:00
core: introduce systemd.watchdog_sec=<sec> option
This commit is contained in:
parent
807938e7ec
commit
b3aa73e4de
@ -531,6 +531,17 @@ static int parse_proc_cmdline_item(const char *key, const char *value, void *dat
|
||||
|
||||
(void) parse_path_argument(value, false, &arg_watchdog_device);
|
||||
|
||||
} else if (proc_cmdline_key_streq(key, "systemd.watchdog_sec")) {
|
||||
|
||||
if (proc_cmdline_value_missing(key, value))
|
||||
return 0;
|
||||
|
||||
r = parse_sec(value, &arg_runtime_watchdog);
|
||||
if (r < 0)
|
||||
log_warning_errno(r, "Failed to parse systemd.watchdog_sec= argument '%s', ignoring: %m", value);
|
||||
else
|
||||
arg_kexec_watchdog = arg_reboot_watchdog = arg_runtime_watchdog;
|
||||
|
||||
} else if (proc_cmdline_key_streq(key, "systemd.clock_usec")) {
|
||||
|
||||
if (proc_cmdline_value_missing(key, value))
|
||||
|
Loading…
x
Reference in New Issue
Block a user