commit | author | age | ||
207ea2 | 1 | #!/bin/sh -e |
JK | 2 | |
3 | if [ "$1" = "configure" ] | |
4 | then | |
5 | CONFFILE=/etc/default/pzsigner | |
6 | ||
7 | . /usr/share/debconf/confmodule | |
8 | ||
9 | db_get pzsigner/pkcs11_library | |
10 | echo "# Do NOT modify this file directly! Instead use:" > ${CONFFILE} | |
11 | echo "# dpkg-reconfigure pzsigner" >> ${CONFFILE} | |
12 | echo >> ${CONFFILE} | |
13 | echo "PKCS11_LIBRARY=${RET}" >> ${CONFFILE} | |
14 | fi | |
15 | ||
16 | #DEBHELPER# |