From a3b82bc64f4c643631f7841119518dc2ec09fdac Mon Sep 17 00:00:00 2001 From: Kenyon Ralph Date: Sun, 13 Dec 2020 19:56:47 -0800 Subject: [PATCH] backports.pp: correct example The example treated this like a defined type, but it's a class. --- REFERENCE.md | 4 ++-- manifests/backports.pp | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/REFERENCE.md b/REFERENCE.md index 12a81c3..dc1e5ed 100644 --- a/REFERENCE.md +++ b/REFERENCE.md @@ -350,10 +350,10 @@ Manages backports. #### Examples -##### Set up a backport for linuxmint qiana +##### Set up a backport source for Linux Mint qiana ```puppet -apt::backports { 'qiana': +class { 'apt::backports': location => 'http://us.archive.ubuntu.com/ubuntu', release => 'trusty-backports', repos => 'main universe multiverse restricted', diff --git a/manifests/backports.pp b/manifests/backports.pp index 94ed643..21f1251 100644 --- a/manifests/backports.pp +++ b/manifests/backports.pp @@ -1,7 +1,7 @@ # @summary Manages backports. # -# @example Set up a backport for linuxmint qiana -# apt::backports { 'qiana': +# @example Set up a backport source for Linux Mint qiana +# class { 'apt::backports': # location => 'http://us.archive.ubuntu.com/ubuntu', # release => 'trusty-backports', # repos => 'main universe multiverse restricted', -- 2.45.2