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

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

Issue 10630004: Make all our applications work with Nginx 1.4.1 (Closed)
Patch Set: Created May 22, 2013, 4:47 a.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
Index: modules/nginx/manifests/init.pp
===================================================================
--- a/modules/nginx/manifests/init.pp
+++ b/modules/nginx/manifests/init.pp
@@ -9,12 +9,12 @@
apt::source {'nginx':
location => "http://nginx.org/packages/ubuntu",
repos => "nginx",
- key => "A524C53E",
- key_source => "http://sysoev.ru/pgp.txt"
+ key => "ABF5BD827BD9BF62",
+ key_source => "http://nginx.org/keys/nginx_signing.key"
}
# Ensures that nginx is not installed from the Ubuntu sources
- package {'nginx-full':
+ package {'nginx-common':
ensure => purged,
before => Package['nginx']
Wladimir Palant 2013/05/22 06:22:31 Will this uninstall nginx-full as well?
Felix Dahlke 2013/05/22 06:59:49 Yes. I tried to purge nginx-full originally, but t
}

Powered by Google App Engine
This is Rietveld