do not print setup() arguments by default

This commit is contained in:
Johannes 'josch' Schauer 2018-09-24 20:09:43 +02:00
parent e7e6ec0314
commit b827e58d07
Signed by untrusted user: josch
GPG key ID: F2CBA5C78FBD83E1

View file

@ -552,6 +552,7 @@ sub run_apt_progress {
sub setup {
my $options = shift;
if (0) {
foreach my $key (sort keys %{$options}) {
my $value = $options->{$key};
if (!defined $value) {
@ -565,6 +566,7 @@ sub setup {
die "unknown type";
}
}
}
my ($conf, $tmpfile) = tempfile(UNLINK => 1) or die "cannot open apt.conf: $!";
print $conf "Apt::Architecture \"$options->{nativearch}\";\n";