Andrew Bogott has submitted this change and it was merged.

Change subject: Fix mysql module so it can work w/out mariadb
......................................................................


Fix mysql module so it can work w/out mariadb

Previously this had "require => true" which is meaningless
and causes a dramatic puppet failure without a line #.  What
we want is 'undef' which just means it requires nothing.

Change-Id: I8d8bccc54f86b5df02180fb7c7d30f97fc5596a5
---
M modules/mysql/manifests/server.pp
1 file changed, 1 insertion(+), 1 deletion(-)

Approvals:
  Andrew Bogott: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/modules/mysql/manifests/server.pp 
b/modules/mysql/manifests/server.pp
index 0ef0af7..2461cf5 100644
--- a/modules/mysql/manifests/server.pp
+++ b/modules/mysql/manifests/server.pp
@@ -49,7 +49,7 @@
     name     => $package_name,
     require  => $package_name ? {
       "mariadb-server-5.5" => 
File["/etc/apt/sources.list.d/wikimedia-mariadb.list"],
-      default => true,
+      default => undef
     }
   }
 

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

Gerrit-MessageType: merged
Gerrit-Change-Id: I8d8bccc54f86b5df02180fb7c7d30f97fc5596a5
Gerrit-PatchSet: 1
Gerrit-Project: operations/puppet
Gerrit-Branch: production
Gerrit-Owner: Andrew Bogott <[email protected]>
Gerrit-Reviewer: Andrew Bogott <[email protected]>
Gerrit-Reviewer: jenkins-bot

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

Reply via email to