no
warnings
"experimental::signatures"
;
our
$VERSION
=
"v1.4.3"
;
has
world
=> (
is
=>
'ro'
,
isa
=> InstanceOf [
'Boxer::World'
],
required
=> 1,
);
has
node
=> (
is
=>
'ro'
,
isa
=> Str,
required
=> 1,
);
has
helper
=> (
is
=>
'ro'
,
isa
=> Str,
required
=> 1,
);
has
mode
=> (
is
=>
'ro'
,
isa
=> Maybe [Str],
);
has
helper_args
=> (
is
=>
'ro'
,
isa
=> ArrayRef,
);
has
nonfree
=> (
is
=>
'ro'
,
isa
=> Bool,
required
=> 1,
default
=>
sub
{0},
);
has
apt
=> (
is
=>
'lazy'
,
isa
=> Bool,
);
sub
_build_apt (
$self
)
{
my
$flag
;
foreach
my
$helper
(
qw(mmdebstrap)
) {
if
(
$self
->{helper} eq
$helper
) {
$self
->_logger->tracef(
'Enabling apt mode needed by bootstrap helper %s'
,
$helper
,
);
return
1;
}
}
return
0;
}
has
dryrun
=> (
is
=>
'ro'
,
isa
=> Bool,
required
=> 1,
default
=>
sub
{0},
);
sub
run (
$self
)
{
my
$world
=
$self
->world->
map
(
$self
->node,
$self
->nonfree, );
my
@opts
;
my
@pkgs
=
sort
@{
$world
->pkgs };
my
@pkgs_avoid
=
sort
@{
$world
->pkgs_avoid };
if
(
$self
->apt ) {
push
@pkgs
,
sort
map
{
$_
.
'-'
}
@pkgs_avoid
;
@pkgs_avoid
= ();
}
push
@opts
,
'--include'
,
join
(
','
,
@pkgs
)
if
(
@pkgs
);
push
@opts
,
'--exclude'
,
join
(
','
,
@pkgs_avoid
)
if
(
@pkgs_avoid
);
push
@opts
,
$world
->epoch, @{
$self
->mode,
$self
->helper_args };
my
@command
;
if
(
$self
->mode and
$self
->mode eq
'sudo'
) {
@command
= (
'sudo'
,
'--'
,
$self
->helper,
@opts
);
}
else
{
@command
= (
$self
->helper,
@opts
);
}
$self
->_logger->info(
"Bootstrap with "
.
$self
->helper,
$self
->_logger->is_debug() ? {
commandline
=> [
@command
] } : (),
);
if
(
$self
->dryrun ) {
$self
->_logger->debug(
'Skip execute command in dry-run mode'
);
}
else
{
runx
@command
;
}
1;
}
our
$AUTHORITY
=
'cpan:JONASS'
;
1;