Add libffi-dev to required packages in localhost-deploy

Weird, it's installed by default on Ubuntu but not in Mobian
This commit is contained in:
Salt 2020-09-04 06:37:31 -05:00
parent d73ce5cbd8
commit 7a955f85cf

View File

@ -11,7 +11,7 @@ if ! command -v ansible > /dev/null 2>&1; then
printf "Installing Ansible and related packages\n"
if command -v apt > /dev/null 2>&1; then
printf "Installing via APT\n"
sudo apt-get install python3-pip python3-setuptools -y
sudo apt-get install libffi-dev python3-pip python3-setuptools -y
elif command -v apk > /dev/null 2>&1; then
printf "Installing via APK\n"
sudo apk add gcc musl-dev py3-cryptography py3-pip py3-setuptools