#!/bin/sh

set -e

if which gpg > /dev/null && which apt-key > /dev/null; then
  TRUSTEDFILE='/etc/apt/trusted.gpg'
  eval $(apt-config shell TRUSTEDFILE Apt::GPGV::TrustedKeyring)
  eval $(apt-config shell TRUSTEDFILE Dir::Etc::Trusted/f)
  if [ -e "$TRUSTEDFILE" ]; then
    apt-key --keyring "$TRUSTEDFILE" del "B014A343"  > /dev/null 2>&1 || :
  fi
fi

#DEBHELPER#
