← Back to team overview

cloud-init-dev team mailing list archive

[Merge] ~chad.smith/cloud-init:doc-fix-chef-example into cloud-init:master

 

Chad Smith has proposed merging ~chad.smith/cloud-init:doc-fix-chef-example into cloud-init:master.

Commit message:
doc: trivial fix to chef install example for readthedocs content

Apt key was mistyped in the example.

Should be
apt:
  sources:
      source1:

instead of

apt:
  source1:
    source:

Requested reviews:
  Server Team CI bot (server-team-bot): continuous-integration
  cloud-init commiters (cloud-init-dev)

For more details, see:
https://code.launchpad.net/~chad.smith/cloud-init/+git/cloud-init/+merge/339715

doc: trivial fix to chef install example for readthedocs content

Apt key was mistyped in the example.

Should be 
apt:
  sources:
      source1:
        

instead of

apt:
  source1:
    source:

-- 
Your team cloud-init commiters is requested to review the proposed merge of ~chad.smith/cloud-init:doc-fix-chef-example into cloud-init:master.
diff --git a/doc/examples/cloud-config-chef.txt b/doc/examples/cloud-config-chef.txt
index 58d5fdc..defc5a5 100644
--- a/doc/examples/cloud-config-chef.txt
+++ b/doc/examples/cloud-config-chef.txt
@@ -12,8 +12,8 @@
 
 # Key from https://packages.chef.io/chef.asc
 apt:
-  source1:
-    source: "deb http://packages.chef.io/repos/apt/stable $RELEASE main"
+  sources:
+    source1: "deb http://packages.chef.io/repos/apt/stable $RELEASE main"
     key: |
       -----BEGIN PGP PUBLIC KEY BLOCK-----
       Version: GnuPG v1.4.12 (Darwin)

References