mmdebstrap: Show APT's dependency trace when in debug mode #24
1 changed files with 10 additions and 0 deletions
10
mmdebstrap
10
mmdebstrap
|
@ -961,6 +961,16 @@ sub run_apt_download_progress {
|
|||
} else {
|
||||
info "downloading packages with apt...";
|
||||
}
|
||||
|
||||
if ($verbosity_level >= 3) {
|
||||
my @apt_debug_opts = qw(
|
||||
-oDebug::pkgProblemResolver=true
|
||||
-oDebug::pkgDepCache::Marker=1
|
||||
-oDebug::pkgDepCache::AutoInstall=1
|
||||
);
|
||||
push @{ $options->{APT_ARGV} }, @apt_debug_opts;
|
||||
}
|
||||
|
||||
pipe my $rfh, my $wfh;
|
||||
my $pid = open my $fh, '-|' // error "fork() failed: $!";
|
||||
if ($pid == 0) {
|
||||
|
|
Loading…
Reference in a new issue