Merge "Add mtce support for manifest apply over initial controller unlock"
This commit is contained in:
commit
94126225d0
@ -107,6 +107,7 @@ void daemon_exit ( void );
|
|||||||
#define NODE_RESET_FILE ((const char *)"/var/run/.node_reset")
|
#define NODE_RESET_FILE ((const char *)"/var/run/.node_reset")
|
||||||
#define SMGMT_DEGRADED_FILE ((const char *)"/var/run/.sm_degraded")
|
#define SMGMT_DEGRADED_FILE ((const char *)"/var/run/.sm_degraded")
|
||||||
#define SMGMT_UNHEALTHY_FILE ((const char *)"/var/run/.sm_node_unhealthy")
|
#define SMGMT_UNHEALTHY_FILE ((const char *)"/var/run/.sm_node_unhealthy")
|
||||||
|
#define UNLOCK_READY_FILE ((const char *)"/etc/platform/.unlock_ready")
|
||||||
|
|
||||||
/** path to and module init file name */
|
/** path to and module init file name */
|
||||||
#define MTCE_CONF_FILE ((const char *)"/etc/mtc.conf")
|
#define MTCE_CONF_FILE ((const char *)"/etc/mtc.conf")
|
||||||
@ -284,6 +285,7 @@ void daemon_exit ( void );
|
|||||||
#define MTC_TASK_SELF_UNLOCK_MSG "Unlocking active controller, please stand-by while it reboots"
|
#define MTC_TASK_SELF_UNLOCK_MSG "Unlocking active controller, please stand-by while it reboots"
|
||||||
#define MTC_TASK_FAILED_SWACT_REQ "Critical failure.Requesting SWACT to enabled standby controller"
|
#define MTC_TASK_FAILED_SWACT_REQ "Critical failure.Requesting SWACT to enabled standby controller"
|
||||||
#define MTC_TASK_FAILED_NO_BACKUP "Critical failure.Please provision/enable standby controller"
|
#define MTC_TASK_FAILED_NO_BACKUP "Critical failure.Please provision/enable standby controller"
|
||||||
|
#define MTC_TASK_MANIFEST_APPLY "Applying manifest, please stand-by ..."
|
||||||
|
|
||||||
#define COMMAND_RETRY_DELAY (8) /* from sshUtil.h */
|
#define COMMAND_RETRY_DELAY (8) /* from sshUtil.h */
|
||||||
#define COMMAND_DELAY (2) /* from sshUtil.h */
|
#define COMMAND_DELAY (2) /* from sshUtil.h */
|
||||||
|
@ -1414,6 +1414,9 @@ public:
|
|||||||
/** Number of provisioned hosts (nodes) */
|
/** Number of provisioned hosts (nodes) */
|
||||||
int hosts ;
|
int hosts ;
|
||||||
|
|
||||||
|
/* Set to True while waiting for UNLOCK_READY_FILE in simplex mode */
|
||||||
|
bool unlock_ready_wait ;
|
||||||
|
|
||||||
/** Host has been deleted */
|
/** Host has been deleted */
|
||||||
bool host_deleted ;
|
bool host_deleted ;
|
||||||
|
|
||||||
|
@ -474,6 +474,44 @@ int nodeLinkClass::enable_handler ( struct nodeLinkClass::node * node_ptr )
|
|||||||
else
|
else
|
||||||
aio = false ;
|
aio = false ;
|
||||||
|
|
||||||
|
if (( this->hosts == 1 ) &&
|
||||||
|
( daemon_is_file_present (PLATFORM_SIMPLEX_MODE) == true ))
|
||||||
|
{
|
||||||
|
/* Check for first pass through case where we need to
|
||||||
|
* start the timer */
|
||||||
|
if ( this->unlock_ready_wait == false )
|
||||||
|
{
|
||||||
|
if ( daemon_is_file_present(UNLOCK_READY_FILE) == false )
|
||||||
|
{
|
||||||
|
mtcTimer_start ( node_ptr->mtcTimer, mtcTimer_handler, MTC_MINS_5 );
|
||||||
|
mtcInvApi_update_task_now ( node_ptr, MTC_TASK_MANIFEST_APPLY );
|
||||||
|
this->unlock_ready_wait = true ;
|
||||||
|
return (PASS);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
if ( daemon_is_file_present(UNLOCK_READY_FILE) == true )
|
||||||
|
{
|
||||||
|
mtcTimer_reset(node_ptr->mtcTimer);
|
||||||
|
|
||||||
|
/* fall through to proceed with self reboot */
|
||||||
|
}
|
||||||
|
else if ( node_ptr->mtcTimer.ring == true )
|
||||||
|
{
|
||||||
|
this->unlock_ready_wait = false ;
|
||||||
|
mtcInvApi_update_task_now ( node_ptr, "Manifest apply timeout ; Unlock to retry" );
|
||||||
|
mtcInvApi_update_states_now ( node_ptr, "locked", "disabled" , "online", "disabled", "offline" );
|
||||||
|
adminActionChange ( node_ptr, MTC_ADMIN_ACTION__NONE );
|
||||||
|
return (PASS);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
/* wait longer */
|
||||||
|
return (RETRY);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
mtcInvApi_update_states_now ( node_ptr, "unlocked", "disabled" , "offline", "disabled", "offline" );
|
mtcInvApi_update_states_now ( node_ptr, "unlocked", "disabled" , "offline", "disabled", "offline" );
|
||||||
mtcInvApi_update_task_now ( node_ptr, aio ? MTC_TASK_CPE_SX_UNLOCK_MSG : MTC_TASK_SELF_UNLOCK_MSG );
|
mtcInvApi_update_task_now ( node_ptr, aio ? MTC_TASK_CPE_SX_UNLOCK_MSG : MTC_TASK_SELF_UNLOCK_MSG );
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user