Metadata-Version: 1.1
Name: ansible-vagrant
Version: 1.1.2
Summary: Simple helper to use ansible with vagrant
Home-page: https://github.com/michaelcontento/ansible-vagrant
Author: Michael Contento
Author-email: michaelcontento@gmail.com
License: GPLv3
Description: `ansible-vagrant <https://github.com/michaelcontento/ansible-vagrant>`__
        ========================================================================
        
        Tired of the rather limited ``vagrant provision`` with the
        `ansible <https://github.com/ansible/ansible>`__ provider? Tired of
        keeping your ``hosts`` file up to date?
        `ansible-vagrant <https://github.com/michaelcontento/ansible-vagrant>`__
        to the rescue!
        
        Usage
        -----
        
        ::
        
            $ pip install ansible-vagrant
            $ cd /path/to/project/with/a/vagrantfile
        
            $ ansible-vagrant-update-hosts
            $ cat hosts
            vagrant  ansible_ssh_host=127.0.0.1  ansible_ssh_port=2222  ansible_ssh_use...
        
            $ ansible-vagrant all -m ping
            # Same as: ansible-vagrant-update-hosts && ansible all -m ping
        
            $ ansible-playbook-vagrant playbook.yml
            # Same as: ansible-vagrant-update-hosts && ansible-playbook playbook.yml
        
        Note that both ``ansible-vagrant`` and ``ansible-playbook-vagrant`` use
        ansible's ``--limit=HOSTNAME`` argument to only work on the vagrant box.
        
        Shortcuts
        ---------
        
        -  ``ansiblev`` for ``ansible-vagrant``
        -  ``ansible-playbookv`` for ``ansible-playbook-vagrant``
        
        
        
Keywords: vagrant,ansible
Platform: UNKNOWN
Classifier: Environment :: Console
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Build Tools
Classifier: Topic :: System :: Clustering
Classifier: Topic :: System :: Software Distribution
Classifier: Topic :: System :: Systems Administration
Classifier: Topic :: Utilities
