summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog2
-rw-r--r--doc/examples/cloud-config-write-files.txt6
2 files changed, 5 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index e1b08d30..3a688ad0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -34,6 +34,8 @@
debian, fedora, rhel) (LP: #1100029)
- fix /etc/hosts writing when templates are used (LP: #1100036)
- add package versioning logic to package installation functionality (LP: #1108047)
+ - fix documentation for write_files to correctly list 'permissions'
+ rather than 'perms' (LP: #1111205)
0.7.1:
- sysvinit: fix missing dependency in cloud-init job for RHEL 5.6
- config-drive: map hostname to local-hostname (LP: #1061964)
diff --git a/doc/examples/cloud-config-write-files.txt b/doc/examples/cloud-config-write-files.txt
index 9c4e3998..ec98bc93 100644
--- a/doc/examples/cloud-config-write-files.txt
+++ b/doc/examples/cloud-config-write-files.txt
@@ -12,7 +12,7 @@ write_files:
content: CiMgVGhpcyBmaWxlIGNvbnRyb2xzIHRoZSBzdGF0ZSBvZiBTRUxpbnV4...
owner: root:root
path: /etc/sysconfig/selinux
- perms: '0644'
+ permissions: '0644'
- content: |
# My new /etc/sysconfig/samba file
@@ -24,10 +24,10 @@ write_files:
AAAAAAAAAwAAAAQAAAAAAgAAAAAAAAACQAAAAAAAAAJAAAAAAAAcAAAAAAAAABwAAAAAAAAAAQAA
....
path: /bin/arch
- perms: '0555'
+ permissions: '0555'
- encoding: gzip
content: !!binary |
H4sIAIDb/U8C/1NW1E/KzNMvzuBKTc7IV8hIzcnJVyjPL8pJ4QIA6N+MVxsAAAA=
path: /usr/bin/hello
- perms: '0755'
+ permissions: '0755'