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