parent
827a3f2ee4
commit
1ec03c9718
2 changed files with 3 additions and 35 deletions
@ -1,32 +0,0 @@ |
||||
#!/usr/bin/perl |
||||
# |
||||
|
||||
use strict; |
||||
use warnings; |
||||
use Anvil::Tools; |
||||
use Data::Dumper; |
||||
|
||||
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 => 2, key => "log_0115", variables => { program => $THIS_FILE }}); |
||||
|
||||
# Read switches (target ([user@]host[:port]) and the file with the target's password. |
||||
$anvil->Get->switches; |
||||
|
||||
# Connect to the database(s). |
||||
$anvil->Database->connect({debug => 3}); |
||||
$anvil->Log->entry({source => $THIS_FILE, line => __LINE__, level => 2, key => "log_0132"}); |
||||
|
||||
my ($minor, $tcp_port) = $anvil->DRBD->get_next_resource({debug => 2}); |
||||
print "Next free minor: [".$minor."], tcp port: [".$tcp_port."]\n"; |
||||
|
||||
$anvil->nice_exit({exit_code => 0}); |
Loading…
Reference in new issue