diff options
Diffstat (limited to 'ubuntu/_base/applications/smartcardauth/debian/smartcardauth.postinst')
-rw-r--r-- | ubuntu/_base/applications/smartcardauth/debian/smartcardauth.postinst | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/ubuntu/_base/applications/smartcardauth/debian/smartcardauth.postinst b/ubuntu/_base/applications/smartcardauth/debian/smartcardauth.postinst new file mode 100644 index 000000000..f9ef17d78 --- /dev/null +++ b/ubuntu/_base/applications/smartcardauth/debian/smartcardauth.postinst @@ -0,0 +1,11 @@ +#!/bin/bash + +set -e + +if [[ $1 = "configure" ]]; then + /usr/bin/setupcard.sh upgrade +fi + +#DEBHELPER# + +exit 0 |