Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add apt-transport-https to the repository install. In preparation for… #219

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions recipes/repository.rb
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@
when 'debian'
include_recipe 'apt'

package 'apt-transport-https' do
action :install
end

apt_repository 'datadog' do
keyserver 'hkp://keyserver.ubuntu.com:80'
key 'C7A7DA52'
Expand Down
4 changes: 4 additions & 0 deletions spec/dd-agent_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,10 @@
it 'sets up an apt repo' do
expect(@chef_run).to add_apt_repository('datadog')
end

it 'installs apt-transport-https' do
expect(@chef_run). to install_package('apt-transport-https')
end
end

shared_examples_for 'rhellions' do
Expand Down