This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/templates/default/my.cnf.erb b/templates/default/my.cnf.erb | |
| index 5f4f737..fcc41da 100644 | |
| --- a/templates/default/my.cnf.erb | |
| +++ b/templates/default/my.cnf.erb | |
| @@ -323,6 +323,12 @@ skip-show-database | |
| # ssl-cert=/etc/mysql/server-cert.pem | |
| # ssl-key=/etc/mysql/server-key.pem | |
| +<% if node['mariadb'].key?('options') -%> | |
| +<% node['mariadb']['options'].each { |key, value| -%> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class MashForm extends React.Component{ | |
| constructor(props){ | |
| super(props) | |
| this.state = {malts: []} | |
| } | |
| componentDidMount() { | |
| this._fetchIngredients() | |
| } |
OlderNewer