-
Notifications
You must be signed in to change notification settings - Fork 794
Using mariadb in OpenSuSE >= 13.1. #572
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using mariadb in OpenSuSE >= 13.1. #572
Conversation
@cmurphy thoughts? |
/(SLES|SLED)/ => 'mysql', | ||
case $::operatingsystem { | ||
'OpenSuSE': { | ||
if ( versioncmp( $::operatingsystemrelease, '13.1' ) >= 0 ) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does the version need to be so specific? Could we do
if $::operatingsystemmajrelease >= 13 {
?
i don't think so, i've moved to removing the mariadb provider, as i think it's simpler to handle it all in one. |
Sorry for the delay in responding. MariaDB became a standard option in OpenSuSE 13.1, the first "13" release, I'll try to rebase it when I get home this evening. I'm still new to the Thanks! On Wed, Nov 26, 2014 at 1:13 PM, Colleen Murphy [email protected]
|
@sharumpe let us know if you need any help. |
Well, long delay. Sorry. I am really not sure what needs to be done to If it's not too much trouble, could you tell me what I need to do to rebase If not, I may just start a new fork from the current head and re-apply my Sorry for my lack of knowledge -- most of my work in the past has been on Thanks, On Mon, Dec 1, 2014 at 8:59 AM, Colleen Murphy [email protected]
|
Hi @sharumpe, so to rebase you'll need to do something like
then resolve the conflicts, and
|
Hi @sharumpe , thanks for the work you have put in to this pull request. However due to inactivity and this cannot be merged as is this pull request is being closed. If you want to re-submit this PR with the necessary changes, we will gladly look at the new pull request. |
Wow time flies. I have re-done this change against a new clone of this module from a few days ago. Should I re-open the previous issue or create a new one? |
1 similar comment
Wow time flies. I have re-done this change against a new clone of this module from a few days ago. Should I re-open the previous issue or create a new one? |
@sharumpe thanks! It would be great if you could (force) push to here and re-open, so the context is preserved. |
OK, I've pushed the updated code to that same branch, and it looks like the Travis checks are good. |
…_OpenSuSE_13.1 Using mariadb in OpenSuSE >= 13.1.
\o/ thanks @sharumpe! |
I would like to use MariaDB instead of MySQL on OpenSuSE 13.1. Looking at what has been done for other operatingsystem versions in the source (manifests/params.pp), it appears that you have settled on using operatingsystemrelease to determine when to select mariadb packages, so I have done the same for OpenSuSE. Hopefully I have done this is a way that works for your process; I'm kind of new to contributing to other folks' projects.
Ticket: https://tickets.puppetlabs.com/browse/MODULES-1337