From: INSUN PYO Date: Tue, 31 Mar 2020 02:01:58 +0000 (+0900) Subject: Disable shutdown watchdog as default X-Git-Tag: submit/tizen/20200402.035744^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ae5e69fb87bd64ca952a8b896e7faaee2ef488e8;p=platform%2Fupstream%2Fsystemd.git Disable shutdown watchdog as default Change-Id: Ibef1d780d3a711b9251cddc41b16c91a154951e2 --- diff --git a/src/core/main.c b/src/core/main.c index 9c9d073..0daef11 100644 --- a/src/core/main.c +++ b/src/core/main.c @@ -114,7 +114,7 @@ static usec_t arg_default_timeout_stop_usec = DEFAULT_TIMEOUT_USEC; static usec_t arg_default_start_limit_interval = DEFAULT_START_LIMIT_INTERVAL; static unsigned arg_default_start_limit_burst = DEFAULT_START_LIMIT_BURST; static usec_t arg_runtime_watchdog = 0; -static usec_t arg_shutdown_watchdog = 10 * USEC_PER_MINUTE; +static usec_t arg_shutdown_watchdog = 0; /* 10 * USEC_PER_MINUTE */ static char **arg_default_environment = NULL; static struct rlimit *arg_default_rlimit[_RLIMIT_MAX] = {}; static uint64_t arg_capability_bounding_set = CAP_ALL;