Commit 76f7a0d4 by Kevin Falcone

We've run this against two hosts by manually hacking run_role.yml

This helps make it simpler until we write the ansible to support
playbooks that don't gather facts, bootstrap, gather facts, run the
other role.
parent 01e0099e
---
# Runs the python bootstratpping role against an ubuntu machine
# This is not as complete as ansible_bootstrap.sh (intentionally so)
# This lets you get pythong2.7 installed on a machine so you can followup
# with your actual playbook or role. The key is gather_facts: False.
#
# Usage:
# ansible-playbook ./bootstrap_python.yml -i "hostname,"
#
- hosts: all
become: True
gather_facts: False
roles:
- python
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment