Merge pull request #224 from hunner/change_port
Port 8080 is a bad choice and bumps into puppetdb
This commit is contained in:
commit
3be1f4323f
1 changed files with 4 additions and 4 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue