Merge pull request #608 from 3flex/572-remove-auth_basic_user_file-resource

location: remove the auth_basic_user_file resource
This commit is contained in:
Matthew Haughton 2015-04-21 13:42:20 -04:00
commit cc2f6387f0
2 changed files with 0 additions and 27 deletions

View file

@ -375,13 +375,4 @@ define nginx::resource::location (
order => $ssl_priority,
}
}
if ($auth_basic_user_file != undef) {
#Generate htpasswd with provided file-locations
file { "${::nginx::config::conf_dir}/${location_sanitized}_htpasswd":
ensure => $ensure_real,
mode => '0644',
source => $auth_basic_user_file,
}
}
}

View file

@ -665,24 +665,6 @@ describe 'nginx::resource::location' do
it { is_expected.not_to contain_concat__fragment(Digest::MD5.hexdigest("vhost1-800-rspec-test-ssl")) }
end
context 'when auth_basic_user_file => true' do
let :params do { :auth_basic_user_file => '/path/to/file', :vhost => 'vhost1', :www_root => '/', } end
it { is_expected.to contain_file("/etc/nginx/rspec-test_htpasswd") }
end
context 'when ensure => absent' do
let :params do {
:www_root => '/',
:vhost => 'vhost1',
:ensure => 'absent',
:ssl => true,
:auth_basic_user_file => '/path/to/file',
} end
it { is_expected.to contain_file("/etc/nginx/rspec-test_htpasswd").with_ensure('absent') }
end
context "vhost missing" do
let :params do {
:www_root => '/',