Ansible
Links
Setup
Ansible mit uv
installieren: uv tool install --with ansible-inventory ansible
.
Das erzeugt jedoch keine Symlinks für die anderen Ansible Tools.
Workaround: Im uv
bin Ordner die Symlinks manuell erzeugen mit:
find $(dirname $(readlink $(which ansible-community))) -name "ansible*" -exec ln -vs "{}" $(dirname $(which ansible-community)) \;
- ToDo: Bessere Lösung finden.
No Comments