diff options
author | Michael DeHaan <michael.dehaan@gmail.com> | 2012-03-02 04:24:12 +0100 |
---|---|---|
committer | Michael DeHaan <michael.dehaan@gmail.com> | 2012-03-02 04:24:12 +0100 |
commit | 146cb3ff7e452fccc809ab6f99f905cf20b85358 (patch) | |
tree | 77da4694ad57dd7a7d6f6a88bb1499ae360adf7d /README.md | |
parent | rename 'pattern' to 'hosts' in playbook format. (diff) | |
download | ansible-146cb3ff7e452fccc809ab6f99f905cf20b85358.tar.xz ansible-146cb3ff7e452fccc809ab6f99f905cf20b85358.zip |
update README.md on playbook field names
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -139,9 +139,8 @@ multi-machine applications. An example showing a small playbook: --- - - pattern: 'webservers*' + - hosts: 'web*.example.com' comment: webserver setup steps - hosts: '/etc/ansible/hosts' tasks: - name: configure template & module variables for future template calls action: setup http_port=80 max_clients=200 |