forked from josch/mmdebstrap
add --skip=setup, --skip=update and --skip=cleanup
This commit is contained in:
parent
d62c5b7a91
commit
f868073b6e
1 changed files with 18 additions and 6 deletions
18
mmdebstrap
18
mmdebstrap
|
@ -1444,11 +1444,19 @@ sub setup {
|
||||||
warning "cannot read $options->{apttrustedparts}";
|
warning "cannot read $options->{apttrustedparts}";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (any { $_ eq 'setup' } @{ $options->{skip} }) {
|
||||||
|
info "skipping setup as requested";
|
||||||
|
} else {
|
||||||
run_setup($options);
|
run_setup($options);
|
||||||
|
}
|
||||||
|
|
||||||
run_hooks('setup', $options);
|
run_hooks('setup', $options);
|
||||||
|
|
||||||
|
if (any { $_ eq 'update' } @{ $options->{skip} }) {
|
||||||
|
info "skipping update as requested";
|
||||||
|
} else {
|
||||||
run_update($options);
|
run_update($options);
|
||||||
|
}
|
||||||
|
|
||||||
(my $pkgs_to_install, my $essential_pkgs, my $cached_debs)
|
(my $pkgs_to_install, my $essential_pkgs, my $cached_debs)
|
||||||
= run_download($options);
|
= run_download($options);
|
||||||
|
@ -1480,7 +1488,11 @@ sub setup {
|
||||||
run_hooks('customize', $options);
|
run_hooks('customize', $options);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (any { $_ eq 'cleanup' } @{ $options->{skip} }) {
|
||||||
|
info "skipping cleanup as requested";
|
||||||
|
} else {
|
||||||
run_cleanup($options);
|
run_cleanup($options);
|
||||||
|
}
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -6614,7 +6626,7 @@ Upon startup, several checks are carried out, like:
|
||||||
|
|
||||||
=item B<setup>
|
=item B<setup>
|
||||||
|
|
||||||
The following tasks are carried out:
|
The following tasks are carried out unless B<--skip=setup> is used:
|
||||||
|
|
||||||
=over 4
|
=over 4
|
||||||
|
|
||||||
|
@ -6639,7 +6651,7 @@ Run B<--setup-hook> options and all F<setup*> scripts in B<--hook-dir>.
|
||||||
=item B<update>
|
=item B<update>
|
||||||
|
|
||||||
Runs C<apt-get update> using the temporary apt configuration file created in
|
Runs C<apt-get update> using the temporary apt configuration file created in
|
||||||
the B<setup> step.
|
the B<setup> step. This can be disabled using B<--skip=update>.
|
||||||
|
|
||||||
=item B<download>
|
=item B<download>
|
||||||
|
|
||||||
|
@ -6696,7 +6708,7 @@ This step is not carried out in B<extract> mode.
|
||||||
|
|
||||||
=item B<cleanup>
|
=item B<cleanup>
|
||||||
|
|
||||||
Performs cleanup tasks like:
|
Performs cleanup tasks, unless B<--skip=cleanup> is used:
|
||||||
|
|
||||||
=over 4
|
=over 4
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue