From 970ef435b621601ef3bd6a042def2af204b783ac Mon Sep 17 00:00:00 2001 From: Brian Waldon Date: Thu, 28 Aug 2014 13:33:59 -0700 Subject: [PATCH 1/2] doc: clarify docs around write_files --- Documentation/cloud-config.md | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/Documentation/cloud-config.md b/Documentation/cloud-config.md index 1513ae1..a0d8f31 100644 --- a/Documentation/cloud-config.md +++ b/Documentation/cloud-config.md @@ -298,7 +298,8 @@ users: ### write_files -The `write-file` parameter defines a list of files to create on the local filesystem. Each file is represented as an associative array which has the following keys: +The `write_files` directive defines a set of files to create on the local filesystem. +Each item in the list may have the following keys: - **path**: Absolute location on disk where contents should be written - **content**: Data to write at the provided `path` @@ -311,11 +312,16 @@ The **content** field must represent exactly what should be written to disk. ```yaml #cloud-config write_files: - - path: /etc/fleet/fleet.conf + - path: /etc/resolv.conf permissions: 0644 + owner: root content: | - verbosity=1 - metadata="region=us-west,type=ssd" + nameserver 8.8.8.8 + - path: /etc/motd + permissions: 0644 + owner: root + content: | + Good news, everyone! ``` ### manage_etc_hosts From 01b18eb55111c88ace401361fe44449123750b17 Mon Sep 17 00:00:00 2001 From: Brian Waldon Date: Thu, 28 Aug 2014 13:48:58 -0700 Subject: [PATCH 2/2] squash: fix spacing --- Documentation/cloud-config.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Documentation/cloud-config.md b/Documentation/cloud-config.md index a0d8f31..b20f579 100644 --- a/Documentation/cloud-config.md +++ b/Documentation/cloud-config.md @@ -314,12 +314,12 @@ The **content** field must represent exactly what should be written to disk. write_files: - path: /etc/resolv.conf permissions: 0644 - owner: root + owner: root content: | nameserver 8.8.8.8 - path: /etc/motd permissions: 0644 - owner: root + owner: root content: | Good news, everyone! ```