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
|
} |