2c23c6beba
* Added a 'test' parameter to Log->entry, Storage->make_directory and Words->key to help debug in places that Log->x may not be usable. * Converted many $anvil->Log->x calls to print if $test to help prevent recursive loops, but not all fixed yet. * Added the new 'host_keys' database table to the schema for a possible new feature of removing passwords in favour if machines adding peers' public keys to their authorized_hosts file. * Cleaned up the opening calls to $anvil->Tools->new() in most tools. * Cleaned up some variables in tools/anvil-update-states after reading their values from files (clean trailing newlines). Signed-off-by: Digimer <digimer@alteeve.ca>
37 lines
1.1 KiB
Perl
Executable File
37 lines
1.1 KiB
Perl
Executable File
#!/usr/bin/perl
|
|
#
|
|
# This program handles running jobs that might take some time to complete.
|
|
#
|
|
# Exit codes;
|
|
# 0 = Normal exit
|
|
# 1 = md5sum of this program changed. Exited to reload.
|
|
#
|
|
# TODO:
|
|
#
|
|
|
|
use strict;
|
|
use warnings;
|
|
use Anvil::Tools;
|
|
|
|
my $THIS_FILE = ($0 =~ /^.*\/(.*)$/)[0];
|
|
my $running_directory = ($0 =~ /^(.*?)\/$THIS_FILE$/)[0];
|
|
if (($running_directory =~ /^\./) && ($ENV{PWD}))
|
|
{
|
|
$running_directory =~ s/^\./$ENV{PWD}/;
|
|
}
|
|
|
|
# Turn off buffering so that the pinwheel will display while waiting for the SSH call(s) to complete.
|
|
$| = 1;
|
|
|
|
my $anvil = Anvil::Tools->new();
|
|
$anvil->Log->entry({source => $THIS_FILE, line => __LINE__, level => 3, secure => 0, key => "log_0115", variables => { program => $THIS_FILE }});
|
|
|
|
# I should have been passed a 'job_uuid'. Read in the details.
|
|
|
|
|
|
$anvil->nice_exit({code => 0});
|
|
|
|
#############################################################################################################
|
|
# Functions #
|
|
#############################################################################################################
|