1
0
mirror of https://github.com/veracrypt/VeraCrypt.git synced 2025-11-11 19:08:26 -06:00

Linux/FreeBSD: Make pcsclite a dependency of the packages and the generic installer

This commit is contained in:
Mounir IDRASSI
2023-06-29 23:15:03 +02:00
parent b750c67810
commit 417ff5564e
4 changed files with 15 additions and 13 deletions

View File

@@ -1031,14 +1031,15 @@ fi
if [ "$PACKAGE_TYPE" = "tar" ]
then
if ! which fusermount >/dev/null 2>/dev/null || ! which dmsetup >/dev/null 2>/dev/null
if ! which fusermount >/dev/null 2>/dev/null || ! which dmsetup >/dev/null 2>/dev/null || ! service pcscd status >/dev/null 2>/dev/null
then
show_message "$(cat <<_INFO
Requirements for Running VeraCrypt:
-----------------------------------
- FUSE library and tools
- device mapper tools
- device mapper tool
- PC/SC Lite (optional)
_INFO
)"

View File

@@ -1035,7 +1035,7 @@ fi
if [ "$PACKAGE_TYPE" = "tar" ]
then
if ! which fusermount >/dev/null 2>/dev/null || ! which dmsetup >/dev/null 2>/dev/null
if ! which fusermount >/dev/null 2>/dev/null || ! which dmsetup >/dev/null 2>/dev/null || ! service pcscd status >/dev/null 2>/dev/null
then
show_message "$(cat <<_INFO
Requirements for Running VeraCrypt:
@@ -1043,6 +1043,7 @@ Requirements for Running VeraCrypt:
- FUSE library and tools
- device mapper tools
- PC/SC Lite (optional)
_INFO
)"