Add clause in localhost-deploy to use apk if found

This commit is contained in:
Salt 2020-09-02 17:47:03 -05:00
parent e09604540d
commit 975b2ea938

View File

@ -9,7 +9,13 @@
set -e
if ! command -v ansible > /dev/null 2>&1; then
printf "Installing Ansible and related packages\n"
sudo apt-get install python3-pip python3-setuptools -y
if command -v apt > /dev/null 2>&1; then
printf "Installing via APT\n"
sudo apt-get install python3-pip python3-setuptools -y
elif command -v pkg > /dev/null 2>&1; then
printf "Installing via APK\n"
sudo apk add py3-pip py3-setuptools
fi
sudo pip3 install ansible
fi
ansible-playbook site.yml -l "$HOSTNAME" -e "ansible_user=$USER ansible_connection=local ansible_host=localhost" --ask-become-pass --ask-vault-pass "$@"