mirror of
https://github.com/duncs/clusterssh.git
synced 2025-07-01 17:11:14 +00:00
Rearrange initialisation order
This commit is contained in:
parent
fdf4d0c1dd
commit
d684b077fd
1 changed files with 3 additions and 3 deletions
|
@ -54,10 +54,10 @@ sub new {
|
||||||
|
|
||||||
my $self = $class->SUPER::new(%args);
|
my $self = $class->SUPER::new(%args);
|
||||||
|
|
||||||
$self->{cluster} = App::ClusterSSH::Cluster->new( parent => $self, );
|
|
||||||
$self->{config} = App::ClusterSSH::Config->new( parent => $self, );
|
|
||||||
$self->{helper} = App::ClusterSSH::Helper->new( parent => $self, );
|
|
||||||
$self->{options} = App::ClusterSSH::Getopt->new( parent => $self, );
|
$self->{options} = App::ClusterSSH::Getopt->new( parent => $self, );
|
||||||
|
$self->{config} = App::ClusterSSH::Config->new( parent => $self, );
|
||||||
|
$self->{cluster} = App::ClusterSSH::Cluster->new( parent => $self, );
|
||||||
|
$self->{helper} = App::ClusterSSH::Helper->new( parent => $self, );
|
||||||
|
|
||||||
# catch and reap any zombies
|
# catch and reap any zombies
|
||||||
$SIG{CHLD} = sub {
|
$SIG{CHLD} = sub {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue