forked from josch/mmdebstrap
print warning if apt trusted cannot be read
This commit is contained in:
parent
75428e37dd
commit
c45e7d9baf
1 changed files with 7 additions and 0 deletions
|
@ -1175,6 +1175,13 @@ sub setup {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (-e $options->{apttrusted} && !-r $options->{apttrusted}) {
|
||||||
|
warning "cannot read $options->{apttrusted}";
|
||||||
|
}
|
||||||
|
if (-e $options->{apttrustedparts} && !-r $options->{apttrustedparts}) {
|
||||||
|
warning "cannot read $options->{apttrustedparts}";
|
||||||
|
}
|
||||||
|
|
||||||
my ($conf, $tmpfile) = tempfile(UNLINK => 1)
|
my ($conf, $tmpfile) = tempfile(UNLINK => 1)
|
||||||
or error "cannot open apt.conf: $!";
|
or error "cannot open apt.conf: $!";
|
||||||
print $conf "Apt::Architecture \"$options->{nativearch}\";\n";
|
print $conf "Apt::Architecture \"$options->{nativearch}\";\n";
|
||||||
|
|
Loading…
Reference in a new issue