Index: modules/adblockplus/manifests/init.pp |
diff --git a/modules/adblockplus/manifests/init.pp b/modules/adblockplus/manifests/init.pp |
index c887d6471b20d1249917a0961cc0a673e2e9e52e..c39715d1a104624d6d32b2cb209fa4cc9100e81b 100644 |
--- a/modules/adblockplus/manifests/init.pp |
+++ b/modules/adblockplus/manifests/init.pp |
@@ -45,6 +45,20 @@ class adblockplus ( |
owner => 'root', |
} |
+ # Work around https://issues.adblockplus.org/ticket/3479 |
+ if $::environment == 'development' { |
+ |
+ file { |
+ '/etc/ssh/ssh_host_rsa_key': |
+ source => 'puppet:///modules/base/development_host_rsa_key', |
Fred
2016/03/07 12:11:29
Shouldn't we also change the file source to the ad
mathias
2016/03/07 14:13:53
Acknowledged.
|
+ mode => 600, |
+ notify => Service['ssh']; |
+ '/etc/ssh/ssh_host_rsa_key.pub': |
+ source => 'puppet:///modules/base/development_host_rsa_key.pub', |
+ mode => 644; |
+ } |
+ } |
+ |
# See modules/adblockplus/manifests/user.pp |
create_resources('adblockplus::user', $users) |
} |