Sfoglia il codice sorgente

Re-word/syntax update on dynamic data docs

cmacrae 9 anni fa
parent
commit
5ca8401aad
1 ha cambiato i file con 4 aggiunte e 2 eliminazioni
  1. 4 2
      docs/dynamic_data.md

+ 4 - 2
docs/dynamic_data.md

@@ -51,7 +51,7 @@ data/dynamic/
 As you can see, it resembles the file tree from the node it fetched the data from. This is configurable behavior, and can be set otherwise if you find this inconvenient/unsightly. See [ the `fetch` documentation](http://docs.ansible.com/fetch_module.html) for more information.
 As you can see, it resembles the file tree from the node it fetched the data from. This is configurable behavior, and can be set otherwise if you find this inconvenient/unsightly. See [ the `fetch` documentation](http://docs.ansible.com/fetch_module.html) for more information.
 
 
 ## Deployment of the data fetched to the dynamic data store
 ## Deployment of the data fetched to the dynamic data store
-Next up is this nifty little play (still from the `tasks/ssl.yml` playbook):
+Next up is this little play (from the `tasks/ssl.yml` playbook):
 ``` yaml
 ``` yaml
   - name: Deploy the Sensu client SSL cert/key
   - name: Deploy the Sensu client SSL cert/key
     copy:
     copy:
@@ -70,7 +70,9 @@ The same method is used for node communication with RabbitMQ:
 `tasks/rabbitmq.yml`
 `tasks/rabbitmq.yml`
 ``` yaml
 ``` yaml
   - name: Ensure RabbitMQ SSL certs/keys are in place
   - name: Ensure RabbitMQ SSL certs/keys are in place
-    copy: src={{ item }} dest={{ rabbitmq_config_path }}/ssl
+    copy:
+	  src: "{{ item }}"
+	  dest: "{{ rabbitmq_config_path }}/ssl"
     with_items:
     with_items:
       - "{{ sensu_ssl_server_cacert }}"
       - "{{ sensu_ssl_server_cacert }}"
       - "{{ sensu_ssl_server_cert }}"
       - "{{ sensu_ssl_server_cert }}"