[Ubuntu] inject ansible pkg (#3047)

* inject ansible pkg

* fix comment

* fix comment
This commit is contained in:
Aleksandr Chebotov
2021-03-29 16:29:12 +03:00
committed by GitHub
parent 6747127d83
commit 6ac1661557

View File

@@ -18,6 +18,11 @@ for package in $pipx_packages; do
else
echo "Install $package into default python"
pipx install $package
# Install ansible into an existing ansible-base Virtual Environment
if [[ $package == "ansible-base" ]]; then
pipx inject ansible-base ansible
fi
fi
done