forked from josch/mmdebstrap
run apt with -oDebug:: options for all calls and not only in run_download()
This commit is contained in:
parent
090ce862c7
commit
b990a3aa09
1 changed files with 12 additions and 11 deletions
23
mmdebstrap
23
mmdebstrap
|
@ -961,8 +961,18 @@ sub run_dpkg_progress {
|
|||
}
|
||||
|
||||
sub run_apt_progress {
|
||||
my $options = shift;
|
||||
my @debs = @{ $options->{PKGS} // [] };
|
||||
my $options = shift;
|
||||
my @debs = @{ $options->{PKGS} // [] };
|
||||
|
||||
if ($verbosity_level >= 3) {
|
||||
my @apt_debug_opts = qw(
|
||||
-oDebug::pkgProblemResolver=true
|
||||
-oDebug::pkgDepCache::Marker=1
|
||||
-oDebug::pkgDepCache::AutoInstall=1
|
||||
);
|
||||
push @{ $options->{ARGV} }, @apt_debug_opts;
|
||||
}
|
||||
|
||||
my $get_exec = sub {
|
||||
my @prefix = ();
|
||||
my @opts = ();
|
||||
|
@ -1031,15 +1041,6 @@ sub run_apt_download_progress {
|
|||
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