@ -34,91 +34,146 @@ class ActionModule(ActionBase):
DEFAULT_BOOT_TIME_COMMAND = ' cat /proc/sys/kernel/random/boot_id '
DEFAULT_BOOT_TIME_COMMAND = ' cat /proc/sys/kernel/random/boot_id '
DEFAULT_REBOOT_MESSAGE = ' Reboot initiated by Ansible '
DEFAULT_REBOOT_MESSAGE = ' Reboot initiated by Ansible '
DEFAULT_SHUTDOWN_COMMAND = ' shutdown '
DEFAULT_SHUTDOWN_COMMAND = ' shutdown '
DEFAULT_SHUTDOWN_COMMAND_ARGS = ' -r {delay_min} " {message} " '
DEFAULT_SUDOABLE = True
DEFAULT_SUDOABLE = True
DEPRECATED_ARGS = { }
DEPRECATED_ARGS = { }
BOOT_TIME_COMMANDS = {
BOOT_TIME_COMMANDS = {
' openbsd ' : ' /sbin/sysctl kern.boottime ' ,
' freebsd ' : ' /sbin/sysctl kern.boottime ' ,
' freebsd ' : ' /sbin/sysctl kern.boottime ' ,
' openbsd ' : ' /sbin/sysctl kern.boottime ' ,
' macosx ' : ' who -b ' ,
' solaris ' : ' who -b ' ,
' sunos ' : ' who -b ' ,
' sunos ' : ' who -b ' ,
' darwin ' : ' who -b ' ,
}
}
SHUTDOWN_COMMANDS = {
SHUTDOWN_COMMANDS = {
' linux ' : DEFAULT_SHUTDOWN_COMMAND ,
' alpine ' : ' reboot ' ,
' freebsd ' : DEFAULT_SHUTDOWN_COMMAND ,
' openbsd ' : DEFAULT_SHUTDOWN_COMMAND ,
' sunos ' : ' /usr/sbin/shutdown ' ,
' darwin ' : ' /sbin/shutdown ' ,
}
}
SHUTDOWN_COMMAND_ARGS = {
SHUTDOWN_COMMAND_ARGS = {
' linux' : ' -r {delay_min} " {message} " ' ,
' alpine ' : ' ' ,
' freebsd ' : ' -r + {delay_sec} s " {message} " ' ,
' freebsd ' : ' -r + {delay_sec} s " {message} " ' ,
' sunos' : ' -i 6 -y -g {delay_sec} " {message} " ' ,
' linux' : DEFAULT_SHUTDOWN_COMMAND_ARGS ,
' darwin ' : ' -r + {delay_min} " {message} " ' ,
' macosx ' : ' -r + {delay_min} " {message} " ' ,
' openbsd ' : ' -r + {delay_min} " {message} " ' ,
' openbsd ' : ' -r + {delay_min} " {message} " ' ,
' solaris ' : ' -y -g {delay_sec} -i 6 " {message} " ' ,
' sunos ' : ' -y -g {delay_sec} -i 6 " {message} " ' ,
}
TEST_COMMANDS = {
' solaris ' : ' who '
}
}
def __init__ ( self , * args , * * kwargs ) :
def __init__ ( self , * args , * * kwargs ) :
super ( ActionModule , self ) . __init__ ( * args , * * kwargs )
super ( ActionModule , self ) . __init__ ( * args , * * kwargs )
self . _original_connection_timeout = None
@property
self . _previous_boot_time = None
def pre_reboot_delay ( self ) :
return self . _check_delay ( ' pre_reboot_delay ' , self . DEFAULT_PRE_REBOOT_DELAY )
@property
def post_reboot_delay ( self ) :
return self . _check_delay ( ' post_reboot_delay ' , self . DEFAULT_POST_REBOOT_DELAY )
def _check_delay ( self , key , default ) :
""" Ensure that the value is positive or zero """
value = int ( self . _task . args . get ( key , self . _task . args . get ( key + ' _sec ' , default ) ) )
if value < 0 :
value = 0
return value
def _get_value_from_facts ( self , variable_name , distribution , default_value ) :
""" Get dist+version specific args first, then distribution, then family, lastly use default """
attr = getattr ( self , variable_name )
value = attr . get (
distribution [ ' name ' ] + distribution [ ' version ' ] ,
attr . get (
distribution [ ' name ' ] ,
attr . get (
distribution [ ' family ' ] ,
getattr ( self , default_value ) ) ) )
return value
def get_shutdown_command_args ( self , distribution ) :
args = self . _get_value_from_facts ( ' SHUTDOWN_COMMAND_ARGS ' , distribution , ' DEFAULT_SHUTDOWN_COMMAND_ARGS ' )
# Convert seconds to minutes. If less that 60, set it to 0.
delay_min = self . pre_reboot_delay / / 60
reboot_message = self . _task . args . get ( ' msg ' , self . DEFAULT_REBOOT_MESSAGE )
return args . format ( delay_sec = self . pre_reboot_delay , delay_min = delay_min , message = reboot_message )
def get_distribution ( self , task_vars ) :
distribution = { }
display . debug ( ' {action} : running setup module to get distribution ' . format ( action = self . _task . action ) )
module_output = self . _execute_module (
task_vars = task_vars ,
module_name = ' setup ' ,
module_args = { ' gather_subset ' : ' min ' } )
try :
if module_output . get ( ' failed ' , False ) :
raise AnsibleError ( ' Failed to determine system distribution. {0} , {1} ' . format (
to_native ( module_output [ ' module_stdout ' ] ) . strip ( ) ,
to_native ( module_output [ ' module_stderr ' ] ) . strip ( ) ) )
distribution [ ' name ' ] = module_output [ ' ansible_facts ' ] [ ' ansible_distribution ' ] . lower ( )
distribution [ ' version ' ] = to_text ( module_output [ ' ansible_facts ' ] [ ' ansible_distribution_version ' ] . split ( ' . ' ) [ 0 ] )
distribution [ ' family ' ] = to_text ( module_output [ ' ansible_facts ' ] [ ' ansible_os_family ' ] . lower ( ) )
display . debug ( " {action} : distribution: {dist} " . format ( action = self . _task . action , dist = distribution ) )
return distribution
except KeyError as ke :
raise AnsibleError ( ' Failed to get distribution information. Missing " {0} " in output. ' . format ( ke . args [ 0 ] ) )
def get_shutdown_command ( self , task_vars , distribution ) :
shutdown_bin = self . _get_value_from_facts ( ' SHUTDOWN_COMMANDS ' , distribution , ' DEFAULT_SHUTDOWN_COMMAND ' )
display . debug ( ' {action} : running find module to get path for " {command} " ' . format ( action = self . _task . action , command = shutdown_bin ) )
find_result = self . _execute_module (
task_vars = task_vars ,
module_name = ' find ' ,
module_args = {
' paths ' : [ ' /sbin ' , ' /usr/sbin ' , ' /usr/local/sbin ' ] ,
' patterns ' : [ shutdown_bin ] ,
' file_type ' : ' any '
}
)
full_path = [ x [ ' path ' ] for x in find_result [ ' files ' ] ]
if not full_path :
raise AnsibleError ( ' Unable to find command " {0} " in system paths. ' . format ( shutdown_bin ) )
self . _shutdown_command = full_path [ 0 ]
return self . _shutdown_command
def deprecated_args ( self ) :
def deprecated_args ( self ) :
for arg , version in self . DEPRECATED_ARGS . items ( ) :
for arg , version in self . DEPRECATED_ARGS . items ( ) :
if self . _task . args . get ( arg ) is not None :
if self . _task . args . get ( arg ) is not None :
display . warning ( " Since Ansible %s , %s is no longer a valid option for %s " % ( version , arg , self . _task . action ) )
display . warning ( " Since Ansible {version} , {arg} is no longer a valid option for {action} " . format (
version = version ,
def construct_command ( self ) :
arg = arg ,
# Determine the system distribution in order to use the correct shutdown command arguments
action = self . _task . action ) )
uname_result = self . _low_level_execute_command ( ' uname ' )
distribution = uname_result [ ' stdout ' ] . strip ( ) . lower ( )
def get_system_boot_time ( self , distribution ) :
boot_time_command = self . _get_value_from_facts ( ' BOOT_TIME_COMMANDS ' , distribution , ' DEFAULT_BOOT_TIME_COMMAND ' )
shutdown_command = self . SHUTDOWN_COMMANDS . get ( distribution , self . SHUTDOWN_COMMANDS [ ' linux ' ] )
display . debug ( " {action} : getting boot time with command: ' {command} ' " . format ( action = self . _task . action , command = boot_time_command ) )
shutdown_command_args = self . SHUTDOWN_COMMAND_ARGS . get ( distribution , self . SHUTDOWN_COMMAND_ARGS [ ' linux ' ] )
pre_reboot_delay = int ( self . _task . args . get ( ' pre_reboot_delay ' , self . DEFAULT_PRE_REBOOT_DELAY ) )
if pre_reboot_delay < 0 :
pre_reboot_delay = 0
# Convert seconds to minutes. If less that 60, set it to 0.
delay_min = pre_reboot_delay / / 60
msg = self . _task . args . get ( ' msg ' , self . DEFAULT_REBOOT_MESSAGE )
shutdown_command_args = shutdown_command_args . format ( delay_sec = pre_reboot_delay , delay_min = delay_min , message = msg )
reboot_command = ' %s %s ' % ( shutdown_command , shutdown_command_args )
return reboot_command
def get_system_boot_time ( self ) :
stdout = u ' '
stderr = u ' '
# Determine the system distribution in order to use the correct shutdown command arguments
uname_result = self . _low_level_execute_command ( ' uname ' )
distribution = uname_result [ ' stdout ' ] . strip ( ) . lower ( )
boot_time_command = self . BOOT_TIME_COMMANDS . get ( distribution , self . DEFAULT_BOOT_TIME_COMMAND )
command_result = self . _low_level_execute_command ( boot_time_command , sudoable = self . DEFAULT_SUDOABLE )
command_result = self . _low_level_execute_command ( boot_time_command , sudoable = self . DEFAULT_SUDOABLE )
if command_result [ ' rc ' ] != 0 :
if command_result [ ' rc ' ] != 0 :
stdout + = command_result [ ' stdout ' ]
stdout = command_result [ ' stdout ' ]
stderr + = command_result [ ' stderr ' ]
stderr = command_result [ ' stderr ' ]
raise AnsibleError ( " %s : failed to get host boot time info, rc: %d , stdout: %s , stderr: %s "
raise AnsibleError ( " {action} : failed to get host boot time info, rc: {rc} , stdout: {out} , stderr: {err} " . format (
% ( self . _task . action , command_result [ ' rc ' ] , to_native ( stdout ) , to_native ( stderr ) ) )
action = self . _task . action ,
rc = command_result [ ' rc ' ] ,
out = to_native ( stdout ) ,
err = to_native ( stderr ) ) )
display . debug ( " {action} : last boot time: {boot} " . format ( action = self . _task . action , boot = command_result [ ' stdout ' ] . strip ( ) ) )
return command_result [ ' stdout ' ] . strip ( )
return command_result [ ' stdout ' ] . strip ( )
def check_boot_time ( self ) :
def check_boot_time ( self , distribution , previous_boot_time ) :
display . vvv ( " %s : attempting to get system boot time " % self . _task . action )
display . vvv ( " {action} : attempting to get system boot time " . format ( action = self . _task . action ) )
connect_timeout = self . _task . args . get ( ' connect_timeout ' , self . _task . args . get ( ' connect_timeout_sec ' , self . DEFAULT_CONNECT_TIMEOUT ) )
connect_timeout = self . _task . args . get ( ' connect_timeout ' , self . _task . args . get ( ' connect_timeout_sec ' , self . DEFAULT_CONNECT_TIMEOUT ) )
# override connection timeout from defaults to custom value
# override connection timeout from defaults to custom value
if connect_timeout :
if connect_timeout :
try :
try :
display . debug ( " {action} : setting connect_timeout to {value} " . format ( action = self . _task . action , value = connect_timeout ) )
self . _connection . set_option ( " connection_timeout " , connect_timeout )
self . _connection . set_option ( " connection_timeout " , connect_timeout )
self . _connection . reset ( )
self . _connection . reset ( )
except AttributeError :
except AttributeError :
@ -126,18 +181,19 @@ class ActionModule(ActionBase):
# try and get boot time
# try and get boot time
try :
try :
current_boot_time = self . get_system_boot_time ( )
current_boot_time = self . get_system_boot_time ( distribution )
except Exception as e :
except Exception as e :
raise e
raise e
# FreeBSD returns an empty string immediately before reboot so adding a length
# FreeBSD returns an empty string immediately before reboot so adding a length
# check to prevent prematurely assuming system has rebooted
# check to prevent prematurely assuming system has rebooted
if len ( current_boot_time ) == 0 or current_boot_time == self . _ previous_boot_time:
if len ( current_boot_time ) == 0 or current_boot_time == previous_boot_time:
raise Exception ( " boot time has not changed " )
raise ValueError ( " boot time has not changed " )
def run_test_command ( self , * * kwargs ) :
def run_test_command ( self , distribution , * * kwargs ) :
test_command = self . _task . args . get ( ' test_command ' , self . DEFAULT_TEST_COMMAND )
test_command = self . _task . args . get ( ' test_command ' , self . _get_value_from_facts ( ' TEST_COMMANDS ' , distribution , ' DEFAULT_TEST_COMMAND ' ) )
display . vvv ( " %s : attempting post-reboot test command ' %s ' " % ( self . _task . action , test_command ) )
display . vvv ( " {action} : attempting post-reboot test command " . format ( action = self . _task . action ) )
display . debug ( " {action} : attempting post-reboot test command ' {command} ' " . format ( action = self . _task . action , command = test_command ) )
try :
try :
command_result = self . _low_level_execute_command ( test_command , sudoable = self . DEFAULT_SUDOABLE )
command_result = self . _low_level_execute_command ( test_command , sudoable = self . DEFAULT_SUDOABLE )
except Exception :
except Exception :
@ -149,26 +205,27 @@ class ActionModule(ActionBase):
pass
pass
raise
raise
result = { }
if command_result [ ' rc ' ] != 0 :
if command_result [ ' rc ' ] != 0 :
result[ ' failed ' ] = True
msg = ' Test command failed: {err} {out} ' . format (
result [ ' msg ' ] = ' test command failed: %s %s ' % ( to_native ( command_result [ ' stderr ' ] , to_native ( command_result [ ' stdout ' ] ) ) )
err = to_native ( command_result [ ' stderr ' ] ),
else :
out = to_native ( command_result [ ' stdout ' ] ) )
result [ ' msg ' ] = to_native ( command_result [ ' stdout ' ] )
raise RuntimeError ( msg )
return result
display . vvv ( " {action} : system sucessfully rebooted " . format ( action = self . _task . action ) )
def do_until_success_or_timeout ( self , action , reboot_timeout , action_desc ):
def do_until_success_or_timeout ( self , action , reboot_timeout , action_desc , distribution , action_kwargs = None ):
max_end_time = datetime . utcnow ( ) + timedelta ( seconds = reboot_timeout )
max_end_time = datetime . utcnow ( ) + timedelta ( seconds = reboot_timeout )
if action_kwargs is None :
action_kwargs = { }
fail_count = 0
fail_count = 0
max_fail_sleep = 12
max_fail_sleep = 12
while datetime . utcnow ( ) < max_end_time :
while datetime . utcnow ( ) < max_end_time :
try :
try :
action ( )
action ( distribution = distribution , * * action_kwargs )
if action_desc :
if action_desc :
display . debug ( ' %s: %s success ' % ( self . _task . action , action_desc ) )
display . debug ( ' {action}: {desc} success ' . format ( action = self . _task . action , desc = action_desc ) )
return
return
except Exception as e :
except Exception as e :
if isinstance ( e , AnsibleConnectionFailure ) :
if isinstance ( e , AnsibleConnectionFailure ) :
@ -187,26 +244,30 @@ class ActionModule(ActionBase):
error = to_text ( e ) . splitlines ( ) [ - 1 ]
error = to_text ( e ) . splitlines ( ) [ - 1 ]
except IndexError as e :
except IndexError as e :
error = to_text ( e )
error = to_text ( e )
display . debug ( " {0} : {1} fail ' {2} ' , retrying in {3:.4} seconds... " . format ( self . _task . action , action_desc ,
display . debug ( " {action} : {desc} fail ' {err} ' , retrying in {sleep:.4} seconds... " . format (
error , fail_sleep ) )
action = self . _task . action ,
desc = action_desc ,
err = error ,
sleep = fail_sleep ) )
fail_count + = 1
fail_count + = 1
time . sleep ( fail_sleep )
time . sleep ( fail_sleep )
raise TimedOutException ( ' Timed out waiting for %s (timeout= %s ) ' % ( action_desc , reboot_timeout ) )
raise TimedOutException ( ' Timed out waiting for {desc} (timeout= {timeout} ) ' . format ( desc = action_desc , timeout = reboot_timeout ) )
def perform_reboot ( self ) :
display . debug ( " %s : rebooting server " % self . _task . action )
remote_command = self . construct_command ( )
def perform_reboot ( self , task_vars , distribution ) :
result = { }
result = { }
reboot_result = { }
reboot_result = { }
shutdown_command = self . get_shutdown_command ( task_vars , distribution )
shutdown_command_args = self . get_shutdown_command_args ( distribution )
reboot_command = ' {0} {1} ' . format ( shutdown_command , shutdown_command_args )
try :
try :
reboot_result = self . _low_level_execute_command ( remote_command , sudoable = self . DEFAULT_SUDOABLE )
display . vvv ( " {action} : rebooting server... " . format ( action = self . _task . action ) )
display . debug ( " {action} : rebooting server with command ' {command} ' " . format ( action = self . _task . action , command = reboot_command ) )
reboot_result = self . _low_level_execute_command ( reboot_command , sudoable = self . DEFAULT_SUDOABLE )
except AnsibleConnectionFailure as e :
except AnsibleConnectionFailure as e :
# If the connection is closed too quickly due to the system being shutdown, carry on
# If the connection is closed too quickly due to the system being shutdown, carry on
display . debug ( ' %s: AnsibleConnectionFailure caught and handled: %s ' % ( self . _task . action , to_native ( e ) ) )
display . debug ( ' {action}: AnsibleConnectionFailure caught and handled: {error} ' . format ( action = self . _task . action , error = to_native ( e ) ) )
reboot_result [ ' rc ' ] = 0
reboot_result [ ' rc ' ] = 0
result [ ' start ' ] = datetime . utcnow ( )
result [ ' start ' ] = datetime . utcnow ( )
@ -214,42 +275,49 @@ class ActionModule(ActionBase):
if reboot_result [ ' rc ' ] != 0 :
if reboot_result [ ' rc ' ] != 0 :
result [ ' failed ' ] = True
result [ ' failed ' ] = True
result [ ' rebooted ' ] = False
result [ ' rebooted ' ] = False
result [ ' msg ' ] = " Shutdown command failed. Error was %s , %s " % (
result [ ' msg ' ] = " Reboot command failed. Error was {stdout} , {stderr} " . format (
to_native ( reboot_result [ ' stdout ' ] . strip ( ) ) , to_native ( reboot_result [ ' stderr ' ] . strip ( ) ) )
stdout = to_native ( reboot_result [ ' stdout ' ] . strip ( ) ) ,
stderr = to_native ( reboot_result [ ' stderr ' ] . strip ( ) ) )
return result
return result
result [ ' failed ' ] = False
result [ ' failed ' ] = False
# attempt to store the original connection_timeout option var so it can be reset after
self . _original_connection_timeout = None
try :
self . _original_connection_timeout = self . _connection . get_option ( ' connection_timeout ' )
except AnsibleError :
display . debug ( " %s : connect_timeout connection option has not been set " % self . _task . action )
return result
return result
def validate_reboot ( self ):
def validate_reboot ( self , distribution , original_connection_timeout = None , action_kwargs = None ) :
display . debug( ' %s : Validating reboot ' % self . _task . action )
display . vvv ( ' {action} : validating reboot ' . format ( action = self . _task . action ) )
result = { }
result = { }
try :
try :
# keep on checking system boot_time with short connection responses
# keep on checking system boot_time with short connection responses
reboot_timeout = int ( self . _task . args . get ( ' reboot_timeout ' , self . _task . args . get ( ' reboot_timeout_sec ' , self . DEFAULT_REBOOT_TIMEOUT ) ) )
reboot_timeout = int ( self . _task . args . get ( ' reboot_timeout ' , self . _task . args . get ( ' reboot_timeout_sec ' , self . DEFAULT_REBOOT_TIMEOUT ) ) )
connect_timeout = self . _task . args . get ( ' connect_timeout ' , self . _task . args . get ( ' connect_timeout_sec ' , self . DEFAULT_CONNECT_TIMEOUT ) )
connect_timeout = self . _task . args . get ( ' connect_timeout ' , self . _task . args . get ( ' connect_timeout_sec ' , self . DEFAULT_CONNECT_TIMEOUT ) )
self . do_until_success_or_timeout ( self . check_boot_time , reboot_timeout , action_desc = " boot_time check " )
if connect_timeout :
self . do_until_success_or_timeout (
action = self . check_boot_time ,
action_desc = " last boot time check " ,
reboot_timeout = reboot_timeout ,
distribution = distribution ,
action_kwargs = action_kwargs )
if connect_timeout and original_connection_timeout :
try :
try :
self . _connection . set_option ( " connection_timeout " , connect_timeout )
display . debug ( " {action} : setting connect_timeout back to original value of {value} " . format (
action = self . _task . action ,
value = original_connection_timeout ) )
self . _connection . set_option ( " connection_timeout " , original_connection_timeout )
self . _connection . reset ( )
self . _connection . reset ( )
except ( AnsibleError , AttributeError ) as e :
except ( AnsibleError , AttributeError ) as e :
# reset the connection to clear the custom connection timeout
# reset the connection to clear the custom connection timeout
display . debug ( " Failed to reset connection_timeout back to default: %s " % to_text ( e ) )
display . debug ( " {action} : failed to reset connection_timeout back to default: {error} " . format ( action = self . _task . action , error = to_text ( e ) ) )
# finally run test command to ensure everything is working
# finally run test command to ensure everything is working
# FUTURE: add a stability check (system must remain up for N seconds) to deal with self-multi-reboot updates
# FUTURE: add a stability check (system must remain up for N seconds) to deal with self-multi-reboot updates
self . do_until_success_or_timeout ( self . run_test_command , reboot_timeout , action_desc = " post-reboot test command " )
self . do_until_success_or_timeout (
action = self . run_test_command ,
action_desc = " post-reboot test command " ,
reboot_timeout = reboot_timeout ,
distribution = distribution ,
action_kwargs = action_kwargs )
result [ ' rebooted ' ] = True
result [ ' rebooted ' ] = True
result [ ' changed ' ] = True
result [ ' changed ' ] = True
@ -269,13 +337,13 @@ class ActionModule(ActionBase):
# If running with local connection, fail so we don't reboot ourself
# If running with local connection, fail so we don't reboot ourself
if self . _connection . transport == ' local ' :
if self . _connection . transport == ' local ' :
msg = ' Running {0} with local connection would reboot the control node. ' . format ( self . _task . action )
msg = ' Running {0} with local connection would reboot the control node. ' . format ( self . _task . action )
return dict ( changed = False , elapsed = 0 , rebooted = False , failed = True , msg = msg )
return { ' changed ' : False , ' elapsed ' : 0 , ' rebooted ' : False , ' failed ' : True , ' msg ' : msg }
if self . _play_context . check_mode :
if self . _play_context . check_mode :
return dict ( changed = True , elapsed = 0 , rebooted = True )
return { ' changed ' : True , ' elapsed ' : 0 , ' rebooted ' : True }
if task_vars is None :
if task_vars is None :
task_vars = dict ( )
task_vars = { }
self . deprecated_args ( )
self . deprecated_args ( )
@ -284,17 +352,26 @@ class ActionModule(ActionBase):
if result . get ( ' skipped ' , False ) or result . get ( ' failed ' , False ) :
if result . get ( ' skipped ' , False ) or result . get ( ' failed ' , False ) :
return result
return result
distribution = self . get_distribution ( task_vars )
# Get current boot time
# Get current boot time
try :
try :
self . _ previous_boot_time = self . get_system_boot_time ( )
previous_boot_time = self . get_system_boot_time ( distribution )
except Exception as e :
except Exception as e :
result [ ' failed ' ] = True
result [ ' failed ' ] = True
result [ ' reboot ' ] = False
result [ ' reboot ' ] = False
result [ ' msg ' ] = to_text ( e )
result [ ' msg ' ] = to_text ( e )
return result
return result
# Get the original connection_timeout option var so it can be reset after
original_connection_timeout = None
try :
original_connection_timeout = self . _connection . get_option ( ' connection_timeout ' )
display . debug ( " {action} : saving original connect_timeout of {timeout} " . format ( action = self . _task . action , timeout = original_connection_timeout ) )
except AnsibleError :
display . debug ( " {action} : connect_timeout connection option has not been set " . format ( action = self . _task . action ) )
# Initiate reboot
# Initiate reboot
reboot_result = self . perform_reboot ( )
reboot_result = self . perform_reboot ( task_vars , distribution )
if reboot_result [ ' failed ' ] :
if reboot_result [ ' failed ' ] :
result = reboot_result
result = reboot_result
@ -302,16 +379,13 @@ class ActionModule(ActionBase):
result [ ' elapsed ' ] = elapsed . seconds
result [ ' elapsed ' ] = elapsed . seconds
return result
return result
post_reboot_delay = int ( self . _task . args . get ( ' post_reboot_delay ' , self . _task . args . get ( ' post_reboot_delay_sec ' , self . DEFAULT_POST_REBOOT_DELAY ) ) )
if self . post_reboot_delay != 0 :
if post_reboot_delay < 0 :
display . debug ( " {action} : waiting an additional {delay} seconds " . format ( action = self . _task . action , delay = self . post_reboot_delay ) )
post_reboot_delay = 0
display . vvv ( " {action} : waiting an additional {delay} seconds " . format ( action = self . _task . action , delay = self . post_reboot_delay ) )
time . sleep ( self . post_reboot_delay )
if post_reboot_delay != 0 :
display . vvv ( " %s : waiting an additional %d seconds " % ( self . _task . action , post_reboot_delay ) )
time . sleep ( post_reboot_delay )
# Make sure reboot was successful
# Make sure reboot was successful
result = self . validate_reboot ( )
result = self . validate_reboot ( distribution , original_connection_timeout , action_kwargs = { ' previous_boot_time ' : previous_boot_time } )
elapsed = datetime . utcnow ( ) - reboot_result [ ' start ' ]
elapsed = datetime . utcnow ( ) - reboot_result [ ' start ' ]
result [ ' elapsed ' ] = elapsed . seconds
result [ ' elapsed ' ] = elapsed . seconds