ansible.callbacks no longer exists in 2.0. 

it sounds like you are calling Ansible from a python script. If so, this 
process is very different in 2.0.
You probably need to reach out to whomever wrote the software or downgrade 
your ansible to 1.9.

If you want to take a stab at fixing it, the way I've solved this for my 
scripts is:

from ansible import __version__ as ANSIBLE_VERSION
if ANSIBLE_VERSION.startswith('2'):
    from ansible.cli.playbook import PlaybookCLI
else:
    from ansible.playbook import PlayBook
    from ansible.inventory import Inventory
    from ansible.callbacks import PlaybookCallbacks, AggregateStats, 
PlaybookRunnerCallbacks

def run_playbook():
    if ANSIBLE_VERSION.startswith('2'):
        return _run_playbook_v20()
    else:
        return _run_playbook_v19()

def _run_playbook_v20():
    cli = PlaybookCLI()
    cli.parse()
    return cli.run()

def _run_playbook_v19(cliargs):
    class playbook_cb(PlaybookCallbacks):
    ... etc ...


-- 
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 ansible-project+unsubscr...@googlegroups.com.
To post to this group, send email to ansible-project@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/56350031-adc6-4b7b-9cc6-f7cade0f0463%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to