Remove ppa config

This commit removes the config for setting up
the custom ppas. The ppas referenced here have
been deprecated.
This commit is contained in:
Dan Bode 2012-04-21 12:55:51 -07:00
parent 59afc07d3b
commit 84d59985fc
4 changed files with 0 additions and 40 deletions

@ -1,6 +0,0 @@
#
# sets up the swift milestone ppa
#
class swift::repo::milestone {
apt::ppa { 'ppa:swift-core/milestone': }
}

@ -1,6 +0,0 @@
#
# sets up the swift trunk ppa
#
class swift::repo::release {
apt::ppa { 'ppa:swift-core/release': }
}

@ -1,6 +0,0 @@
#
# sets up the swift trunk ppa
#
class swift::repo::trunk {
apt::ppa { 'ppa:openstack-ubuntu-testing/openstack-trunk-testing': }
}

@ -1,22 +0,0 @@
require 'spec_helper'
describe 'swift::repo::trunk' do
let :facts do
{:lsbdistcodename => 'oneiric'}
end
describe 'when apt is not included' do
it 'should raise an error' do
expect do
subject
end.should raise_error(Puppet::Error)
end
end
describe 'when apt is included' do
let :pre_condition do
'include apt'
end
it { should contain_apt__ppa('ppa:swift-core/trunk') }
end
end