mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-05-10 14:44:22 +02:00
10 lines
136 B
Text
10 lines
136 B
Text
|
#!/bin/sh
|
||
|
|
||
|
for i in gtk-2 gnome qt; do
|
||
|
[ -f /usr/bin/pinentry-$i ] && exit 0
|
||
|
done
|
||
|
|
||
|
ln -sf pinentry-curses-ss /usr/bin/pinentry
|
||
|
|
||
|
exit 0
|