Merge pull request #224 from hunner/change_port

Port 8080 is a bad choice and bumps into puppetdb
This commit is contained in:
Hunter Haugen 2014-02-14 16:40:13 -08:00
commit 3be1f4323f

View file

@ -68,7 +68,7 @@ describe 'apt class' do
pp = <<-EOS
class { 'apt':
proxy_host => 'localhost',
proxy_port => '8080',
proxy_port => '7042',
}
EOS
@ -77,7 +77,7 @@ describe 'apt class' do
describe file('/etc/apt/apt.conf.d/proxy') do
it { should be_file }
it { should contain 'Acquire::http::Proxy "http://localhost:8080\";' }
it { should contain 'Acquire::http::Proxy "http://localhost:7042\";' }
end
end
@ -110,7 +110,7 @@ describe 'apt class' do
pp = <<-EOS
class { 'apt':
proxy_host => 'localhost',
proxy_port => '8080',
proxy_port => '7042',
}
EOS
@ -119,7 +119,7 @@ describe 'apt class' do
describe file('/etc/apt/apt.conf.d/proxy') do
it { should be_file }
it { should contain 'Acquire::http::Proxy "http://localhost:8080\";' }
it { should contain 'Acquire::http::Proxy "http://localhost:7042\";' }
end
end