From 2243da949109861762d12fc91acd96fe885a294e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eduardo=20M=C3=ADnguez?= Date: Sun, 10 May 2020 11:27:14 +0200 Subject: [PATCH] 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 --- compile.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/compile.sh b/compile.sh index 718ca75f26..b392b651be 100755 --- a/compile.sh +++ b/compile.sh @@ -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