"msg": "The Python 2 bindings for rpm are needed for this module. If you require Python 3 support use the `dnf` Ansible module instead.. The Python 2 yum module is needed for this module. If you require Python 3 support use the `dnf` Ansible module instead."}
запускаю плейбук
- name: test
hosts: all
become: yes
tasks:
- name: install apache
yum: name=httpd state=latest
- name: start apache
service: name=httpd state=started enabled=yes
в vars уже пробовал и
[vscale:vars]
ansible_python_interpreter=/usr/bin/python2.7
и
[vscale:vars]
ansible_python_interpreter=/usr/bin/python3
ничего не помогает
Ну там же написано. Если на целевых хостах 3й питон, нужно использовать модуль dnf вместо yum.
Обсуждают сегодня