examples/backports.pp: fix class usage
[puppet-modules/puppetlabs-apt.git] / examples / backports.pp
index 464090415c47109523e91779d4f40e19495c9cf1..66e08e34c29f8dcfc25773308987e1902c5522df 100644 (file)
@@ -1 +1,11 @@
-# TODO
+# Set up a backport for Linux Mint qiana
+class { 'apt': }
+class { 'apt::backports':
+  location => 'http://us.archive.ubuntu.com/ubuntu',
+  release  => 'trusty-backports',
+  repos    => 'main universe multiverse restricted',
+  key      => {
+    id     => '630239CC130E1A7FD81A27B140976EAF437D05B5',
+    server => 'hkps.pool.sks-keyservers.net',
+  },
+}