diff options
author | 2023-02-15 15:37:47 +0600 | |
---|---|---|
committer | 2023-02-15 15:38:02 +0600 | |
commit | 1f972ea8f4cbf984ac972b3471903b156e39d283 (patch) | |
tree | 39d8ebed6bd1b6828db97f9d0a7d1fe666880ac9 /debian/debian-archive-keyring.postrm | |
download | jadupc-archive-keyring-1f972ea8f4cbf984ac972b3471903b156e39d283.tar.gz jadupc-archive-keyring-1f972ea8f4cbf984ac972b3471903b156e39d283.zip |
Initial release
Signed-off-by: Mubashshir <ahm@jadupc.com>
Diffstat (limited to 'debian/debian-archive-keyring.postrm')
-rw-r--r-- | debian/debian-archive-keyring.postrm | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/debian/debian-archive-keyring.postrm b/debian/debian-archive-keyring.postrm new file mode 100644 index 0000000..b86240b --- /dev/null +++ b/debian/debian-archive-keyring.postrm @@ -0,0 +1,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# + |