* Created tools/anvil-clear-reboot to clear the "reboot needed" flag. Also created, but not yet using (and may not use) units/anvil-boot-time.service. * Started work on having jobs show their data via JSON / jquery. * Updated anvil-update-system to record messages indicating the progress so far. Signed-off-by: Digimer <digimer@alteeve.ca>main
parent
51c9d2952d
commit
d147e10552
9 changed files with 267 additions and 61 deletions
@ -0,0 +1,55 @@ |
||||
#!/usr/bin/perl |
||||
# |
||||
# Exit codes; |
||||
# 0 = Normal exit. |
||||
# 1 = No database connections available. |
||||
|
||||
use strict; |
||||
use warnings; |
||||
use Anvil::Tools; |
||||
|
||||
# Disable buffering |
||||
$| = 1; |
||||
|
||||
my $THIS_FILE = ($0 =~ /^.*\/(.*)$/)[0]; |
||||
my $running_directory = ($0 =~ /^(.*?)\/$THIS_FILE$/)[0]; |
||||
if (($running_directory =~ /^\./) && ($ENV{PWD})) |
||||
{ |
||||
$running_directory =~ s/^\./$ENV{PWD}/; |
||||
} |
||||
|
||||
my $anvil = Anvil::Tools->new({log_level => 2, log_secure => 1}); |
||||
|
||||
$anvil->Storage->read_config({file => "/etc/anvil/anvil.conf"}); |
||||
|
||||
# Read switches |
||||
$anvil->Get->switches; |
||||
|
||||
# Connect to DBs. |
||||
$anvil->Database->connect; |
||||
$anvil->Log->entry({source => $THIS_FILE, line => __LINE__, level => 2, secure => 0, key => "log_0132"}); |
||||
if (not $anvil->data->{sys}{database}{connections}) |
||||
{ |
||||
# No databases, exit. |
||||
print $anvil->Words->string({key => "error_0003"})."\n"; |
||||
$anvil->Log->entry({source => $THIS_FILE, line => __LINE__, level => 0, secure => 0, key => "error_0003"}); |
||||
$anvil->nice_exit({exit_code => 1}); |
||||
} |
||||
|
||||
# If the uptime is less than ten minutes, clear the reboot flag. |
||||
my $uptime = $anvil->Storage->read_file({file => $anvil->data->{path}{proc}{uptime}}); |
||||
|
||||
$anvil->Log->entry({source => $THIS_FILE, line => __LINE__, level => 1, secure => 0, key => "log_0200"}); |
||||
$anvil->Database->insert_or_update_variables({ |
||||
variable_name => "reboot::needed", |
||||
variable_value => "0", |
||||
variable_default => "0", |
||||
variable_description => "striker_0089", |
||||
variable_section => "system", |
||||
variable_source_uuid => $anvil->Get->host_uuid, |
||||
variable_source_table => "hosts", |
||||
update_value_only => 1, |
||||
}); |
||||
|
||||
# We're done |
||||
$anvil->nice_exit({exit_code => 0}); |
@ -0,0 +1,13 @@ |
||||
[Unit] |
||||
Description=Anvil! Intelligent Availability Platform - Boot-time tasks |
||||
# Don't run until we can talk to our and our peer's databases. |
||||
Wants=network.target |
||||
Wants=postgresql.service |
||||
|
||||
[Service] |
||||
Type=simple |
||||
ExecStart=/usr/sbin/anvil-clear-reboot |
||||
ExecStop=/bin/kill -WINCH ${MAINPID} |
||||
|
||||
[Install] |
||||
WantedBy=default.target |
Loading…
Reference in new issue