diff options
author | Thomas Wiest <twiest@redhat.com> | 2015-05-08 12:25:58 -0400 |
---|---|---|
committer | Thomas Wiest <twiest@redhat.com> | 2015-05-08 12:25:58 -0400 |
commit | aa39235f5c938d7535aa71669b7c1bb0727e1c04 (patch) | |
tree | 0e772c107fd031b5d4f6f00bc92d71ff9a2adc72 /ansible.cfg.example | |
parent | 23a645ada56ef405a476db1f616c8389a4b6639d (diff) | |
download | openshift-aa39235f5c938d7535aa71669b7c1bb0727e1c04.tar.gz openshift-aa39235f5c938d7535aa71669b7c1bb0727e1c04.tar.bz2 openshift-aa39235f5c938d7535aa71669b7c1bb0727e1c04.tar.xz openshift-aa39235f5c938d7535aa71669b7c1bb0727e1c04.zip |
renamed ansible.cfg to ansible.cfg.example to avoid ansible accidentally picking this up as it's config file.
Diffstat (limited to 'ansible.cfg.example')
-rw-r--r-- | ansible.cfg.example | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/ansible.cfg.example b/ansible.cfg.example new file mode 100644 index 000000000..6a7722ad8 --- /dev/null +++ b/ansible.cfg.example @@ -0,0 +1,23 @@ +# config file for ansible -- http://ansible.com/ +# ============================================== + +# This config file provides examples for running +# the OpenShift playbooks with the provided +# inventory scripts. Only global defaults are +# left uncommented + +[defaults] +# Add the roles directory to the roles path +roles_path = roles/ + +# Set the log_path +log_path = /tmp/ansible.log + +# Uncomment to use the provided BYO inventory +#hostfile = inventory/byo/hosts + +# Uncomment to use the provided GCE dynamic inventory script +#hostfile = inventory/gce/gce.py + +# Uncomment to use the provided AWS dynamic inventory script +#hostfile = inventory/aws/ec2.py |