BryanDavis has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/343100 )

Change subject: Upgrade openssl before installing postfix
......................................................................

Upgrade openssl before installing postfix

Bug: T160660
Change-Id: I708bbeea636eaa13d9459ce3dc7199b6732a864b
---
M puppet/modules/postfix/manifests/init.pp
1 file changed, 10 insertions(+), 0 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/vagrant 
refs/changes/00/343100/1

diff --git a/puppet/modules/postfix/manifests/init.pp 
b/puppet/modules/postfix/manifests/init.pp
index f7d8d24..24d9405 100644
--- a/puppet/modules/postfix/manifests/init.pp
+++ b/puppet/modules/postfix/manifests/init.pp
@@ -3,6 +3,16 @@
 # Postfix MTA service
 #
 class postfix {
+
+    # T160660: Upgrade openssl before installing postfix.
+    # Note: ensure => latest here is gross but there really isn't another way
+    # to handle this unless we switch to using an exec block and actually
+    # checking the currently installed version against some minimum.
+    package { 'openssl':
+        ensure => 'latest',
+        before => Package['postfix'],
+    }
+
     package { 'postfix': }
 
     file { '/etc/postfix':

-- 
To view, visit https://gerrit.wikimedia.org/r/343100
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I708bbeea636eaa13d9459ce3dc7199b6732a864b
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/vagrant
Gerrit-Branch: master
Gerrit-Owner: BryanDavis <[email protected]>

_______________________________________________
MediaWiki-commits mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits

Reply via email to