-
Notifications
You must be signed in to change notification settings - Fork 794
Parametrize !includedir #509
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
Conversation
This looks very good to me (superficially) I haven't tested it yet |
I'm an idiot, I rebased older patch :) |
:| is that why it's failing? |
yep, I have to search in reflog for correct one, will take abour 20min :/ |
Hardcoded path provided by puppet is now replaced by providing only the final directory as on most systems includedir is provided by package and it's matter of user to provide it if he wants to override it. This also allows disabling including at all.
no worries. We'll be here all week. ;) |
@@ -54,7 +54,9 @@ | |||
$server_package_name = 'mariadb-server' | |||
$server_service_name = 'mariadb' | |||
$log_error = '/var/log/mariadb/mariadb.log' | |||
$config_file = '/etc/my.cnf' | |||
$config_file = '/etc/my.cnf.d/server.cnf' |
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.
Is this okay? Will this break anything ever? :)
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.
yum provides /etc/my.cnf and check it's content, we just make sure puppet by default won't touch it
ping? |
Will this be merged? This solves all my problems. |
With the lack of feedback, I've decided to merge it into master and wait for reports from people who try to use our master branch ;) |
Thanks, I'll be testing it today. |
Hardcoded path provided by puppet is now replaced by providing only the final directory as on
most systems includedir is provided by package and it's matter of user to provide it if he
wants to override it. This also allows disabling including at all.