Skip to content
This repository has been archived by the owner on Dec 31, 2022. It is now read-only.

Commit

Permalink
fix: register gpg public key for nginx on ubuntu18.04LTS (#201)
Browse files Browse the repository at this point in the history
  • Loading branch information
interu authored and ajgon committed Dec 27, 2018
1 parent 7f8cb2e commit 1d4705d
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions recipes/setup.rb
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,14 @@
only_if { node['defaults']['webserver']['use_apache2_ppa'] }
end

apt_repository 'nginx' do
uri 'http://nginx.org/packages/ubuntu/'
components ['nginx']
keyserver 'keyserver.ubuntu.com'
key 'ABF5BD827BD9BF62'
only_if { node['defaults']['webserver']['adapter'] == 'nginx' }
end

gem_package 'bundler' do
action :install
end
Expand Down

0 comments on commit 1d4705d

Please sign in to comment.