You've already forked ukui-keyring
mirror of
https://github.com/ukui/ukui-keyring.git
synced 2026-03-09 09:29:24 -07:00
9 lines
254 B
Bash
9 lines
254 B
Bash
#!/bin/sh
|
|
|
|
if [ "$1" = "remove" ] || [ "$1" = "purge" ]; then
|
|
if [ -h /etc/apt/trusted.gpg.d/ukui-keyring.gpg ]; then
|
|
# our symlink is still there, we need to remove it to clean up
|
|
rm /etc/apt/trusted.gpg.d/ukui-keyring.gpg
|
|
fi
|
|
fi
|