From d111f43a5046addf2ae21d044b54a7815eb953eb Mon Sep 17 00:00:00 2001
From: Jeremy Stanley <fungi@yuggoth.org>
Date: Sun, 20 Jan 2013 05:18:07 +0000
Subject: [PATCH] Correct bup-excludes file installation.

* modules/bup/manifests/init.pp: The /etc/bup-excludes file was
being generated incorrectly, making it useless for its intended
purpose. It was also misspelled.

Change-Id: Ia279aab88744e7b346bcc350bcfc106f08b2e191
Reviewed-on: https://review.openstack.org/20095
Reviewed-by: Clark Boylan <clark.boylan@gmail.com>
Approved: Jeremy Stanley <fungi@yuggoth.org>
Reviewed-by: Jeremy Stanley <fungi@yuggoth.org>
Tested-by: Jenkins
---
 modules/bup/manifests/init.pp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/modules/bup/manifests/init.pp b/modules/bup/manifests/init.pp
index ac7d5425c6..8ff7555d10 100644
--- a/modules/bup/manifests/init.pp
+++ b/modules/bup/manifests/init.pp
@@ -6,7 +6,7 @@ class bup {
   }
 
   file { '/etc/bup-excludes':
-    ensure  => present,
-    content => 'puppet:///modules/bup/etc/bup-exculdes',
+    ensure => present,
+    source => 'puppet:///modules/bup/etc/bup-excludes',
   }
 }