10 lines
124 B
Plaintext
10 lines
124 B
Plaintext
|
|
#! /bin/sh
|
||
|
|
|
||
|
|
set -e
|
||
|
|
|
||
|
|
if [ "$1" = remove ]; then
|
||
|
|
update-alternatives --quiet --remove pinentry /usr/bin/pinentry-curses
|
||
|
|
fi
|
||
|
|
|
||
|
|
|