instead of hardcoding /etc/apt/trusted.gpg, read it from apt-config shell

pull/1/head
parent efaea907e9
commit c26ec4d6fc
Signed by: josch
GPG Key ID: F2CBA5C78FBD83E1

@ -2685,6 +2685,13 @@ sub main() {
# copy ARGV because getopt modifies it
my @ARGVORIG = @ARGV;
# obtain the correct defaults for the keyring locations that apt knows
# about
my $apttrusted
= `eval \$(apt-config shell v Dir::Etc::trusted/f); printf \$v`;
my $apttrustedparts
= `eval \$(apt-config shell v Dir::Etc::trustedparts/d); printf \$v`;
chomp(my $hostarch = `dpkg --print-architecture`);
my $options = {
components => ["main"],
@ -2694,8 +2701,8 @@ sub main() {
mode => 'auto',
dpkgopts => [],
aptopts => [],
apttrusted => "/etc/apt/trusted.gpg",
apttrustedparts => "/etc/apt/trusted.gpg.d",
apttrusted => $apttrusted,
apttrustedparts => $apttrustedparts,
noop => [],
setup_hook => [],
essential_hook => [],

Loading…
Cancel
Save