вторник, 31 мая 2016 г., 21:27:11 UTC+6 пользователь [email protected] написал: > > > <https://lh3.googleusercontent.com/-dfk3K_2Ml6U/V02tOCkLcwI/AAAAAAAAAAM/gdB4Sz_T1j0aWVwzfCLgwxJ7V305dqyBgCLcB/s1600/ansible.PNG> > > > I am in need of assistance in upgrading Ansible to version 2.0. Every time > I attempt to install I get the 1.7.2 version. I have about 10 windows vm > machines that I am looking to manage with the Ansible application and it is > my understanding that 2.0 is more friendly to windows then previous > version. Any help you can offer would be greatly appreciated. I have > attached a screen shot of the version number. > > Thank you > Looks like you trying to install it on Debian 8 where only Ansible 1.7.2 is on the standard repos. You'd tried to add Ubuntu repos and that will not help
Try that: sudo apt-get update sudo apt-get install python-pip python-dev git -y sudo pip install PyYAML jinja2 paramiko git clone https://github.com/ansible/ansible.git cd ansible sudo make install sudo mkdir /etc/ansible sudo cp ~/ansible/examples/hosts /etc/ansible/. -- You received this message because you are subscribed to the Google Groups "Ansible Project" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/ansible-project/755cc0dd-9f3d-4b62-b213-5be95fe5d039%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
