aboutsummaryrefslogtreecommitdiff
path: root/debian/debian-archive-keyring.postrm
blob: b86240bc947c74b09e98b8568a59c06318769c78 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

set -e

if [ "$1" = "purge" ]
then
  # Remove the symlink
  rm -f /etc/apt/trusted.gpg.d/debian-archive-keyring.gpg
fi

#DEBHELPER#