From c0b4c80ba12d22b6ce831068ed27e060416d944e Mon Sep 17 00:00:00 2001 From: Michael DeHaan Date: Mon, 27 Feb 2012 23:54:32 -0500 Subject: [PATCH] Docs rebuild --- docs/man/man5/ansible-modules.5 | 2 +- docs/man/man5/ansible-playbook.5 | 24 +----------------------- 2 files changed, 2 insertions(+), 24 deletions(-) diff --git a/docs/man/man5/ansible-modules.5 b/docs/man/man5/ansible-modules.5 index ff87caede8e..b538534bc60 100644 --- a/docs/man/man5/ansible-modules.5 +++ b/docs/man/man5/ansible-modules.5 @@ -174,6 +174,6 @@ Ansible was originally written by Michael DeHaan\&. See the AUTHORS file for a c .sp \fBansible\fR(1) .sp -\fBansible\-playbook\fR(5) \- pending +\fBansible\-playbook\fR(5) .sp Ansible home page: https://github\&.com/mpdehaan/ansible/ diff --git a/docs/man/man5/ansible-playbook.5 b/docs/man/man5/ansible-playbook.5 index 5ec7a1cca95..3e265507581 100644 --- a/docs/man/man5/ansible-playbook.5 +++ b/docs/man/man5/ansible-playbook.5 @@ -28,29 +28,7 @@ Ansible ships with a ansible\-playbook tool for running playbooks\&. Playbooks c Playbooks are currently writeable in YAML\&. Other formats (JSON?) may be supported in the future\&. .SH "EXAMPLE" .sp -.if n \{\ -.RS 4 -.\} -.nf -\-\-\- -\- pattern: \'*\' - hosts: \'/etc/ansible/hosts\' - tasks: - \- name: configure template & module variables for future template calls - action: setup http_port=80 max_clients=200 - \- name: write the apache config file - action: template src=/srv/templates/httpd\&.j2 dest=/etc/httpd/conf - notify: - \- restart apache - \- name: ensure apache is running - action: service name=httpd state=started - handlers: - \- name: restart apache - \- action: service name=httpd state=restarted -.fi -.if n \{\ -.RE -.\} +see https://github\&.com/mpdehaan/ansible/blob/master/examples/playbook\&.yml .SH "WHAT THE EXAMPLE MEANS" .sp Here\(cqs what the above example will do\&.