(maint) Fix resource ordering when apt-transport-https is needed (#1015)
[puppet-modules/puppetlabs-apt.git] / examples / backports.pp
index 464090415c47109523e91779d4f40e19495c9cf1..ff566666290fd7c5282ba15bfa031a2627c59b09 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 => 'keyserver.ubuntu.com',
+  },
+}