|
|
|
@ -113,6 +113,7 @@ sub do_reboot |
|
|
|
|
my ($anvil) = @_; |
|
|
|
|
|
|
|
|
|
# Mark that a reboot is needed, in case something kills us before we actually reboot. |
|
|
|
|
$anvil->Log->entry({source => $THIS_FILE, line => __LINE__, level => 1, key => "log_0687", variables => { reason => "log_0693" }}); |
|
|
|
|
my ($job_uuid) = $anvil->Database->insert_or_update_jobs({ |
|
|
|
|
file => $THIS_FILE, |
|
|
|
|
line => __LINE__, |
|
|
|
@ -1233,7 +1234,7 @@ sub reconfigure_network |
|
|
|
|
# If we should reset, do so now. |
|
|
|
|
if ($anvil->data->{sys}{reboot}) |
|
|
|
|
{ |
|
|
|
|
$anvil->Log->entry({source => $THIS_FILE, line => __LINE__, level => 0, 'print' => 1, key => "log_0631"}); |
|
|
|
|
$anvil->Log->entry({source => $THIS_FILE, line => __LINE__, level => 1, 'print' => 1, key => "log_0687", variables => { reason => "log_0631" }}); |
|
|
|
|
do_reboot($anvil); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -1241,7 +1242,7 @@ sub reconfigure_network |
|
|
|
|
{ |
|
|
|
|
# In an attempt to make network changes more reliable, we'll just reboot. This shouldn't |
|
|
|
|
# actually be hit anymore as any change should have triggered the reboot above. |
|
|
|
|
$anvil->Log->entry({source => $THIS_FILE, line => __LINE__, level => 0, 'print' => 1, key => "log_0631"}); |
|
|
|
|
$anvil->Log->entry({source => $THIS_FILE, line => __LINE__, level => 1, 'print' => 1, key => "log_0687", variables => { reason => "log_0631" }}); |
|
|
|
|
do_reboot($anvil); |
|
|
|
|
|
|
|
|
|
# # Re-read the config |
|
|
|
|