forked from josch/mmdebstrap
dump contents of /etc/apt/apt.conf.d/99mmdebstrap and /etc/dpkg/dpkg.cfg.d/99mmdebstrap in debug mode
This commit is contained in:
parent
f6214e343f
commit
9195972bef
1 changed files with 9 additions and 0 deletions
|
@ -1405,6 +1405,10 @@ sub run_setup() {
|
|||
}
|
||||
}
|
||||
close $fh;
|
||||
if ($verbosity_level >= 3) {
|
||||
debug "content of /etc/apt/apt.conf.d/99mmdebstrap:";
|
||||
copy("$options->{root}/etc/apt/apt.conf.d/99mmdebstrap", \*STDERR);
|
||||
}
|
||||
}
|
||||
|
||||
if (scalar @{ $options->{dpkgopts} } > 0) {
|
||||
|
@ -1426,6 +1430,11 @@ sub run_setup() {
|
|||
}
|
||||
}
|
||||
close $fh;
|
||||
if ($verbosity_level >= 3) {
|
||||
debug "content of /etc/dpkg/dpkg.cfg.d/99mmdebstrap:";
|
||||
copy("$options->{root}/etc/dpkg/dpkg.cfg.d/99mmdebstrap",
|
||||
\*STDERR);
|
||||
}
|
||||
}
|
||||
|
||||
## setup merged usr
|
||||
|
|
Loading…
Reference in a new issue