From: Hunter Haugen Date: Sat, 15 Feb 2014 00:12:05 +0000 (-0800) Subject: Port 8080 is a bad choice and bumps into puppetdb X-Git-Tag: 1.4.2~11^2 X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=80ea5a72ca25d919874548349c93d8eaf8349e04;p=puppet-modules%2Fpuppetlabs-apt.git Port 8080 is a bad choice and bumps into puppetdb --- diff --git a/spec/acceptance/apt_spec.rb b/spec/acceptance/apt_spec.rb index 5b7379f..35a0d3e 100644 --- a/spec/acceptance/apt_spec.rb +++ b/spec/acceptance/apt_spec.rb @@ -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