Question:
Running debian jessie
I installed Ansible using the following procedure:
1 2 3 4 5 6 7 |
apt-get update sudo apt-get install python-yaml python-pip python-jinja2 python-paramiko pip git clone https://github.com/ansible/ansible.git cd ansible git submodule update --init --recursive sudo make install |
Is there a way to cleanly uninstall Ansible that does not involve sifting through my directory tree and deleting?
The aim is to reinstall Ansible version 1.9 instead of the latest 2.1.0
Answer:
Your best bet is to install checkinstall, run the install again under checkinstalls control, and then use dpkg to remove things.