Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: modules/nginx/manifests/init.pp

Issue 4615235449126912: Issue 2327 - Nginx apt key is added on every provisioning (Closed)
Patch Set: Created April 16, 2015, 12:04 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: modules/nginx/manifests/init.pp
===================================================================
--- a/modules/nginx/manifests/init.pp
+++ b/modules/nginx/manifests/init.pp
@@ -2,17 +2,17 @@ class nginx (
$worker_processes = $nginx::params::worker_processes,
$worker_connections = $nginx::params::worker_connections,
$ssl_session_cache = $nginx::params::ssl_session_cache
) inherits nginx::params {
apt::source {'nginx':
location => "http://nginx.org/packages/ubuntu",
repos => "nginx",
- key => "ABF5BD827BD9BF62",
+ key => "7BD9BF62",
key_source => "http://nginx.org/keys/nginx_signing.key"
}
# Ensures that nginx is not installed from the Ubuntu sources
package {'nginx-common':
ensure => purged,
before => Package['nginx']
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld