no
warnings
"experimental::signatures"
;
our
$VERSION
=
"v1.4.3"
;
abstract
=>
q[bootstrap system image from abstract node]
,
usage_desc
=>
q[%c bootstrap %o NODE [NODE...]
[-- helper-options]],
};
sub
description
{
<<'DESCRIPTION';
Bootstrap a system image.
Generate a filesystem image. Input is one or more abstract nodes
to resolve using a set of abstract classes, and output is one or more
images generated using a bootstrapping tool.
DESCRIPTION
}
sub
command_names
{
qw(
bootstrap
)
;
}
sub
opt_spec
{
return
(
[
"suite=s"
,
"suite of classes to use (buster)"
],
[
"nodedir=s"
,
"location of nodes (current dir)"
],
[
"classdir=s"
,
"location of classes (XDG datadir + suite/classes)"
],
[
"datadir=s"
,
"location containing nodes and classes"
],
[
"skeldir=s"
,
"location of skeleton files (use builtin)"
],
[
"mode=s"
,
"mode passed to helper, and use sudo in sudo mode"
],
[
"helper=s"
,
"bootstrapping tool to use (mmdebstrap)"
],
[
"nonfree"
,
"enable use of contrib and non-free code"
],
[
"dryrun"
,
"only echo command, without executing it"
],
[
"verbose|v"
,
"verbose output"
],
);
}
sub
execute (
$self
,
$opt
,
$args
)
{
Log::Any::Adapter->set(
'Screen'
,
default_level
=>
'info'
)
if
(
$opt
->{verbose} );
my
@args
=
before
{
$_
eq
'--'
} @{
$args
};
my
@helper_args
=
after
{
$_
eq
'--'
} @{
$args
};
my
$world
= use_module(
'Boxer::Task::Classify'
)->new(
suite
=>
$opt
->{suite},
nodedir
=>
$opt
->{nodedir},
classdir
=>
$opt
->{classdir},
datadir
=>
$opt
->{datadir},
)->run;
for
my
$node
(
@args
) {
use_module(
'Boxer::Task::Bootstrap'
)->new(
world
=>
$world
,
helper
=>
$opt
->{helper} ||
'mmdebstrap'
,
mode
=>
$opt
->{mode},
helper_args
=> [
@helper_args
],
nonfree
=>
$opt
->{nonfree},
dryrun
=>
$opt
->{dryrun},
node
=>
$node
,
)->run;
}
}
our
$AUTHORITY
=
'cpan:JONASS'
;
1;