Make the startup timeout 0 seconds by default rathern than 420s. This

makes the default fail safe when watchdogd is disabled (which is also
the default).

Sponsored by
This commit is contained in:
Warner Losh 2017-11-04 03:01:58 +00:00
parent cc088d92e2
commit c154763db1
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=325378

View File

@ -84,7 +84,7 @@ static int on = 1;
static bool wd_in_shutdown = false;
static int wd_timer_actions = IPMI_SET_WD_ACTION_POWER_CYCLE;
static int wd_shutdown_countdown = 420; /* sec */
static int wd_startup_countdown = 420; /* sec */
static int wd_startup_countdown = 0; /* sec */
static int wd_pretimeout_countdown = 120; /* sec */
static int cycle_wait = 10; /* sec */