Added getfacl because not present in 20.04 ootb (#1955)

At least in the 20.04 cloud image is not included ootb
and it is required in
https://github.com/armbian/build/blob/master/lib/configuration.sh#L321
This commit is contained in:
Eduardo Mínguez
2020-05-10 11:27:14 +02:00
committed by GitHub
parent 89b5e5f782
commit 2243da9491

View File

@@ -89,6 +89,10 @@ if [[ -z "$(which dialog)" ]]; then
sudo apt-get update
sudo apt-get install -y dialog
fi
if [[ -z "$(which getfacl)" ]]; then
sudo apt-get update
sudo apt-get install -y acl
fi
# Check for Vagrant
if [[ "$1" == vagrant && -z "$(which vagrant)" ]]; then