diff options
author | Thomas Wiest <twiest@users.noreply.github.com> | 2015-05-08 12:27:29 -0400 |
---|---|---|
committer | Thomas Wiest <twiest@users.noreply.github.com> | 2015-05-08 12:27:29 -0400 |
commit | a904e38c5fd4740c04ef700a221322b84f27aa64 (patch) | |
tree | 38ec4ea15195c72b3310dc5d4f43324ce41d7740 /ansible.cfg.example | |
parent | 4705af597cee2ff523aaede4bb2479c0fc6af430 (diff) | |
parent | aa39235f5c938d7535aa71669b7c1bb0727e1c04 (diff) | |
download | openshift-a904e38c5fd4740c04ef700a221322b84f27aa64.tar.gz openshift-a904e38c5fd4740c04ef700a221322b84f27aa64.tar.bz2 openshift-a904e38c5fd4740c04ef700a221322b84f27aa64.tar.xz openshift-a904e38c5fd4740c04ef700a221322b84f27aa64.zip |
Merge pull request #218 from twiest/pr
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 |