mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-06-06 00:34:41 +02:00
12 lines
254 B
Bash
12 lines
254 B
Bash
#!/bin/sh
|
|
|
|
if [ "$(readlink /usr/bin/pinentry)" = "pinentry-curses-ss" ]; then
|
|
rm /usr/bin/pinentry
|
|
|
|
# restore symlink to pinentry-curses, if exists
|
|
if [ -x "/usr/bin/pinentry-curses" ]; then
|
|
ln -sfv pinentry-curses /usr/bin/pinentry
|
|
fi
|
|
fi
|
|
|
|
exit 0
|