puppetlabs/puppetlabs-mysql

MariaDB and Override Options not applying correctly

phantomdez opened this issue · 1 comments

I might be missing something but I am having an issue with a particular server not fully accepting the configuration I specify. I am using the module to install and configure a base mariadb server on Rocky Linux 8. I have my Override_options setup to bind to 0.0.0.0 however when I check the .cnf files I am slightly confused.

I have multiple .cnf files in the /etc/my.cnf.d/ folder. The server.cnf file seems to keep the 127.0.0.1 address which doesn't help me. Am I missing a config or is there a bug happening here as the puppet module keeps overwriting my server.conf file and I have to manually edit it.

  mysql::server:
    override_options:
      mysqld => bind-address => 0.0.0.0: 
    package_name: mariadb-server

Nevermind just my incorrect syntax that I kept missing. It's all working again.