]> review.fuel-infra Code Review - puppet-modules/puppetlabs-apt.git/commitdiff
include_src parameter in example; Whitespace cleanup
authorChristian G. Warden <cwarden@xerus.org>
Tue, 20 Dec 2011 21:45:43 +0000 (13:45 -0800)
committerChristian G. Warden <cwarden@xerus.org>
Tue, 20 Dec 2011 21:45:43 +0000 (13:45 -0800)
In the apt::source example, include the include_src parameter.  Clean-up
whitespace in the example to be consistent with the style guide.

README.md

index a6eee8026763c1b666bd313b9b2893dc29fa182c..1276690cd3be372877235707f076e8da73ea2fa7 100644 (file)
--- a/README.md
+++ b/README.md
@@ -45,12 +45,13 @@ apt::release { "karmic": }
 Add an apt source to `/etc/apt/sources.list.d/`.
 <pre>
 apt::source { "debian_unstable":
-       location => "http://debian.mirror.iweb.ca/debian/",
-       release => "unstable",
-       repos => "main contrib non-free",
-       required_packages => "debian-keyring debian-archive-keyring",
-       key => "55BE302B",
-       key_server => "subkeys.pgp.net",
-       pin => "-10"
+  location          => "http://debian.mirror.iweb.ca/debian/",
+  release           => "unstable",
+  repos             => "main contrib non-free",
+  required_packages => "debian-keyring debian-archive-keyring",
+  key               => "55BE302B",
+  key_server        => "subkeys.pgp.net",
+  pin               => "-10",
+  include_src       => true
 }
 </pre>