From 65b6f0a69592e3f214d2c30f42e55b42c36f8e03 Mon Sep 17 00:00:00 2001 From: Dan Bode Date: Sun, 26 Feb 2012 20:54:57 -0800 Subject: [PATCH] Fix milestone and release ppa config Previously, a copy and paste error had resulted in 3 definitions of the trunk ppa class. Two of those were intended to be swift::repo::trunk and swift::repo::release. This commit corrects this error. --- manifests/repo/milestone.pp | 2 +- manifests/repo/release.pp | 2 +- manifests/storage.pp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/manifests/repo/milestone.pp b/manifests/repo/milestone.pp index 05b79b7d..4ab9b403 100644 --- a/manifests/repo/milestone.pp +++ b/manifests/repo/milestone.pp @@ -1,6 +1,6 @@ # # sets up the swift milestone ppa # -class swift::repo::trunk { +class swift::repo::milestone { apt::ppa { 'ppa:swift-core/milestone': } } diff --git a/manifests/repo/release.pp b/manifests/repo/release.pp index ffc8fb00..587c2723 100644 --- a/manifests/repo/release.pp +++ b/manifests/repo/release.pp @@ -1,6 +1,6 @@ # # sets up the swift trunk ppa # -class swift::repo::trunk { +class swift::repo::release { apt::ppa { 'ppa:swift-core/release': } } diff --git a/manifests/storage.pp b/manifests/storage.pp index 64e76131..445eb8f5 100644 --- a/manifests/storage.pp +++ b/manifests/storage.pp @@ -61,7 +61,7 @@ class swift::storage( } Swift::Storage::Server { - devices => $devices, + devices => $devices, storage_local_net_ip => $storage_local_net_ip, }