Added psmisc package as a requirement for fuser (#2164)

This commit is contained in:
Uli Middelberg
2020-08-28 11:50:42 +02:00
committed by GitHub
parent a4dfc35ddb
commit 58740edbd8

View File

@@ -118,6 +118,10 @@ if [[ -z "$(command -v dialog)" ]]; then
sudo apt-get update sudo apt-get update
sudo apt-get install -y dialog sudo apt-get install -y dialog
fi fi
if [[ -z "$(command -v fuser)" ]]; then
sudo apt-get update
sudo apt-get install -y psmisc
fi
if [[ -z "$(command -v getfacl)" ]]; then if [[ -z "$(command -v getfacl)" ]]; then
sudo apt-get update sudo apt-get update
sudo apt-get install -y acl sudo apt-get install -y acl